@import url(fonts.css);
html * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -font-smoothing: antialiased;
}

body {
    font-size: 18px;
    color: #000;
    font-family: "Roboto", Arial, sans-serif;
    overflow-x: hidden;
    letter-spacing: 0;
}

input,
textarea {
    border-radius: 0;
}

input,
textarea,
select,
label {
    font-family: "Roboto", Arial, sans-serif;
    outline: 0;
}

input:focus,
input:hover {
    outline: 0;
}

h1,
h2,
h3 {
    padding: 0;
    margin: 0 0 15px 0;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0;
    font-family: "League Spartan", Arial, sans-serif;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 18px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
a:visited,
a:active,
input[type=submit] {
    color: #005191;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

a:focus,
a:hover {
    text-decoration: none;
    outline: 0;
}

:focus,
 :hover {
    text-decoration: none;
    outline: 0;
}

p {
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.animate {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.no-animate {
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
}

strong {
    font-weight: 700;
}

.button {
    display: inline-block;
    background: #ff9d1e;
    padding: 9px 25px;
    font-weight: 700;
    color: #FFF;
    font-size: 16px;
    text-align: center;
    min-width: 155px;
    border-radius: 30px;
}

.button:hover {
    background: #000;
    color: #FFF;
}


/*-----------------------------------------------------------------------------------*/


/* Structure
/*-----------------------------------------------------------------------------------*/

.container {
    margin: 0 auto;
    width: 1340px;
    padding-left: 0;
    padding-right: 0;
    max-width: none;
}

.view-mobile {
    display: none;
}


/*-----------------------------------------------------------------------------------*/


/* Header & Footer styling
/*-----------------------------------------------------------------------------------*/

#header-overlay {
    height: 87px;
    width: 100%;
}

#header {
    padding: 6px 0 10px 0;
    background: #FFF;
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    z-index: 9999;
    box-shadow: 0 0 10px 0 #D4D4D4;
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .logo {
    margin: 4px 0 0 0;
}

#header .header-right {
    margin: 0 0 0 auto;
    display: flex;
}

#header .header-right nav {
    font-family: "League Spartan", Arial, sans-serif;
    margin: 10px 8px 0 0;
}

#header .header-right nav>ul {
    display: flex;
    align-items: center;
    position: relative;
}

#header .header-right nav>ul>li {
    margin: 0 25px -22px 0;
    position: relative;
    padding: 0 0 22px 0;
}

#header .header-right nav>ul>li.has-full-dropdown {
    position: static;
}

#header .header-right nav>ul>li:last-child {
    margin-right: 0;
}

#header .header-right nav>ul>li>a {
    font-size: 23px;
    color: #000;
    display: inline-block;
    position: relative;
    padding: 0 0 4px 0;
}

#header .header-right nav>ul>li>a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #D4D4D4;
    display: none;
}

#header .header-right nav>ul>li>a:hover:after {
    display: block;
}

#header .header-right nav>ul>li.current_page_item>a:after {
    background: #539ED0;
    display: block;
}

#header .header-right nav>ul>li.current_page_item>a:hover:after {
    background: #A6C6DF;
}

#header .header-right nav>ul>li.donate {
    margin-right: 10px;
}

#header .header-right nav>ul>li.donate>a {
    background: #ffb351;
    border-radius: 50px;
    margin-top: -6px;
    padding: 13px 30px 9px 30px;
}

#header .header-right nav>ul>li.donate>a:after {
    display: none !important;
}

#header .header-right nav>ul>li.donate>a:hover {
    background: #ff9d1e;
}

#header .header-right nav>ul>li.phone>a {
    background: #cbdeed;
    border-radius: 50px;
    margin-top: -6px;
    padding: 12px 30px 7px 9px;
    display: flex;
    align-items: center;
}

#header .header-right nav>ul>li.phone>a:after {
    display: none !important;
}

#header .header-right nav>ul>li.phone>a:hover {
    background: #a6c6df;
}

#header .header-right nav>ul>li.phone>a:before {
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    content: "";
    background: #FFF url(../images/icon-phone.svg) no-repeat center center / 20px 20px;
    margin-right: 14px;
    margin-top: -4px;
    transition: 0.15s ease-in-out;
}

#header .header-right nav>ul>li.phone>a:hover:before {
    transform: scale(1.1);
}

#header .header-right nav>ul>li>ul {
    position: absolute;
    z-index: 100;
    text-align: left;
    pointer-events: none;
    opacity: 0;
    font-family: "Roboto", Arial, sans-serif;
    top: 100%;
    background: #FFF;
    padding: 20px 30px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 12px 16px 0 #0003;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity .15s ease-in-out;
}

#header .header-right nav>ul>li>ul:before {
    background: linear-gradient(180deg, #ddd, #fff0 20px, #fff0);
    content: "";
    display: block;
    height: 22px;
    left: 0;
    z-index: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
}

