/* Styles for the site FAQ pages */
#faq_header {
    background-color: #004A80;
    padding: 40px 0;
}
@media only screen and (min-width: 992px) {
    #faq_header {
        padding: 80px 0;
    }
}
@media only screen and (min-width:1200px) {
    #faq_header {
        height: 480px;
        padding-top: 8.7rem;
    }
}
@media only screen and (min-width:1440px) {
    #faq_header {
        height: 540px;
    }
}

#faq_header h1 {
    color: #fff;
    font-family: var(--headerFont-v4);
    font-weight: 400;
    font-size: 4.6rem;
    line-height: 5.2rem;
    text-align: center;
}
@media only screen and (min-width: 1200px) {
    #faq_header h1 {
        font-size: 6rem;
        margin-bottom: 1rem;
    }
}

#faq_header p {
    color: #fff;
    font-family: var(--primaryFont-v4);
    font-size: 2rem;
    line-height: 2.4rem;
    text-align: center;
}
#faq_content {
    background: transparent !important;
    margin-top: 30px;
}
@media only screen and (min-width: 1200px) {
    #faq_content {
        margin-top: -240px;
        padding-bottom: 20px;
    }
}
div.row.faqs-wrapper {
    padding: 0 10px;
}
@media only screen and (min-width: 1200px) {
    div.row.faqs-wrapper {
        padding: 0 30px;
    }
}
@media only screen and (min-width: 1440px) {
    div.row.faqs-wrapper {
        padding: 0 60px;
    }
}
/* Tab section styles */
div.faq-tabs-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: self-end;
    margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) {
    div.faq-tabs-wrapper {
        flex-wrap: nowrap;
        margin-bottom: 0;
    }
}
div.faq-tab {
    width: 100%;
    border-bottom: 1px solid #ababab;
    margin-bottom: 10px;
    cursor: pointer;
}
@media only screen and (min-width: 1200px) {
    div.faq-tab {
        max-width: 22%;
        background: #D6DFEA;
        margin-right: 20px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        height: 92%;
        margin-bottom: -1px;
        z-index: 0;
        padding: 35px 15px 20px;
    }
    div.faq-tab.active {
        background: var(--white);
        border: 1px solid #ababab;
        border-bottom: 1px solid #ffffff;
        z-index: 100;
        padding: 40px 35px 20px;
        height: 100%;
    }
}
@media only screen and (min-width: 1440px) {
    div.faq-tab {
        padding: 35px 35px 20px;
    }
}
div.faq-tab > h3 {
    font-family: var(--primaryFont-v4);
    color: #000000;
    font-weight:500;
    line-height: normal;
    text-align: center;
}
div.faq-tab.active > h3 {
    font-weight: 700;
}
@media only screen and (min-width: 1200px) {
    div.faq-tab > h3 {
        font-size: 2.4rem;
    }
}
div.faqs {
    background: #fff;
    border: none;
    border-radius: 20px;
    padding: 20px 10px;
    display: none;
}
@media only screen and (min-width: 1200px) {
    div.faqs {
        border: 1px solid #E0DDDD;
    }
}
div.faqs.show {
    display: block;
}
@media only screen and (min-width: 1200px) {
    div.faqs {
        padding: 82px 90px 60px;
    }
}
div.faqs h2 {
    font-family: var(--headerFont-v4);
    font-weight: 400;
    font-size: 3rem;
    line-height: 3.4rem;
    margin-bottom: 4rem;
    color: #000;
}
@media only screen and (min-width: 1200px) {
    div.faqs h2 {
        font-size: 4.2rem;
        line-height: normal;
        margin-bottom: 78px;
    }
}
div.faqs > a.load-more {
    font-family: var(--primaryFont-v4);
    display: inline-block;
    color: #fff;
    background-color: #61A741;
    border-radius: 8px;
    padding: 12px 32px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: normal;
    margin: 20px 0;
}
div.faqs > a.load-more.hide {
    display:none;
}
@media only screen and (min-width:1200px) {
    div.faqs > a.load-more {
        font-size: 1.8rem;
        padding: 24px 66px;
        margin: 0 0 40px;
    }
}
div.faqs > a.load-more:hover {
    text-decoration:underline;
}
div.single-faq {
    border-bottom: 1px solid #adadad;
    margin-bottom: 20px;
}
div.faqs > div.single-faq:last-of-type {
    border-bottom: none;
}
@media only screen and (min-width: 1200px) {
    div.single-faq {
        padding-bottom: 2rem;
        margin-bottom: 3rem;
    }
}
div.faq-question {
    display: flex;
    flex-wrap: nowrap;
    cursor: pointer;
    position: relative;
}
div.faq-header {
    width: 95%;
    padding-right: 20px;
}
div.faq-header > h3 {
    margin:0 0 10px;
    font-family: var(--primaryFont-v4);
    color: #020617;
    font-weight: 600;
    padding-left:5px;
    line-height: normal;
    font-size: 2rem;
}
@media only screen and (min-width: 1200px) {
    div.faq-header > h3 {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }
}
div.faq-question > div.opener {
    width: 12px;
    height:12px;
    position: absolute;
    border-top: 2px solid #000000;
    border-right: 2px solid #000000;
    right: 10px;
    top: 4px;
    rotate: 135deg;
}
@media only screen and (min-width: 1200px) {
    div.faq-question > div.opener {
        right: 20px;
        top: calc(50% - 18px);
    }
}
div.faq-question > div.opener.opened {
    rotate: -45deg;
}
div.faq-answer {
    padding-left: 5px;
    padding-right: 20px;
    display: none;
}
div.faq-answer.show {
    display: block;
}
div.faq-answer > p,
div.faq-answer > ul {
    color: #000;
    font-weight: 400;
    font-family: var(--primaryFont-v4);
    line-height:normal;
    margin-bottom: 30px;
}
@media only screen and (min-width: 1200px) {
    div.faq-answer > p,
    div.faq-answer > ul  {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
}
#get_codes_cta {
    padding: 20px 10px 60px;
}
@media only screen and (min-width: 1200px) {
    #get_codes_cta {
        padding: 30px 0 30px;
    }
}
#get_codes_cta h2 {
    text-align: center;
    font-family: var(--primaryFont), sans-serif;
}
@media only screen and (min-width:1200px) {
    #get_codes_cta h2 {
        font-size: 4.2rem;
        line-height: 5rem;
        margin-bottom: 2rem;
    }
}
button.esri-search__submit-button,
button.esri-search__clear-button {
    display: none;
}
#esri_search_content_cta {
    background: transparent !important;
    width: 100%;
}
@media only screen and (min-width: 1200px) {
    #esri_search_content_cta {
        margin-bottom: 2rem;
    }
}
div.esri-view-surface:focus {
    --esri-view-outline: none;
}
#zip_address > label {
    display: none;
}
/* ------------------------------------------------------------------------------------------------
 * Loader Styles - Sliding Dots
 * ----------------------------------------------------------------------------------------------*/
