/* fonts and general styling */

h1 {
    color: #473f60;
}

a:hover {
    text-decoration: none;
    border-bottom: 1px dotted;
}
    


/*  help center header */

.logo img {
    max-height: 100%;
    vertical-align: bottom;
} /* sets the logo image to atual size and aligns at the bottom of the header div */

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #dadada;
} /* removes the default background color and adds full-width border to bottom */

.search input[type="search"] {
    border-radius: 0;
    text-transform: lowercase;
    font-style: italic;
} /* styles a square search box and formats the pre-text */

.logo a:hover {
    border-bottom: none;
}



/* homepage where category cards display */

.category-list li {
    background-color: #69bae8;
  /*  background-image: url(//p6.zdassets.com/hc/theme_assets/955676/200232918/faq-category-card-bg-blue.png);
    background-repeat: no-repeat;
    background-position: bottom right; */
} /* changes color of category card and adds png image border at bottom */

.category-list a, .section-list a {
    color: #ffffff;
} /* changes color of card link - category title */

.category-list li a {
    border-bottom: none;
} /* removes the underline appearing under the category name on the card */

.category-list li a:hover {
    color: #5495ba;
}



/* category listing of article titles - bulleted list on category listing pages */

.article-list li a {
    color: #fc7912;
} /* changes link color */

.article-list li a:hover {
    border-bottom: 1px dotted;
    text-decoration: none;
} /* svg style for text link hovers */

.section-tree ul, ul.article-list {
    color: #fc7912;
} /* changes color of bullet */

.section-tree .section {
    width: 100%;
} /* allows article titles to be single line and not wrap */


/* submit a request page */

footer input[type="submit"] {
    background: none;
    background-color: #fc7912;
    border: none;
    color: #ffffff;
    font-size: 1.3em;
} /* styles the submit button */

footer input[type="submit"]:hover {
    border-bottom: none;
    background-color: #ffb527;
}


/* error page */

.error-page a {
    background-color: #f57e20;
    color: #ffffff;
    padding: 10px 12px;
}

.error-page a:hover {
    background-color: #ffb527;
}

/* article listing page */

.see-all-articles {
    text-decoration: none;
}

/* removal of author line on search results */

.search-result-meta {
  display: none;
}