#header .header-right nav>ul>li>ul>li {
    padding: 5px 0;
}

#header .header-right nav>ul>li>ul>li>a {
    color: #000;
    padding-bottom: 2px;
    position: relative;
    white-space: nowrap;
    font-weight: 400;
    font-size: 16px;
}

#header .header-right nav>ul>li>ul>li>a:hover {
    box-shadow: inset 0 -2px 0 0 #D4D4D4;
    color: #005091;
}

#header .header-right nav>ul>li.open-dropdown>ul {
    pointer-events: auto;
    opacity: 1;
}

#header .header-right nav>ul>li>ul.dropdown-full {
    left: -30px;
    width: calc(100% + 30px);
    transform: none;
    padding: 0;
    top: calc(100% + 16px);
}

#header .header-right nav>ul>li>ul.dropdown-full>li {
    padding: 0;
    display: flex;
}

#header .header-right nav>ul>li>ul.dropdown-full>li .left-column {
    padding: 30px 40px;
    width: 43%;
    background-color: #f1f6fa;
    border-bottom-left-radius: 20px;
}

#header .header-right nav>ul>li>ul.dropdown-full>li .left-column h3 {
    margin: 0 0 15px 0;
    color: #005091;
}

#header .header-right nav>ul>li>ul.dropdown-full>li .left-column ul li {
    padding: 5px 0;
}

#header .header-right nav>ul>li>ul.dropdown-full>li .left-column ul li a {
    font-weight: 400;
    background-image: linear-gradient(#fff, #fff);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 100% 9px;
    color: #262626;
    display: inline;
    font-size: 24px;
}

#header .header-right nav>ul>li>ul.dropdown-full>li .left-column ul li a:hover {
    background-size: 100% 100%;
    box-shadow: none;
}

#header .header-right nav>ul>li>ul.dropdown-full>li .right-column {
    padding: 30px 25px;
    width: 57%;
    border-bottom-right-radius: 20px;
}

#header .header-right nav>ul>li>ul.dropdown-full>li .right-column>ul {
    column-gap: 30px;
    break-inside: avoid;
    column-count: 2;
}

#header .header-right nav>ul>li>ul.dropdown-full>li .right-column>ul>li {
    padding: 0 0 5px 0;
}

#header .header-right nav>ul>li>ul.dropdown-full>li .right-column>ul>li>a {
    font-weight: 700;
    font-size: 20px;
    color: #000;
    cursor: default;
}

#header .header-right nav>ul>li>ul.dropdown-full>li .right-column>ul>li>a:after {
    background-color: #ff8848;
    border-radius: 1000px;
    content: "";
    display: block;
    height: 4px;
    margin: 10px 0;
    width: 30px;
}

#header .header-right nav>ul>li>ul.dropdown-full>li .right-column>ul>li>ul {
    margin: 0 0 15px 0;
}

#header .header-right nav>ul>li>ul.dropdown-full>li .right-column>ul>li>ul a {
    font-size: 14px;
    color: #262626;
    padding-bottom: 2px;
}

#header .header-right nav>ul>li>ul.dropdown-full>li .right-column>ul>li>ul a:hover {
    box-shadow: inset 0 -2px 0 0 #D4D4D4;
    color: #005091;
}

#header .header-right .social-links {
    display: flex;
    align-items: center;
}

#header .header-right .social-links li {
    margin: 0 6px 0 0;
}

#header .header-right .social-links li:last-child {
    margin: 0;
}

#header .header-right .social-links li a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    background: #005192;
    display: block;
    color: #FFF;
    text-align: center;
    transition: 0.15s ease-in-out;
}

#header .header-right .social-links li a span {
    display: inline-block;
    line-height: 36px;
}

#header .header-right .social-links li a:hover {
    transform: scale(1.1);
}

.two-one-one-callout {
    background-image: url(../images/callout-bubble-bg.svg);
    background-repeat: no-repeat;
    padding: 20px 0 20px 20px;
}

.two-one-one-callout {
    grid-column: main;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
    max-width: 765px;
    width: 100%;
}