.container.waiting {
    max-width: unset;
    height: 100vh;
    width: 100vw;
    font-family: var(--primaryFont);
    padding: 0;
    background: rgba(0,0,0,0.65);
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -100;
    transition: opacity .3s ease-in-out;
}
.container.waiting.show {
    opacity: 1;
    z-index: 100;
}
.loader {
    height: 20px;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 12rem auto;
}
@media only screen and (min-width: 768px) {
    .loader {
        width: 40rem;
    }
}
.loader--dot {
    animation-name: loader;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background-color: black;
    position: absolute;
    border: 2px solid white;
}
.loader--dot:first-child {
    background-color: var(--secondaryColor7);
    animation-delay: 0.5s;
}
.loader--dot:nth-child(2) {
    background-color: var(--secondaryColor6);
    animation-delay: 0.4s;
}
.loader--dot:nth-child(3) {
    background-color: var(--secondaryColor5);
    animation-delay: 0.3s;
}
.loader--dot:nth-child(4) {
    background-color: var(--secondaryColor4);
    animation-delay: 0.2s;
}
.loader--dot:nth-child(5) {
    background-color: var(--primaryColor2);
    animation-delay: 0.1s;
}
.loader--dot:nth-child(6) {
    background-color: var(--primaryColor1);
    animation-delay: 0s;
}
.loader--text {
    position: absolute;
    top: 200%;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 2rem;
    margin: auto;
    color: var(--white);
    font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
    .loader--text {
        width: 40rem;
        padding: 0;
    }
}
.loader--text:after {
    content: "Please wait while we create your customized report...";
    font-weight: 600;
    animation-name: loading-text;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
@keyframes loader {
    15% {
        transform: translateX(0);
    }
    45% {
        transform: translateX(380px);
    }
    65% {
        transform: translateX(380px);
    }
    95% {
        transform: translateX(0);
    }
}
@keyframes loading-text {
    0% {
        content: "Please wait while we create your customized report...";
    }
    25% {
        content: "Please wait while we create your customized report...";
    }
    50% {
        content: "Please wait while we create your customized report...";
    }
    75% {
        content: "Please wait while we create your customized report...";
    }
}
@media only screen and (min-width: 1200px) {
    #zip_address_cta {
        padding-left: 0;
        width: 63%;
        margin-right: 12px;
    }
}