.two-one-one-callout-inner {
    display: flex;
    justify-content: center;
    background-image: linear-gradient(46deg, #09285a, #09285a 38%, #0885af);
    border-radius: 1000px;
    padding: 20px 40px;
    text-align: center;
}

.two-one-one-callout-text {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    font-family: "League Spartan", Arial, sans-serif;
}

.two-one-one-callout-link {
    border-bottom: solid 3px #fff;
    color: #fff;
    margin-left: 4px;
    padding: 0 0 2px 0;
}

.two-one-one-callout-link:hover {
    color: #fff;
    border-bottom: solid 3px #ff443b;
}

.two-one-one-callout-link span {
    color: #a6c6df;
    line-height: 24px;
}

.two-one-one-find {
    background-image: url(../images/callout-bubble-bg.svg);
    background-repeat: no-repeat;
    padding: 20px 0 20px 20px;
}

.two-one-one-find {
    grid-column: main;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
    max-width: 765px;
    width: 100%;
}

.two-one-one-find-inner {
    display: flex;
    justify-content: center;
    background-image: linear-gradient(46deg, #09285a, #09285a 38%, #0885af);
    border-radius: 1000px;
    padding: 20px 40px;
    text-align: center;
}

.two-one-one-find-text {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    font-family: "League Spartan", Arial, sans-serif;
}

.two-one-one-find-text a {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    font-family: "League Spartan", Arial, sans-serif;
}

.two-one-one-find-link {
    border-bottom: solid 3px #fff;
    color: #fff;
    margin-left: 4px;
    padding: 0 0 2px 0;
}

.two-one-one-find-link:hover {
    color: #fff;
    border-bottom: solid 3px #ff443b;
}

.two-one-one-find-link span {
    color: #a6c6df;
    line-height: 24px;
}

#footer {
    padding: 0 20px 20px 20px;
}

#footer .container {
    padding: 40px 0 0 0;
    border-top: solid 1px #000;
}

#footer p {
    text-align: center;
    font-size: .8em;
}


/*-----------------------------------------------------------------------------------*/


/* Login
/*-----------------------------------------------------------------------------------*/

body.login {
    background: #F4F9FC;
}


/* #005192*/

#login {
    position: relative;
    text-align: center;
}

#login img {
    margin: 0 auto 20px auto;
    display: block;
}

.login-box {
    position: absolute;
    width: 90%;
    max-width: 480px;
    top: calc(50% - 50px);
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    padding: 0;
}

.login-box-inner {
    background: #fff;
    margin: 0;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #E6E6E6;
    box-shadow: 0 0 2px #D4D4D4;
}

.login-box h1 {
    padding: 0;
    margin: 0;
    font-size: 24px;
}

.login-box .field {
    padding: 20px 0;
}

.login-box .field input[type="password"] {
    border: 2px solid #DBDFE0;
    color: #1D335E;
    padding: 0 20px;
    background: #FFF;
    border-radius: 50px;
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
}

.login-box .button {
    border: none;
    padding: 0 30px;
    height: 50px;
    line-height: 50px;
    color: #000;
    font-size: 18px;
}

.login-box .button:hover {
    color: #fff;
}

.login-box p {
    padding: 30px 0 0 0;
    color: #777;
    font-size: 14px;
    font-style: italic;
}


/*-----------------------------------------------------------------------------------*/


/* Search Page styling
/*-----------------------------------------------------------------------------------*/


/* search form */

#search-section {
    text-align: center;
    padding: 55px 0 0 0;
    background: #FFF url(../images/search-bg.png) no-repeat center bottom;
    color: #FFF;
    transition: 0.15s ease-in-out;
}

#search-section.active {
    background-color: #F4F9FC;
}

#search-section h1 {
    font-size: 40px;
    margin: 0 0 15px 0;
}

#search-section p {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

#search-section form {
    margin: 0 0 10px 0;
}

#search-section .top-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 25px 0;
    text-align: left;
}

#search-section .top-container p {
    margin: 0 12px;
}

#search-section .top-container .field {
    position: relative;
    width: 363px;
}

#search-section .top-container .field input[type=text] {
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    font-weight: 500;
    padding: 0 30px;
    border: none;
    color: #000;
    background: #FFF;
    border-radius: 50px;
}

#search-section .top-container .right-field input[type=text] {
    padding-right: 60px;
    margin-bottom: 50px;
}

#search-section .top-container .field input[type=text]::placeholder {
    color: #999;
    opacity: 1;
}

#search-section .top-container .field #geo {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #CBDEEC url(../images/icon-location.svg) no-repeat center center / 23px auto;
    transition: 0.15s ease-in-out;
}

#search-section .top-container .field #geo:hover {
    transform: scale(1.1);
}

#search-section .submit-field {
    text-align: center;
}

#search-section .submit-field input[type=submit] {
    font-size: 23px;
    font-weight: 700;
    border-radius: 50px;
    font-family: "League Spartan", Arial, sans-serif;
    width: 180px;
    height: 60px;
    border: none;
    background: #ffb351;
    color: #000;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

#search-section .submit-field input[type=submit]:hover {
    background: #ff9d1e;
}


/* advanced search expander */

#search-section .advanced-search-link {
    color: #FFF;
    font-size: 16px;
    position: relative;
    margin: 0 0 35px 0;
    padding: 0 25px 0 0;
    font-weight: 500;
    box-shadow: inset 0 -2px 0 0 #FF443B;
    padding-bottom: 2px;
    display: inline-block;
}

#search-section .advanced-search-link:before {
    display: block;
    content: "";
    position: absolute;
    right: 0;
    top: 7px;
    width: 12px;
    height: 7px;
    background: url(../images/icon-arrow-down-white.svg) no-repeat center center / 12px auto;
    transition: 0.15s ease-in-out;
}

#search-section .advanced-search-link.active:before {
    transform: rotate(180deg);
}

#search-section .advanced-search-link:hover {
    box-shadow: inset 0 -2px 0 0 #005191;
}

#advanced-search-container {
    background-color: #F4F9FC;
    padding: 30px 0 50px 0;
    text-align: center;
    display: none;
}

#advanced-search-container h3 {
    font-size: 24px;
    color: #1D335E;
    margin: 0 0 25px 0;
}

#advanced-search-container form {
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

#advanced-search-container form .field {
    width: 300px;
    text-align: left;
    float: left;
    display: block;
    margin: 0 14px 20px 14px;
}

#advanced-search-container form .field label {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #1D335E;
    display: block;
    font-weight: 700;
}

#advanced-search-container form .field input {
    border: 2px solid #DBDFE0;
    color: #1D335E;
    padding: 0 30px;
    background: #FFF;
    border-radius: 50px;
    width: 100%;
    height: 59px;
    line-height: 59px;
}

#advanced-search-container form .field .select-holder {
    border: 2px solid #DBDFE0;
    color: #1D335E;
    padding: 0 30px;
    background: #FFF;
    border-radius: 50px;
    width: 100%;
    height: 59px;
    line-height: 59px;
}

#advanced-search-container form .field select {
    width: 100%;
    background: transparent;
    border: none;
}

#advanced-search-container .submit-field {
    text-align: center;
    display: block;
    width: 100%;
    clear: both;
}

#advanced-search-container form input[type=submit] {
    display: block;
    margin: auto;
    text-align: center;
    font-size: 23px;
    font-weight: 700;
    border-radius: 50px;
    font-family: "League Spartan", Arial, sans-serif;
    width: 180px;
    line-height: 60px;
    height: 60px;
    border: none;
    background: #ffb351;
    color: #000;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

#advanced-search-container form input[type=submit]:hover {
    background: #ff9d1e;
}


/* tooltips */

.adv-tooltip {
    display: inline-block;
    margin: 0 0 0 2px;
    position: relative;
}

.adv-tooltip span {
    font-size: 16px;
    color: #005192;
    transition: 0.15s ease-in-out;
}

.tootip:hover span {
    transform: scale(1.1);
}


/* Tooltip text */
.adv-tooltip .tooltip-text {
    display: none;
    background-color: #005192; /* darker #07234e*/
    color: #ffffff;
    font-weight: 300;
    text-align: center;
    padding: 15px;
    margin: 0 0 5px 0;
    border-radius: 6px;
    font-size: 16px;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
    width: 460px;
    bottom: 100%;
    left: 50%;
    margin-left: -100px;
    /* Use half of the width, to center the tooltip */
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.25);
}


/* Show the tooltip text when you mouse over the tooltip container */

.adv-tooltip:hover .tooltip-text {
    display: block;
    visibility: visible;
}

.adv-tooltip .tooltip-text::after {
    content: " ";
    position: absolute;
    top: 100%;
    /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}


/* cats & subcats */

#looking-for-section {
    padding: 50px 0 70px 0;
    text-align: center;
}

#looking-for-section h2 {
    font-size: 39px;
    margin: 0 0 30px 0;
}

#looking-for-section img {
    margin: 0 auto 30px auto;
}

#looking-for-section .list-container {
    text-align: left;
    padding: 10px 40px 30px 40px;
    border: 1px solid #DEDEDE;
    background: #FFF;
    border-radius: 20px;
    box-shadow: 0 0 5px #D4D4D4;
}

ul#topics-list {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden;
}

ul#topics-list>li {
    /*float: left; margin-right: 50px;*/
    padding: 26px 0 25px 0;
    border-bottom: 1px solid #DEDEDE;
    width: calc(50% - 25px);
    margin-bottom: -1px;
    font-size: 20px;
    font-weight: 700;
    color: #005191;
    position: relative;
    transition: 0.15s ease-in-out;
}


/*ul#topics-list > li:nth-child(2n) {margin-right: 0;} */

ul#topics-list>li div.topic-item {
    display: block;
    position: relative;
    padding: 0 25px 0 52px;
}

ul#topics-list>li .left-icon {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -18px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #F4F9FC;
    color: #539ED0;
    margin-right: 16px;
    border-radius: 50%;
    transition: 0.15s ease-in-out;
}

ul#topics-list>li .right-icon {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -15px;
    color: #000;
    transition: 0.15s ease-in-out;
    font-size: 32px;
}

ul#topics-list>li:hover {
    border-bottom: 1px solid #FF443B;
    box-shadow: inset 0 -3px #FF443B;
}

ul#topics-list>li:hover .left-icon {
    background: #539ED0;
    color: #F4F9FC;
}

ul#topics-list>li:hover .right-icon {
    color: #FF443B;
}


/* subtopics */

ul#topics-list>li ul {
    display: none;
    padding: 20px 0 0 20px;
}

ul#topics-list>li ul li {
    list-style: disc;
    font-size: 16px;
}

ul#topics-list .subTopicList a {
    color: #005191;
}

ul#topics-list .subTopicList a:hover {
    color: #005191;
    text-decoration: underline;
}


/*-----------------------------------------------------------------------------------*/


/* Results Page styling
/*-----------------------------------------------------------------------------------*/

#search-section.results-page-search-section {
    padding-bottom: 40px;
    background-position: center bottom;
}

#search-results-section {
    padding: 35px 0;
}

#search-results-section.list-view .container {
    display: flex;
    justify-content: space-between;
}

#search-results-section .filter-container {
    width: 410px;
}

#search-results-section .results-container {
    width: calc(100% - 460px);
    margin: 0 0 0 auto;
}


/* filters */

#search-results-section .filter-content {
    padding: 25px 0 10px 0;
    border-radius: 15px;
    border: 1px solid #E6E6E6;
    box-shadow: 0 0 2px #D4D4D4;
}

#search-results-section .filter-content h3 {
    font-size: 24px;
    padding: 0 20px;
    margin: 0;
}

#search-results-section .filter-content .filter-group {
    border-bottom: 1px solid #ECECEC;
}

#search-results-section .filter-content .filter-group h4 {
    display: block;
    margin: 0;
    padding: 20px 20px 20px 20px;
    font-size: 18px;
    color: #005191;
    font-weight: 700;
    position: relative;
    line-height: 1;
}

#search-results-section .filter-content .filter-group h4:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -5px;
    right: 30px;
    display: block;
    width: 17px;
    height: 10px;
    background: url(../images/icon-arrow-down-dark.svg) no-repeat;
    transition: 0.15s ease-in-out;
}

#search-results-section .filter-content .active>h4:after {
    transform: rotate(180deg);
}

#search-results-section .filter-content .filter-group ul {
    margin: 0;
    padding: 0 20px 15px 20px;
    display: none;
    border: none;
}

#search-results-section .filter-content .filter-group li {
    display: flex;
    align-items: center;
    margin: 0 0 10px 0;
}

#search-results-section .filter-content .filter-group li:last-child {
    margin: 0;
}

#search-results-section .filter-content .filter-group p {
    display: none;
    font-size: 16px;
    margin: -10px 0 0 0;
    padding: 0 20px;
}

#search-results-section .filter-content .filter-group input {
    width: 16px;
    height: 16px;
    margin: 0 15px 0 0;
}

#search-results-section .filter-content .filter-group label {
    margin: 0;
    font-weight: 400;
}

#search-results-section .filter-content input[type=submit] {
    margin: 20px;
    font-family: "League Spartan", Arial, sans-serif;
    border: none;
    background: #ffb351;
    color: #000;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

#search-results-section .filter-content input[type=submit]:hover {
    background: #ff9d1e;
}

#search-results-section .top-container {
    margin: 0 0 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#search-results-section .top-container .left-container {
    display: flex;
    align-items: center;
}

#search-results-section .top-container .left-container .sort-container {
    background: #FFB351;
    padding: 12px 44px 12px 23px;
    width: 212px;
    border-radius: 30px;
    position: relative;
    margin: 0 18px 0 0;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

#search-results-section .top-container .left-container .sort-container.active {
    border-radius: 30px 30px 0 0;
}

#search-results-section .top-container .left-container .sort-container:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 11px;
    height: 6px;
    margin-top: -3px;
    background: url(../images/icon-sort-arrow.svg) no-repeat;
}

#search-results-section .top-container .left-container .sort-container ul {
    border-radius: 0 0 30px 30px;
    padding: 20px 0 15px 0;
    background: #FFB351;
    z-index: 100;
    position: absolute;
    display: none;
    left: 0;
    width: 100%;
    top: 33px;
}

#search-results-section .top-container .left-container .sort-container ul li {
    cursor: pointer;
    padding: 3px 23px;
}

#search-results-section .top-container .left-container .sort-container ul li:last-child {
    margin: 0;
}

#search-results-section .top-container .left-container .sort-container ul li:hover {
    text-decoration: underline;
}

#search-results-section .top-container .left-container p {
    margin: 0;
}

#search-results-section .top-container .list-types {
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
}

#search-results-section .top-container .list-types li {
    color: #005191;
    margin: 0 20px 0 0;
    display: flex;
    align-items: center;
    padding: 0 0 10px 0;
}

#search-results-section .top-container .list-types li a {
    display: flex;
    align-items: center;
    color: #005191;
}

#search-results-section .top-container .list-types li:last-child {
    margin: 0;
}

#search-results-section .top-container .list-types li span {
    color: #005191;
    font-size: 35px;
    margin: 0 8px 0 0;
}

#search-results-section .top-container .list-types li:hover span {
    color: #529ED0;
}

#search-results-section .top-container .list-types li:hover,
#search-results-section .top-container .list-types li.active {
    box-shadow: inset 0 -4px 0 0 #529ED0;
}

#search-results-section .top-container .list-types li.active:hover span {
    color: #005191;
}

#search-results-section .top-container .filter-button {
    display: inline-block;
    background: #CBDEED;
    color: #000;
    margin: 0 12px 0 0;
    font-weight: 700;
    padding: 12px 50px;
    border-radius: 30px;
}

#search-results-section .top-container .filter-button:hover {
    background: #a6c6df;
}

#search-results-section .results-list {
    margin: 0 0 30px 0;
}

#search-results-section .results-list li {
    padding: 28px 0 14px 55px;
    border-bottom: 1px solid #9A9A9A;
    position: relative;
}

#search-results-section .results-list li .number {
    position: absolute;
    left: 0;
    top: 28px;
    width: 40px;
    height: 40px;
    background: #005191;
    border-radius: 50%;
    display: block;
    line-height: 46px;
    color: #FFF;
    font-size: 22px;
    font-family: "League Spartan", Arial, sans-serif;
    text-align: center;
}

#search-results-section .results-list li .stateNational {
    position: absolute;
    /* left: 0; */
    /* top: 28px; */
    padding: 2px;
    margin-left: 20px;
    float: right;
    width: 86px;
    height: 20px;
    background: #47870e;
    border-radius: 20%;
    /* display: block; */
    line-height: 18px;
    color: #FFF;
    font-size: 12px;
    font-family: "League Spartan", Arial, sans-serif;
    text-align: center;
}

#search-results-section .results-list li h2 {
    margin: 0;
}

#search-results-section .results-list li h2 a {
    color: #000;
}

#search-results-section .results-list li h2 a:hover {
    color: #005191;
}

#search-results-section .results-list li h3 {
    margin: 0 0 20px 0;
}

#search-results-section .results-list li h3 a {
    color: #005191;
}

#search-results-section .results-list li h3 a:hover {
    box-shadow: inset 0 -2px 0 0 #FF443B;
}

#search-results-section .results-list li p {
    margin: 0 0 10px 0;
}

#search-results-section .results-list li p.address {
    font-weight: bold;
}

#search-results-section .results-list li .subtopics {
    /*display:flex;*/
    margin: 0;
}

#search-results-section .results-list li .subtopics a {
    display: inline-block;
    background: #CBDEED;
    color: #000;
    margin: 0 12px 12px 0;
    font-size: 14px;
    padding: 9px 20px;
    border-radius: 30px;
    text-align: center;
}

#search-results-section .results-list li .subtopics a:hover {
    background: #a6c6df;
}

.searchHint {
    display: inline-block;
    background: #CBDEED;
    color: #000;
    margin: 0 12px 12px 0;
    font-size: 14px;
    padding: 9px 20px;
    border-radius: 30px;
    text-align: center;
}

#search-results-section .wp-pagenavi {
    padding-top: 50px;
    display: flex;
    align-items: center;
}

#search-results-section .wp-pagenavi a,
#search-results-section .wp-pagenavi span {
    font-size: 22px;
    font-weight: 700;
    font-family: "League Spartan", Arial, sans-serif;
    color: #005191;
    margin: 0 20px 0 0;
    text-align: center;
    display: inline-block;
    min-width: 15px;
}

#search-results-section .wp-pagenavi .current {
    box-shadow: inset 0 -2px 0 0 #529ED0;
}

#search-results-section .wp-pagenavi a:hover {
    box-shadow: inset 0 -2px 0 0 #FF443B;
}

#search-results-section .selected-filters-list {
    padding: 10px;
    border-radius: 30px;
}

#search-results-section .selected-filters-list li {
    display: inline-block;
    background: #ffb351;
    color: #000;
    margin: 0 12px 12px 0;
    font-size: 14px;
    padding: 9px 20px;
    border-radius: 30px;
    text-align: center;
}

#search-results-section .map-list-container {
    display: flex;
    justify-content: space-between;
}

#search-results-section .map-list-container .results-list {
    width: 495px;
    order: 1;
}

#search-results-section .map-list-container .results-list li {
    padding: 28px 0 28px 50px;
}

#search-results-section .map-list-container .results-list li:last-child {
    border: none;
}

#search-results-section .map-list-container .results-list li p {
    font-size: 16px;
    margin: 0;
}

#search-results-section .map-list-container .results-list li .number {
    width: 30px;
    height: 30px;
    line-height: 35px;
    font-size: 18px;
}

#search-results-section .map-list-container .results-list li h2 {
    font-size: 24px;
}

#search-results-section .map-list-container .results-list li h3 {
    font-size: 20px;
}

#search-results-section .map-list-container .map-container {
    width: calc(100% - 525px);
    height: 700px;
    margin: 0 0 0 auto;
    order: 2;
    border-radius: 10px;
    overflow: hidden;
}

#search-results-section .map-list-container .map-container img {
    width: 100%;
}


/* map view */

.mapview .results-list ul li .subtopics {
    display: none;
}

.mapview .results-list ul li .service-desc {
    display: none;
}

.filter-popup-container {
    position: fixed;
    z-index: 20000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 10% 0;
    opacity: 0;
    display: none;
}

.filter-popup-container .filter-content {
    position: absolute;
    overflow: scroll;
    overflow-y: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 460px;
    max-height: 90%;
    margin: 0 auto;
    padding: 0;
    background: #FFF;
}

.filter-popup-container .filter-content .close-icon {
    color: #E60B00;
    font-size: 28px;
    position: absolute;
    right: 15px;
    top: 15px;
}

.filter-popup-container .filter-content h3 {
    text-align: center;
    padding: 0 0 15px 0 !important;
    border-bottom: 1px solid #ECECEC;
}

.filter-popup-container .filter-content ul {
    padding: 0 30px;
    border-bottom: 1px solid #ECECEC;
    margin: 0 0 20px 0;
}

.filter-popup-container .filter-content .filter-group h4:after {
    right: 20px;
}

.filter-popup-container .filter-content .filter-content-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px 10px 30px;
}

.filter-popup-container .filter-content .filter-content-bottom .clear-button {
    color: #E60B00;
    box-shadow: inset 0 -2px 0 0 #E60B00;
    font-weight: 700;
}

.filter-popup-container .filter-content .filter-content-bottom .clear-button:hover {
    color: #005191;
    box-shadow: inset 0 -2px 0 0 #005191;
}

.filter-popup-container .filter-content .filter-content-bottom .apply-button {
    background: #ffb351;
    border-radius: 50px;
    margin-top: -6px;
    padding: 13px 50px 9px 50px;
    color: #000;
    font-weight: 700;
}

.filter-popup-container .filter-content .filter-content-bottom .apply-button:hover {
    background: #ff9d1e;
}


/*-----------------------------------------------------------------------------------*/


/* Detail Page styling
/*-----------------------------------------------------------------------------------*/

#breadcrumb-section {
    padding: 15px 0;
    background: #F4F9FC;
}

#breadcrumb-section ul {
    display: flex;
    align-items: center;
}

#breadcrumb-section ul li {
    margin: 0 50px 0 0;
    color: #1D335E;
    font-weight: 400;
    position: relative;
}

#breadcrumb-section ul li:last-child {
    margin-right: 0;
}

#breadcrumb-section ul li:after {
    display: block;
    width: 10px;
    height: 17px;
    content: "";
    position: absolute;
    right: -26px;
    top: 50%;
    margin-top: -8px;
    background: url(../images/breadcrumb-arrow.svg) no-repeat center center / 100% auto;
}

#breadcrumb-section ul li:last-child:after {
    display: none;
}

#breadcrumb-section ul li a {
    color: #005191;
    font-weight: 700;
    cursor: pointer;
}

#breadcrumb-section ul li a:hover {
    color: #005191;
    text-decoration: underline;
}

#detail-section {
    padding: 25px 0 45px 0;
}

#detail-section .detail-top-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 0 15px 0;
}

#detail-section .detail-top-container .title {
    width: calc(100% - 160px);
}

#detail-section .detail-top-container .title h1 {
    margin: 0;
    font-size: 28px;
}

#detail-section .detail-top-container .title h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing: 1px;
}

#detail-section .detail-top-container .title h2 a {
    color: #005191;
}

#detail-section .detail-top-container .title h2 a:hover {
    box-shadow: inset 0 -2px 0 0 #FF443B;
}

#detail-section #buttons-container {
    margin: 0 0 15px 0;
    min-width: 160px;
}


/* width based on one button */

#detail-section #buttons-container ul {
    margin: 0 auto;
    display: block;
    text-align: right;
}

#detail-section #buttons-container li {
    display: inline-block;
    align-items: center;
    margin: 0 25px 0 0;
}

#detail-section #buttons-container li:last-child {
    margin: 0;
}

#detail-section #buttons-container li a {
    color: #005191;
    font-weight: 700;
}

#detail-section #buttons-container li span {
    transition: 0.15s ease-in-out;
    width: 28px;
    height: 28px;
    margin-right: 6px;
    font-size: 16px;
    display: inline-block;
    line-height: 28px;
    text-align: center;
    background: #FFB351;
    border-radius: 50%;
    color: #000;
}

#detail-section #buttons-container li a:hover {
    color: #ff9d1e;
}

#detail-section #buttons-container li a:hover span {
    background: #ff9d1e;
}

#detail-section .location-container {
    display: flex;
    justify-content: space-between;
}

#detail-section .location-container .map-container {
    width: 610px;
    max-height: 725px;
}

#map {
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

#detail-section .location-container .location-overview {
    width: calc(100% - 675px);
    margin: 0 0 0 auto;
}

#serviceDesc {
    padding: 0 0 15px 0;
}

#serviceDesc ul li {
    list-style: disc;
    margin-left: 15px;
}

#serviceDesc ol li {
    list-style: decimal;
    margin-left: 15px;
}

#temporaryMessage {
    padding: 0 0 15px 0;
    color: blue;
    font-style: italic;
}

#detail-section .location-container .location-overview>ul {
    margin: 0 0 15px 0;
    border-top: 2px solid #E2E2E2;
}

#detail-section .location-container .location-overview>ul>li {
    padding: 14px 0;
    border-bottom: 2px solid #E2E2E2;
}

#detail-section .location-container .location-overview>ul>li>strong {
    display: inline-block;
    width: 150px;
    font-weight: 700;
    vertical-align: top;
}

#detail-section .location-container .location-overview>ul>li>span {
    display: inline-block;
    width: calc(100% - 170px);
}

#detail-section .location-container .location-overview>ul>li a {
    color: #005191;
}

#detail-section .location-container .location-overview>ul>li a:hover {
    color: #005191;
    text-decoration: underline;
}

#detail-section .location-container .location-overview>ul>li li {
    display: flex;
    margin: 0 0 2px 0;
}

#detail-section .location-container .location-overview>ul>li li:last-child {
    margin: 0;
}

#detail-section .location-container .location-overview>ul>li li span {
    width: 170px;
}

#detail-section .location-container .location-overview em {
    font-size: 14px;
    margin: 0 0 25px 0;
    display: block;
}

#detail-section .location-container .location-overview .button-container a {
    display: inline-block;
    background: #CBDEED;
    color: #000;
    margin: 0 8px 8px 0;
    font-size: 16px;
    padding: 9px 20px;
    border-radius: 30px;
}

#detail-section .location-container .location-overview .button-container a:hover {
    background: #a6c6df;
}

#tab-section {
    padding: 0 0 50px 0;
}

#tab-section img.divider {
    margin: 0 0 40px 0;
}


/* tabs */
#tab-section h3.tab-title { margin:0 0 30px 0; display: block; width: 100%; position: relative }

	#tab-section h3.tab-title > a { box-shadow:inset 0 -1px #E6E6E6; display: block; width: 100%; padding-bottom:8px; }
	#tab-section h3.tab-title.active > a { color:#005191; box-shadow:inset 0 -1px #E6E6E6; }
	#tab-section h3.tab-title a:hover { color:#005191; box-shadow:inset 0 -1px #E6E6E6; text-decoration: underline; }

	#tab-section h3.tab-title a:after { 
		content:""; position:absolute; top:50%; margin-top:-10px; right: 0; display:block; width:17px; height:10px; background:url(../images/icon-arrow-down-dark.svg) no-repeat; transition:0.15s ease-in-out; transform:rotate(0);
	}
	#tab-section h3.tab-title.active a:after { transform:rotate(180deg); }

	.tab-title.hidden, .tab-title.hidden a {height: 0; display: none !important;}

/* tab content */
#tab-section .tab-content {display: none; opacity: 0; padding-bottom: 30px;}
	#tab-section #tab-content1 {
		display: block;
		opacity: 1;
	}

	#tab-section .tab-content ul {
		margin: 0 0 20px 0;
	}

	#tab-section .tab-content ul:last-child {
		margin: 0;
	}

	#tab-section .tab-content ul li {
		margin: 0 0 2px 20px;
		list-style: disc;
	}

	#tab-section .tab-content a {font-weight: 700; color: #005191;}
	#tab-section .tab-content a:hover {box-shadow: inset 0 -2px 0 0 #FF443B;}


/* print */
@media print {
    .view-desktop {
        display: none;
    }
    .view-mobile {
        display: block;
    }
    #header,
    #header-overlay,
    #breadcrumb-section,
    #buttons-container,
    .divider,
    #tab-content2,
    #tab-content3,
    #footer {
        display: none !important;
    }
    /* tabs */
    #tab-section img.divider {
        margin: 0 0 20px 0;
    }
    #tab-section .tab-content {
        display: block;
        opacity: 1;
        min-height: 1px;
        padding: 0 0 30px 0;
    }
}