:root {
    /** Fonts **/
    --headerFont : 'Buenard', serif;
    --primaryFont : "Source Sans Pro", sans-serif;

    /** Colors **/
    --headerColor : #454545;
    --fontColor : #454545;
    --logoColor1 : #A62836;
    --logoColor2 : #0B4B7F;
    --primaryColor1 : #F8C828;
    --primaryColor2 : #44A318;
    --primaryColor3 : #CC071D;
    --secondaryColor1 : #EFF5FA;
    --secondaryColor2 : #D3E4F1;
    --secondaryColor3 : #7FA2BF;
    --secondaryColor4 : #7FA2BF;
    --secondaryColor5 : #0775CE;
    --secondaryColor6 : #CC071D;
    --secondaryColor7 : #E37F14;
    --white : #fff;
    --black : #000;
}
html {
    min-height: 100%;
    box-sizing: border-box;
    font-size: 62.5%; /* Now 10px = 1 rem! */
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    min-height: 100%;
    font-family: var(--primaryFont);
    font-size: 1.6rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--headerFont);
    font-weight: 700;
    color: var(--headerColor);
    text-align: left;
}
h1 {
    font-size: 3.8rem;
    line-height: 4.6rem;
    letter-spacing: -.5px;
    margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
    h1 {
        font-size: 4.8rem;
        line-height: 6.2rem;
        margin-bottom: .5rem;
    }
}
h2, h3, h4, h5, h6 {
    letter-spacing: -.4px;
}
h2 {
    font-size: 3rem;
    line-height: 4.2rem;
}
@media only screen and (min-width: 600px) {
    h2 {
        font-size: 3.4rem;
        line-height: 5.6rem;
    }
}
@media only screen and (min-width: 768px) {
    h2 {
        font-size: 4rem;
        line-height: 5.2rem;
    }
}
h3 {
    font-size: 2.6rem;
    line-height: 3.6rem;
}
@media only screen and (min-width: 600px) {
    h3 {
        font-size: 3rem;
        line-height: 4rem;
    }
}
@media only screen and (min-width: 768px) {
    h3 {
        font-size: 3.2rem;
        line-height: 4.2rem;
    }
}
h4 {
    font-size: 2.6rem;
    line-height: 3.4rem;
}
h5 {
    font-size: 2rem;
    line-height: 2.6rem;
}
h6 {
    font-size: 1.6rem;
    line-height: 2.1rem;
}
p, p.p1, p.p2, p.p3, p.p4, th.p4, p.p5, p.p6, td.p6 {
    font-family: var(--primaryFont);
    color: var(--fontColor);
    font-weight: 400;
    text-align: left;
}
p {
    font-size: 1.6rem;
    line-height: 2.6rem;
}
p.p1 {
    font-size: 1rem;
    line-height: 1.6rem;
}
p.p2 {
    font-size: 1.2rem;
    line-height: 2rem;
}
p.p3 {
    font-size: 1.4rem;
    line-height: 1.9rem;
}
p.p4, th.p4 {
    font-size: 1.6rem;
    line-height: 2.6rem;
}
p.p5 {
    font-size: 1.8rem;
    line-height: 2.6rem;
}
p.p6, td.p6 {
    font-size: 1.6rem;
    line-height: 2rem;
}
@media only screen and (min-width: 600px) {
    p.p6, td.p6 {
        font-size: 1.8rem;
        line-height: 2.6rem;
    }
}
@media only screen and (min-width: 768px) {
    p.p6, td.p6 {
        font-size: 2rem;
        line-height: 3.2rem;
    }
}
input:-moz-submit-invalid {
    background: red;
}
/*----------------------------------------------------------------------------------------------------------------------
 Site Headers
 ---------------------------------------------------------------------------------------------------------------------*/
header.site-header {
    background-color: var(--white);
    box-shadow: 0 3px 6px 0 rgba(0,0,0,.2);
    margin-bottom: 5px;
}
@media only screen and (min-width: 768px) {
    header.site-header {
        height: 8.4rem;
        padding-top: 1.8rem;
        padding-left: 3rem;
    }
}
/* Hide the hamburger - we don't need it on this site. */
nav.navbar > button {
    display: none;
}
div.nav-cta {
    margin-bottom: .5rem;
    background-color: var(--secondaryColor5);
    border-radius: 3px;
    padding: .5rem 1rem;
}
div.nav-cta.survey {
    background-color: var(--logoColor1);
}
div.nav-cta:first-of-type {
    margin-top: 1.5rem;
}
@media only screen and (min-width: 375px) {
    div.nav-cta {
        margin-top: 1.5rem;
    }
    div.nav-cta.share {
        margin-top: 0;
    }
}
@media only screen and (min-width: 600px) {
    div.nav-cta.survey {
        margin-right: 3rem;
        margin-top: 1rem;
    }
}
@media only screen and (min-width: 768px) {
    div.nav-cta,
    div.nav-cta.survey {
        position: absolute;
        margin-top: 0;
        margin-bottom: 0;
        padding: 1rem 2.4rem;
        margin-right: 0;
    }
    div.nav-cta {
        right: 2.5rem;
    }
    div.nav-cta.survey {
        right: 25rem;
    }
    div.nav-cta.survey.inner {
        width: 10rem;
        right: 42rem;
        padding: .5rem 1rem;
    }
}
@media only screen and (min-width: 800px) {
    div.nav-cta.survey.inner {
        width: 12rem;
    }
}
@media only screen and (min-width: 1024px) {
    div.nav-cta.survey.inner {
        width: auto;
        padding: 1rem 2.4rem;
    }
}

div.nav-cta .p3 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
    div.nav-cta .p3 {
        margin-bottom: 0;
    }
}

div.nav-cta a {
    color: inherit;
}
div.nav-cta a:hover {
    text-decoration: none;
}

div.nav-form {
    width: 100%;
    border: 1px solid var(--secondaryColor5);
    border-radius: 3px;
    padding-left: .5rem;
    padding-right: 2rem;
    margin-bottom: .5rem;
}
@media only screen and (min-width: 360px) {
    div.nav-form {
        width: 95%;
    }
}
@media only screen and (min-width: 600px) {
    div.nav-form {
        width: 50%;
        margin-top: 1.5rem;
    }
}
@media only screen and (min-width: 768px) {
    div.nav-form {
        position: absolute;
        width: auto;
        right: 17rem;
        padding-left: 2rem;
        margin-top: .75rem;
    }
}
div.nav-form input[type="text"] {
    border: none;
}
div.nav-form input:focus {
    outline: none;
}
input.nav-reset {
    display: block;
    height: 1.5rem;
    width: 1.5rem;
    padding: 0;
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background-color: var(--white);
}
#nav_address_div {
    display: flex;
}
#nav_address_div > input[type=text] {
    width: 95%;
}
#nav_address_div > div {
    display: block;
    width: 0%;
    float: right;
}
div.nav-reset,
div.nav-submit {
    height: 1.5rem;
    width: 1.5rem;
    position: absolute;
    top: 6rem;
    right: 2rem;
}
div.nav-submit {
    right: 4rem;
}
@media only screen and (min-width: 360px) {
    div.nav-submit {
        right: 5rem;
    }
    div.nav-reset {
        right: 3.25rem;
    }
}
@media only screen and (min-width: 411px) {
    div.nav-submit {
        right: 5.5rem;
    }
    div.nav-reset {
        right: 3.75rem;
    }
}
@media only screen and (min-width: 600px) {
    div.nav-submit {
        top: 2.75rem;
        right: 3.75rem;
    }
    div.nav-reset {
        top: 2.75rem;
        right: 2rem;
    }
}
@media only screen and (min-width: 768px) {
    div.nav-submit {
        top: .725rem;
        right: 2.5rem;
    }
    div.nav-reset {
        top: .7rem;
        right: .5rem;
    }
}
div.nav-reset::before,
div.nav-reset::after {
    content: '';
    display: block;
    box-sizing: border-box;
    height: 1.5rem;
    width: 1px;
    border: 1px solid var(--secondaryColor5);
    transform: rotate(-45deg);
    position: absolute;
    right: .5rem;
    top: -2px;
}
div.nav-reset::after {
    transform: rotate(45deg);
}
div.nav-submit::before {
    content: '';
    display: block;
    box-sizing: border-box;
    position: absolute;
    height: 50%;
    width: 2px;
    background: var(--primaryColor2);
    top: 25%;
    left: 0;
    transform: translateX(3px) rotate(-45deg);
    transform-origin: left bottom;
}
div.nav-submit::after {
    content: '';
    display: block;
    box-sizing: border-box;
    height: 1.5rem;
    width: 1px;
    border-right: 2px solid var(--primaryColor2);
    transform: rotate(45deg);
    position: absolute;
    right: .5rem;
    top: -2px;
}
@media only screen and (min-width: 768px) {
    div.nav-reset::before,
    div.nav-reset::after {
        right: 6px;
        top: -1px;
    }
}

div.nav-reset input[type=reset] {
    width: 3rem;
    height: 3rem;
    outline: none;
    border: none;
    color: transparent;
    background: transparent;
    margin-top: -1rem;
    margin-left: -1rem;
}
div.nav-submit input[type=submit] {
    width: 3rem;
    height: 3rem;
    outline: none;
    border: none;
    color: transparent;
    background: transparent;
    margin-top: -1rem;
    margin-left: -1rem;
}

/*----------------------------------------------------------------------------------------------------------------------
  Site Footer
 ---------------------------------------------------------------------------------------------------------------------*/
footer.site-footer {
    background-color: var(--white);
    width: 100%;
    padding: 5rem 0;
}
@media only screen and (min-width: 768px) {
    footer.site-footer {
        min-height: 37rem;
        padding: 9.5rem 0;
    }
}
div.footer-logo,
div.hs-ack {
    text-align: center;
}
div.hs-ack {
    padding-top: 1rem;
    margin: 1rem 0;
    border-top: 1px solid #EFF5FA;
    border-bottom: 1px solid #EFF5FA;
}
/* Footer Menu */
div.footer-nav {
    padding: 0;
    margin-top: 1.5rem;
    text-align: center;
}
@media only screen and (min-width: 375px) {
    div.footer-nav {
        padding: 0 2rem;
    }
}
#menu_footer {
    list-style: none;
    padding-left: 0;
}
#menu_footer .menu_items {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 600;
    padding-left: 0;
    margin-bottom: 0;
}
#menu_footer .menu_items a {
    color: var(--logoColor2);
}
#menu_footer li {
    position: relative;
    display: inline-block;
    padding: 0 .5rem;
    border-right: 1px solid var(--logoColor2);
}
#menu_footer li:last-of-type {
    padding: 0 0 0 .5rem;
    border-right: none;
}
#menu_footer li:hover a:before {
    color:  #FCE8A4;
}


div.footer-info-bottom {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0 1rem;
}
@media only screen and (min-width: 375px) {
    div.footer-info-bottom {
        padding: 0 2rem;
    }
}
@media only screen and (min-width: 768px) {
    div.footer-info-bottom {
        padding: 0;
    }
}
div.footer-info-bottom p,
div.hs-ack p {
    text-align: center;
}
div.hs-ack p img {
    display: block;
    margin: 0 auto;
}
@media only screen and (min-width: 768px) {
    div.hs-ack p img {
        display: inline;
        margin: 0 1rem 0 0;
    }
}
/*----------------------------------------------------------------------------------------------------------------------
  Front Page - How Strong is my building code
 ---------------------------------------------------------------------------------------------------------------------*/
#front-get-codes,
#faq-header {
    background-color: var(--secondaryColor1);
    background-image: url(../images/find-my-codes-no-grid.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
}
#faq-header {
    background-image: url(../images/find-my-codes.png);
}
#front-get-codes {
    min-height: 85rem;
    padding-top: 2rem;
}
@media only screen and (min-width: 375px) {
    #front-get-codes {
        min-height: 92rem;
        padding-top: 2.5rem;
    }
}
@media only screen and (min-width: 600px) {
    #front-get-codes {
        min-height: 70rem;
        padding-top: 3.5rem;
    }
}
@media only screen and (min-width: 768px) {
    #front-get-codes {
        min-height: 500px;
        padding-top: 1rem;
    }
}
@media only screen and (min-width: 992px) {
    #front-get-codes {
        padding-top: 0;
        min-height: unset;
        background-image: url(../images/find-my-codes.png);
    }
}
#front-get-codes .container .row:last-of-type {
    position: relative;
}
#faq-header {
    margin-top: -5px;
    position: relative;
    z-index: -199999;
    height: 15rem;
    padding-top: 2.5rem;
}
@media only screen and (min-width: 576px) {
    #faq-header {
        height: 17rem;
        padding-top: 3.5rem;
    }
}
@media only screen and (min-width: 1024px) {
    #faq-header {
        height: auto;
        padding: 6rem 0 18rem;
    }
}
#faq-header.contractors {
    background: var(--secondaryColor7) url(../images/find-my-codes.png) no-repeat;
    background-position: bottom left;
    background-size: contain;
    height: 22rem;
}
@media only screen and (min-width: 600px) {
    #faq-header.contractors {
        height: 26rem;
        background-size: cover;
    }
}
@media only screen and (min-width: 1024px) {
    #faq-header.contractors {
        height: auto;
    }
}
@media only screen and (min-width: 992px) {
    #front-get-codes {
        padding: 8.5rem 0 7rem;
    }
}
#faq-header h1 {
    text-align: center;
    color: var(--logoColor2);
    letter-spacing: -.4px;
    font-size: 2.8rem;
    line-height: 3.2rem;
}
@media only screen and (min-width: 576px) {
    #faq-header h1 {
        font-size: 3.4rem;
        line-height: 4rem;
    }
}
@media only screen and (min-width: 992px) {
    #faq-header h1 {
        font-size: 3.8rem;
        line-height: 4.6rem;
    }
}
#faq-header.contractors h1,
#faq-header.contractors p {
    color: var(--white);
}
#front-get-codes h1 {
    width: 100%;
    text-align: center;
    color: var(--logoColor2);
}
#front-get-codes .container .row .col-12 > p {
    padding: 0 5%;
    text-align: center;
    line-height: 2rem;
    margin-bottom: 2rem;
}
@media only screen and (min-width: 375px) {
    #front-get-codes .container .row .col-12 > p {
        line-height: 2.4rem;
    }
}
@media only screen and (min-width: 768px) {
    #front-get-codes .container .row .col-12 > p {
        padding: 0 10%;
        line-height: 2.6rem;
        margin-bottom: 1rem;
    }
}
@media only screen and (min-width: 992px) {
    #front-get-codes .container .row .col-12 > p {
        padding: 0 20%;
    }
}
form.fp_header-form,
form.find_zip-form {
    width: 100%;
    padding: 0 5%;
}
@media only screen and (min-width: 768px) {
    form.fp_header-form,
    form.find_zip-form {
        padding: 0 10%;
    }
}
@media only screen and (min-width: 992px) {
    form.fp_header-form,
    form.find_zip-form {
        padding: 0 20%;
    }
}

.fp_header-form input[type=text],
.find_zip-form input[type=text] {
    width: 100%;
    font-size: 1.5rem;
    line-height: 2rem;
    color: var(--fontColor);
    padding: 1rem;
    border: 1px solid var(--secondaryColor5);
    border-radius: 3px;
    box-shadow: 0 10px 20px 0 rgba(0,0,0,.1);
}
.fp_header-form input[type=text] {
    margin-bottom: 1rem;
}
.find_zip-form input[type=text] {
    margin-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
    .fp_header-form input[type=text],
    .find_zip-form input[type=text] {
        margin-bottom: 3rem;
    }

}
#zip_address > label {
    display: none;
}
.fp_header-form input[type=text]:focus {
    outline: none;
}
@media only screen and (min-width: 768px) {
    .fp_header-form input[type=text],
    .find_zip-form input[type=text] {
        font-size: 1.8rem;
        line-height: 2.6rem;
        padding: 2rem 0 2rem 3rem;
    }
}
div.res-type-group {
    padding-bottom: 2.5rem;
    margin-top: .5rem;
}
@media only screen and (min-device-width: 600px) {
    div.res-type-group {
        margin-top: 1rem;
    }
}
@media only screen and (min-width: 768px) {
    div.res-type-group {
        padding-bottom: 1.5rem;
    }
}
div.fp-code-submit {
    padding-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
    div.res-type-group,
    div.fp-code-submit {
        padding-bottom: 3rem;
    }
}
div.res-type-group div {
    position:relative;
    font-size: 1.2rem;
    letter-spacing: 0;
    line-height: 2rem;
    vertical-align: middle;
    color: var(--fontColor);
    border: 1px solid rgba(0,0,0,.25);
    border-radius: 3px;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.25);
    display: inline-block;
}
div.res-type-group div:hover {
    border: 1px solid var(--secondaryColor5);
}
div.res-type-group div {
    width: 31%;
    margin-right: 1%;
    padding: .5rem 0 .4rem .5rem;
}
@media only screen and (min-width: 375px) {
    div.res-type-group div {
        width: 32%;
        margin-right: .5%;
    }
}
@media only screen and (min-width: 768px) {
    div.res-type-group div {
        width: 30%;
        margin-right: 3%;
    }
}
div.res-type-group div:last-of-type {
    margin-right: 0;
}

@media only screen and (min-width: 768px) {
    div.res-type-group div {
        margin-right: 4%;
        padding: 1.5rem 0 1.4rem 1.7rem;
        box-shadow: 0 1px 3px 0 rgba(0,0,0,.1);
        border: 1px solid #dedede;
    }
}
div.res-type-group div label {
    font-size: 1.2rem;
    line-height: 2rem;
    vertical-align: middle;
    margin-bottom: 0;
    color: var(--fontColor);
}
div.res-type-group div input {
    position:absolute;
    opacity:0;
    cursor:pointer;
}
/* Create a custom radio button */
.checkmark {
    display: inline-block;
    vertical-align: middle;
    margin-right: .5rem;
    height: 1.3rem;
    width: 1.3rem;
    background-color: var(--secondaryColor1);
    border: 1px solid rgba(0,0,0,.25);
    border-radius: 50%;
}
@media only screen and (min-width: 768px) {
    .checkmark {
        margin-right: 1rem;
        border: 1px solid #dedede;
    }
}
div.res-type-group div:hover input ~ .checkmark {
    background-color: var(--logoColor2);
    border: 1px solid var(--logoColor2);
}
div.res-type-group div:hover label {
    font-weight: 700;
}
/* When the radio button is checked, add styling */
div.res-type-group div.active {
    border: 1px solid var(--secondaryColor5);
}
div.res-type-group input:checked ~ .checkmark {
    background-color: var(--logoColor2);
    border: 1px solid var(--logoColor2);
}
div.res-type-group input:checked ~ label {
    font-weight: 700;
}
/* Find my codes submit button */
div.fp-code-submit {
    text-align: center;
}
div.fp-code-submit input[type=submit] {
    padding: .5rem 1rem;
    color: white;
    font-size: 1.4rem;
    line-height: 2.2rem;
    font-weight: 700;
    letter-spacing: .4px;
    background-color: var(--secondaryColor5);
    border-radius: 3px;
    border: 1px solid var(--secondaryColor5);
}
@media only screen and (min-width: 768px) {
    div.fp-code-submit input[type=submit] {
        padding: 1rem 3.2rem;
    }
}
div.address-error.show, div.code-type-error.show {
    opacity: 1;
}
div.code-type-error.bump-down {
    bottom: -32%;
}
@media only screen and (min-width: 360px) {
    div.code-type-error.bump-down {
        bottom: -35%;
    }
}
@media only screen and (min-width: 411px) {
    div.code-type-error.bump-down {
        bottom: -28%;
    }
}
@media only screen and (min-width: 600px) {
    div.code-type-error.bump-down {
        bottom: -30%;
    }
}
@media only screen and (min-width: 768px) {
    div.code-type-error.bump-down {
        bottom: -22%;
    }
}
div.address-error, div.code-type-error {
    position: absolute;
    bottom: -10%;
    background-color: #FFD9DE;
    border-radius: 3px;
    opacity: 0;
    transition: opacity .3s ease-in-out .2s;
}
@media only screen and (min-width: 768px) {
    div.address-error, div.code-type-error {
        bottom: -8%;
    }
}
div.address-error {
    width: 80%;
    left: calc(50% - calc(calc(100% * .8) / 2));
}
@media only screen and (min-width: 600px) {
    div.address-error {
        width: 50%;
        left: calc(50% - calc(calc(100% * .5) / 2));
    }
}
div.code-type-error {
    width: 80%;
    left: calc(50% - calc(calc(100% * .80) / 2));
}
@media only screen and (min-width: 600px) {
    div.code-type-error {
        width: 60%;
        left: calc(50% - calc(calc(100% * .6) / 2));
    }
}
@media only screen and (min-width: 768px) {
    div.code-type-error {
        width: 35%;
        left: calc(50% - calc(calc(100% * .35) / 2));
    }
}
div.address-error p, div.code-type-error p {
    text-align: center;
    padding: .8rem 1.6rem;
    margin-bottom: 0;
    color: var(--secondaryColor6);
    font-size: 1.4rem;
    line-height: 1.4rem;
}
/*----------------------------------------------------------------------------------------------------------------------
  FRONT - What You'll Learn Section
 ---------------------------------------------------------------------------------------------------------------------*/
#what-you-learn {
    background-color: var(--white);
    padding: 5rem 0;
}
div.section-header {
    margin-bottom: 3.8rem;
}
div.section-header h2 {
    color: var(--logoColor2);
    text-align: center;
}
div.training {
    margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
    div.training {
        margin-bottom: 0;
    }
}
div.training,
div.training p {
    text-align: center;
}
div.training p.p5 {
    line-height: 2.3rem;
    padding: 0 1.5rem;
}
@media only screen and (min-width: 768px) {
    div.training p.p5 {
        padding: 0;
    }
}
div.training img {
    margin-bottom: 2.3rem;
}
/*----------------------------------------------------------------------------------------------------------------------
  FRONT - Video Content Section
  --------------------------------------------------------------------------------------------------------------------*/
#front-vid-content {
    background: var(--secondaryColor1) url(../images/video-bg.png) no-repeat left top;
    background-size: cover;
    padding: 5rem 2rem;
}
@media only screen and (min-width: 768px) {
    #front-vid-content {
        padding: 5rem 0 3rem;
    }
}
@media only screen and (min-width: 992px) {
    #front-vid-content {
        height: 425px;
        padding: 8rem 0 0;
    }
}
div.owl-item > div > div {
    display: block;
    width: 100%;
}
@media only screen and (min-width: 768px) {
    div.owl-item > div > div {
        display: inline-block;
        width: 45%;
    }
}
div.owl-item > div > div:first-of-type {
    margin-right: 9%;
}
@media only screen and (min-width: 992px) {
    div.owl-item > div > div:first-of-type {
        padding-left: 4rem;
        margin-right: 5%;
    }
}
@media only screen and (min-width: 1200px) {
    div.owl-item > div > div:first-of-type {
        padding-left: 0;
        margin-right: 9%;
    }
}

button.owl-dot {
    background-color: transparent !important;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid #979797 !important;
    margin-right: .5rem;
}
button.owl-dot.active {
    border: none !important;
    background-color: var(--logoColor1) !important;
    outline: none;
}
div.owl-item h3 {
    color: var(--logoColor2);
    line-height: 3.2rem;
    margin-top: 1rem;
    padding: 0 .5rem;
}
@media only screen and (min-width: 600px) {
    div.owl-item h3 {
        margin-top: 1.5rem;
    }
}
@media only screen and (min-width: 768px) {
    div.owl-item h3 {
        line-height: 3.6rem;
        margin-top: 0;
        padding: 0;
    }
}
@media only screen and (min-width: 1024px) {
    div.owl-item h3 {
        line-height: 4.2rem;
    }
}
div.owl-item h3 span {
    color: var(--logoColor1);
}
div.owl-item p {
    padding: 0 .5rem;
}
@media only screen and (min-width: 768px) {
    div.owl-item p {
        padding: 0;
    }
}

div.owl-nav {
    position: absolute;
    top: 35%;
    left: -3.5rem;
    width: 55%;
    display: none;
}
@media only screen and (min-width: 992px) {
    div.owl-nav {
        display: block;
        left: -1.5rem;
        width: 53%;
    }
}
@media only screen and (min-width: 1200px) {
    div.owl-nav {
        left: -3.5rem;
        width: 53.5%;
    }
}
@media only screen and (min-width: 1440px) {
    div.own-nav {
        left: -4.5rem;
        width: 54.5%;
    }
}
button.owl-prev span,
button.owl-next span {
    display: none;
}
button.owl-prev,
button.owl-next {
    height: 3rem;
    width: 3rem;
}
button.owl-prev {
    background: transparent url(../images/icon-arrow-left.png) no-repeat left center !important;
    background-size: contain !important;
}
button.owl-next {
    background: transparent url(../images/icon-arrow-right.png) no-repeat right center !important;
    background-size: contain !important;
}
button.owl-next {
    position: absolute;
    right: 2.5rem;
}
button.owl-next:focus,
button.owl-prev:focus {
    outline: none;
}
div.owl-dots {
    line-height: 1;
    text-align: center;
    width: 100%;
}
@media only screen and (min-width: 992px) {
    div.owl-dots {
        width: 45%;
    }
}
div.owl-text {
    vertical-align: top;
}
@media only screen and (min-width: 992px) {
    div.owl-text {
        padding-top: 2.5rem;
    }
}

/*----------------------------------------------------------------------------------------------------------------------
   Front - Consumer FAQ section
 ---------------------------------------------------------------------------------------------------------------------*/
#front-faqs {
    background-color: var(--logoColor2);
    background: var(--logoColor2) url(../images/faq-bg-2.png) no-repeat left top;
    background-size: cover;
    padding: 5rem 0;
}
@media only screen and (min-width: 1024px) {
    #front-faqs {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
}
@media only screen and (max-width: 1440px) {
    #front-faqs {
        background-size: contain;
    }
}
#front-faqs h2 {
    text-align: center;
    color: #A4CDEF;
    margin-bottom: 4rem;
}
@media only screen and (min-width: 384px) {
    #front-faqs h2 {
        margin-bottom: 3rem;
    }
}
@media only screen and (min-width: 1024px) {
    #front-faqs h2 {
        margin-bottom: 5rem;
    }
}
div.fp-faq {
    text-align: center;
}
div.faq-question {
    display: inline-block;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,.4);
    padding: 1rem .5rem 0;
}
@media only screen and (min-width: 768px) {
    div.faq-question {
        padding: 2rem 1.5rem 0;
    }
}
@media only screen and (min-width: 1024px) {
    div.faq-question {
        width: 85%;
        padding: 2.5rem 2.5rem 0;
    }
}
div.opener {
    width: 2rem;
    height: 2rem;
    float: left;
    background: transparent url(../images/icon-arrow-down.png) no-repeat left bottom;
    background-size: contain;
    margin-right: .75rem;
    cursor: pointer;
    transition: background-image 0.3s ease-in-out;
}
@media only screen and (min-width: 360px) {
    div.opener {
        margin-right: 1rem;
    }
}
@media only screen and (min-width: 768px) {
    div.opener {
        margin-right: 2.5rem;
    }
}
div.opener.opened {
    background: transparent url(../images/icon-arrow-up.png) no-repeat left bottom;
    background-size: contain;
    transition: background-image .3s ease-in-out;
}

div.faq-header {
    width: 90%;
    float: left;
}
div.faq-header p {
    color: var(--white);
    line-height: 2rem;
    padding-top: .4rem;
}
@media only screen and (min-width: 375px) {
    div.faq-header p {
        padding-top: .25rem;
    }
}
div.faq-answer.opened {
    opacity: 1;
    height: auto;
}
div.faq-answer {
    height: 0;
    opacity: 0;
    overflow-y: hidden;
    display: inline-block;
    width: 100%;
    padding: 0 2.5rem 1.5rem 3.3rem;
    transition: all .3s ease-in-out;
}
@media only screen and (min-width: 360px) {
    div.faq-answer {
        padding-left: 3.6rem;
    }
}
@media only screen and (min-width: 768px) {
    div.faq-answer {
        padding-left: 6rem;
    }
}
@media only screen and (min-width: 1024px) {
    div.faq-answer {
        width: 85%;
        padding: 0 2.5rem 0 7rem;
    }
}
/*div.faq-answer.opened p {
    height: auto;
}*/
div.faq-answer p {
    color: rgba(255,255,255,.85);
    font-weight: 300;
    font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
    div.faq-answer p {
        font-size: 1.8rem;
    }
}
div.faq-answer p a {
    color: var(--white);
    text-decoration: underline;
}
#contractor-faqs div.faq-answer p a,
#consumer-faqs div.faq-answer p a {
    color: var(--logoColor2);
}
div.consumer-faqs,
div.commercial-faqs {
    text-align: center;
}
div.consumer-faqs {
    margin-bottom: 5rem;
}
@media only screen and (min-width: 1024px) {
    div.consumer-faqs {
        margin-bottom: 1.5rem;
    }
}
div.commercial-faqs {
    margin-top: 1rem;
}
div.consumer-faqs a {
    background-color: var(--secondaryColor5);
    border-radius: 3px;
    color: #fff;
    padding: 1rem 2.8rem;
    font-size: 1.4rem;
    line-height: 2.2rem;
    font-weight: 700;
}
@media only screen and (min-width: 1024px) {
    div.consumer-faqs a {
        padding: 1rem 5.8rem;
    }
}
div.consumer-faqs a:hover {
    text-decoration: none;
}
div.commercial-faqs a {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 2.2rem;
    color: var(--white);
    opacity: 80%;
    text-decoration: underline;
}

/*----------------------------------------------------------------------------------------------------------------------
  Front Page - Promote the campaign section
 ---------------------------------------------------------------------------------------------------------------------*/
#promote-it {
    background-color: var(--secondaryColor1);
    background: var(--secondaryColor1) url(../images/toolkit-bg.png) no-repeat left top;
    background-size: cover;
    padding: 5rem 0;
}
@media only screen and (min-width: 992px) {
    #promote-it {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
}
@media only screen and (min-width: 1920px) {
    #promote-it {
        background-position: bottom;
    }
}
@media only screen and (min-width: 600px) {
    #promote-it div.owl-nav.disabled {
        width: 116%;
        left: -3rem;
    }
}
@media only screen and (min-width: 768px) {
    #promote-it div.owl-nav.disabled {
        width: 124%;
    }
}
@media only screen and (min-width: 1024px) {
    #promote-it div.owl-nav.disabled {
        width: 118%;
    }
}
@media only screen and (min-width: 1280px) {
    #promote-it div.owl-nav.disabled {
        width: 115%;
    }
}
div.disaster-tile p {
    text-align: center;
    color: var(--secondaryColor5);
    margin: 1rem 0 0;
}
#disasters > div.owl-dots {
    width: 100%;
}
#promote-it h3 {
    color: var(--logoColor2);
    margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
    #promote-it h3 {
        margin-top: 0;
        line-height: 4.6rem;
    }
}
@media only screen and (min-width: 1280px) {
    #promote-it h3 {
        line-height: 5.2rem;
    }
}
div.promote-text {
    /* Baseline narrow */
}
@media only screen and (min-width: 768px) {
    div.promote-text {
        padding-left: 3rem;
    }
}
@media only screen and (min-width: 1024px) {
    div.promote-text {
        padding-top: 2.5rem;
    }
}
div.promote-text a {
    font-size: 1.4rem;
    line-height: 2.2rem;
    font-weight: 700;
    padding: 1rem 3.5rem;
    border-radius: 3px;
    background-color: var(--secondaryColor5);
    color: white;
    letter-spacing: .4px;
    display: block;
    margin: 3rem 0 0;
    width: 60%;
    text-align: center;
}

@media only screen and (min-width: 768px) {
    div.promote-text a {
        width: 40%;
        margin-top: 2rem;
    }
}
/*----------------------------------------------------------------------------------------------------------------------
  Find My Building Codes Page
 ---------------------------------------------------------------------------------------------------------------------*/
#find-map, #find_map_zip {
    position: relative;
}
#find-map, #find_map_zip, #map {
    height: 650px;
}
#find-map {
    margin-top: 250px;
}
@media only screen and (min-width: 375px) {
    #find-map, #find_map_zip, #map {
        height: 600px;
    }
}
@media only screen and (min-width: 600px) {
    #find-map {
        margin-top: 230px;
    }
}
@media only screen and (min-width: 768px) {
    #find-map {
        margin-top: 0;
    }
}
@media only screen and (min-width: 992px) {
    #find-map,
    #find_map_zip,
    #map {
        height: 575px;
    }
}
#find-map > div.map-overlay,
#find_map_zip > div.map-overlay {
    position: absolute;
    width: 100%;
    height: 30%;
    top: 70%;
    left: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0+50,0.25+100 */
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,.1) 33%,rgba(0,0,0,0.25) 67%,rgba(0,0,0,0.5) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.1) 33%,rgba(0,0,0,0.25) 67%,rgba(0,0,0,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.1) 33%,rgba(0,0,0,0.25) 67%,rgba(0,0,0,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#40000000',GradientType=0 ); /* IE6-9 */
}
#user-input {
    background-color: var(--secondaryColor1);
    background: var(--secondaryColor1) url(../images/fmbc-bg.png) no-repeat;
    background-position: bottom left;
    background-size: cover;
    padding: 16rem 0 8rem;
}
@media only screen and (min-width: 360px) {
    #user-input {
        padding-top: 14rem;
    }
}
@media only screen and (min-width: 1440px) {
    #user-input {
        padding: 19.5rem 0 17rem;
    }
}
form.find_zip-form {
    height: 400px;
}
@media only screen and (min-width: 600px) {
    form.find_zip-form {
        height: 360px;
    }
}
@media only screen and (min-width: 1440px) {
    form.find_zip-form {
        height: 320px;
    }
}
.find_zip-form .p6 {
    color: var(--logoColor2);
    font-weight: 700;
    text-align: center;
}
.find_zip-form input[type=text] {
    padding: 1.2rem 0 1.2rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: none;
}
.find_zip-form input:focus {
    outline: none;
}
div.code-key {
    background-color: white;
    width: 95%;
    position: absolute;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.09);
    text-align: center;
    bottom: -12rem;
    left: 2.5%;
    padding-top: 1rem;
}
@media only screen and (min-width: 360px) {
    div.code-key {
        bottom: -9rem;
    }
}
@media only screen and (min-width: 768px) {
    div.code-key {
        bottom: -6.5rem;
    }
}
@media only screen and (min-width: 1024px) {
    div.code-key {
        width: 856px;
        height: 100px;
        padding-top: 1.5rem;
        left: calc(calc(100vw / 2) - 428px);
    }
}
@media only screen and (min-width: 1440px) {
    div.code-key {
        width: 992px;
        height: 157px;
        padding-top: 2.6rem;
        bottom: -14rem;
        left: calc(calc(100vw / 2) - 496px);
    }
}
div.code-key p.p4 {
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--logoColor2);
    display:inline;
}
img.key {
    width: 25px;
    height: 25px;
    margin-right: .9rem;
}
div.legend {
    padding: 0;
}
@media only screen and (min-width: 600px) {
    div.legend {
        padding-top: 1rem;
    }
}
@media only screen and (min-width: 768px) {
    div.legend {
        padding-bottom: 1.5rem;
    }
}
@media only screen and (min-width: 1024px) {
    div.legend {
        padding: .5rem 0 1rem;
    }
}
@media only screen and (min-width: 1440px) {
    div.legend {
        padding: 2.5rem 0;
    }
}
div.legend p.p4 {
    color: #585858;
    font-weight: 700;
    text-transform: none;
    padding-right: 0;
    width: 50%;
    text-align: left;
    float: left;
    padding-left: 1rem;
    font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
    div.legend p.p4 {
        font-size: 1.6rem;
        width: auto;
        float: none;
    }
}
@media only screen and (min-width: 1024px) {
    div.legend p.p4 {
        padding-right: 2.6rem;
    }
}
@media only screen and (min-width: 1440px) {
    div.legend p.p4 {
        padding-right: 6.6rem;
    }
}
div.legend p.p4:last-of-type {
    padding-right: 0;
}
p.p4.no-code::before,
p.p4.code-current::before,
p.p4.code-obsolete::before,
p.p4.code-unavailable::before {
    display: inline-block;
    content: '';
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: .5rem;
    margin-top: -.5rem;
}
@media only screen and (min-width: 992px) {
    p.p4.no-code::before,
    p.p4.code-current::before,
    p.p4.code-obsolete::before,
    p.p4.code-unavailable::before {
        width: 30px;
        height: 30px;
        margin-right: 1.3rem;
    }
}
@media only screen and (min-width: 1440px) {
    p.p4.no-code::before,
    p.p4.code-current::before,
    p.p4.code-obsolete::before,
    p.p4.code-unavailable::before {
        width: 36px;
        height: 36px;
    }
}
p.p4.no-code::before {
    background-color: var(--primaryColor3);
}
p.p4.code-current::before {
    background-color: var(--primaryColor2);
}
p.p4.code-obsolete::before {
    background-color: var(--primaryColor1);
}
p.p4.code-unavailable::before {
    background-color: #303030;
}

/*----------------------------------------------------------------------------------------------------------------------
 Results Pages
 ---------------------------------------------------------------------------------------------------------------------*/
#results {
    background-color: var(--white);
}
div.results-content {
    margin-top: -10rem;
}
div.results-sidebar {
    margin-top: -5rem;
    position: relative;
    padding: 0;
}
@media only screen and (min-width: 1024px) {
    div.results-sidebar {
        margin-top: -3.6rem;
    }
}
@media only screen and (min-width: 1440px) {
    div.results-sidebar {
        margin-top: -5rem;
        padding: 0 1.5rem;
    }
}
div.results-sidebar div.sidebar-nav-wrapper {
    position: absolute;
    top: 175px;
}
@media only screen and (min-width: 1024px) {
    div.results-sidebar div.sidebar-nav-wrapper {
        top: 148px;
    }
}
div.results-header {
    display: flex;
    width: 100%;
    border-bottom: 4px solid var(--secondaryColor5);
}
@media only screen and (min-width: 768px) {
    div.results-header {
        border-bottom: 8px solid var(--secondaryColor5);
    }
}
div.results-header.commercial {
    border-bottom-color: var(--secondaryColor7);
}
div.results-header div:first-of-type {
    display: inline-block;
    background-color: var(--secondaryColor5);
    padding: 1rem 1.4rem .4rem;
    width: 60%;
}
@media only screen and (min-width: 768px) {
    div.results-header div:first-of-type {
        width: 25%;
    }
}
@media only screen and (min-width: 1024px) {
    div.results-header div:first-of-type {
        width: 15%;
    }
}
div.results-header.commercial  div:first-of-type {
    background-color: var(--secondaryColor7);
    width: 75%;
}
@media only screen and (min-width: 411px) {
    div.results-header.commercial  div:first-of-type {
        width: 50%;
    }
}
@media only screen and (min-width: 768px) {
    div.results-header.commercial  div:first-of-type {
        width: 30%;
    }
}
@media only screen and (min-width: 1024px) {
    div.results-header.commercial  div:first-of-type {
        width: 35%;
    }
}
@media only screen and (min-width: 1280px) {
    div.results-header.commercial  div:first-of-type {
        width: 28%;
    }
}
div.results-header div:first-of-type p {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .4px;
    line-height: 1.5rem;
    margin-bottom: .4rem;
}
div.results-header > div.spacer {
    width: 85%;
    background: transparent;
    border-left: 2px solid var(--secondaryColor5);
    border-bottom: 2px solid var(--secondaryColor5);
    border-bottom-left-radius: 3px;
    margin-left: -1px;

}
div.results-header.commercial > div.spacer {
    border-left-color: var(--secondaryColor7);
    border-bottom-color: var(--secondaryColor7);
}
div.results-header-content {
    background-color: var(--white);
    border: 1px solid #d8d8d8;
    border-top: none;
    border-radius: 0 0 3px 3px;
    min-height: 30rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.09);
}
@media only screen and (min-width: 375px) {
    div.results-header-content {
    }
}
@media only screen and (min-width: 411px) {
    div.results-header-content {
    }
}
@media only screen and (min-width: 768px) {
    div.results-header-content {
    }
}
@media only screen and (min-width: 1024px) {
    div.results-header-content {
    }
}
div.results-header-content > h1 {
    font-family: var(--primaryFont);
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--logoColor2);
    font-size: 1.4rem;
    line-height: 2.2rem;
    margin-bottom: 1.8rem;
    padding-top: 1.4rem;
    padding-left: 1.8rem;
}
@media only screen and (min-width: 768px) {
    div.results-header-content > h1 {
        padding-top: 2.8rem;
        padding-left: 2.4rem;
    }
}
@media only screen and (min-width: 1024px) {
    div.results-header-content > h1 {
        padding-left: 3.2rem;
    }
}
div.results-header-content h1 span img {
    display: inline;
    float: left;
    max-width: 32px;
    margin-right: 1.5rem;
    margin-top: -.3rem;
}
div.results-explain {
    width: 100%;
    float: left;
    padding: 0 1.8rem;
}
@media only screen and (min-width: 768px) {
    div.results-explain {
        width: 75%;
        padding: 0 0 0 2.4rem;
    }
}
@media only screen and (min-width: 1024px) {
    div.results-explain {
        width: 80%;
        padding: 0 0 0 3.2rem;
    }
}
div.results-code-key {
    clear: both;
    background-color: white;
    width: 100%;
}
@media only screen and (min-width: 360px) {
    div.results-code-key {
        text-align: center;
    }
}
@media only screen and (min-width: 600px) {
    div.results-code-key {
        padding: 0 1.3rem;
    }
}
@media only screen and (min-width: 768px) {
    div.results-code-key {
        padding-top: 1rem;
    }
}
@media only screen and (min-width: 1024px) {
    div.results-code-key {
        padding-top: 1.5rem;
        width: 80%;
    }
}
@media only screen and (min-width: 1440px) {
    div.results-code-key {
        padding-top: 2.6rem;
    }
}
div.results-code-key p.p4 {
    text-align: center;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2.2rem;
    letter-spacing: .05rem;
    text-transform: uppercase;
    color: var(--logoColor2);
    display:inline-block;
    margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
    div.results-code-key p.p4 {
        margin-bottom: 1rem;
    }
}
div.results-code-key img.key {
    width: 25px;
    height: 25px;
    margin-right: .9rem;
    margin-left: 2rem;
}
@media only screen and (min-width: 384px) {
    div.results-code-key img.key {
        margin-left: 0;
    }
}
div.results-code-key div.legend {
    padding: .5rem 1.5rem 0;
}
@media only screen and (min-width: 384px) {
    div.results-code-key div.legend {
        padding: .5rem 0 0;
        text-align: left;
    }
}
@media only screen and (min-width: 600px) {
    div.results-code-key div.legend {
        padding-top: 1rem;
    }
}
@media only screen and (min-width: 768px) {
    div.results-code-key div.legend {
        padding-top: 0;
        padding-bottom: 1.5rem;
    }
}
@media only screen and (min-width: 1024px) {
    div.results-code-key div.legend {
        padding: .5rem 0 1rem;
        text-align: left;
    }
}
@media only screen and (min-width: 1440px) {
    div.results-code-key div.legend {
        padding: 1rem 0 2.5rem;
    }
}
div.results-code-key div.legend p.p4 {
    color: #585858;
    font-weight: 600;
    text-transform: none;
    padding-right: 0;
    width: 100%;
    text-align: left;
    float: none;
    padding-left: .75rem;
    font-size: 1.4rem;
    letter-spacing: -.4px;
    margin-bottom: .5rem;
}
@media only screen and (min-width: 384px) {
    div.results-code-key div.legend p.p4 {
        width: 49.5%;
    }
}
@media only screen and (min-width: 768px) {
    div.results-code-key div.legend p.p4 {
        font-size: 1.5rem;
        width: auto;
        margin-bottom: 1rem;
        padding-left: 1rem;
    }
}
@media only screen and (min-width: 1024px) {
    div.results-code-key div.legend p.p4 {
        padding-right: 1rem;
    }
}
@media only screen and (min-width: 1280px) {
    div.results-code-key div.legend p.p4 {
        width: 24.5%;
        text-align: center;
    }
}
@media only screen and (min-width: 1440px) {
    div.results-code-key div.legend p.p4 {
        padding: 0;
        margin-bottom: 0;
        font-size: 1.6rem;
    }
}
div.results-code-key div.legend p.p4:last-of-type {
    padding-right: 0;
    margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
    div.results-code-key div.legend p.p4:last-of-type {
        margin-bottom: 1rem;
        width: 100%;
        text-align: center;
    }
}
@media only screen and (min-width: 1024px) {
    div.results-code-key div.legend p.p4:last-of-type {
        margin-bottom: 1.5rem;
        width: auto;
        text-align: left;
    }
}
@media only screen and (min-width: 1280px) {
    div.results-code-key div.legend p.p4:last-of-type {
        width: 24.5%;
    }
}
@media only screen and (min-width: 1440px) {
    div.results-code-key div.legend p.p4:last-of-type {
        margin-bottom: 0;
    }
}
div.results-code-key div.legend p.p4.no-code::before,
div.results-code-key div.legend p.p4.code-current::before,
div.results-code-key div.legend p.p4.code-obsolete::before,
div.results-code-key div.legend p.p4.code-unavailable::before {
    display: inline-block;
    content: '';
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: .5rem;
    margin-top: -.5rem;
}
@media only screen and (min-width: 992px) {
    div.results-code-key div.legend p.p4.no-code::before,
    div.results-code-key div.legend p.p4.code-current::before,
    div.results-code-key div.legend p.p4.code-obsolete::before,
    div.results-code-key div.legend p.p4.code-unavailable::before {
        width: 24px;
        height: 24px;
    }
}
@media only screen and (min-width: 1440px) {
    div.results-code-key div.legend p.p4.no-code::before,
    div.results-code-key div.legend p.p4.code-current::before,
    div.results-code-key div.legend p.p4.code-obsolete::before,
    div.results-code-key div.legend p.p4.code-unavailable::before {
        width: 30px;
        height: 30px;
        margin-right: .75rem;
    }
}
div.results-code-key div.legend p.p4.no-code::before {
    background-color: var(--primaryColor3);
}
div.results-code-key div.legend p.p4.code-current::before {
    background-color: var(--primaryColor2);
}
div.results-code-key div.legend p.p4.code-obsolete::before {
    background-color: var(--primaryColor1);
}
div.results-code-key div.legend p.p4.code-unavailable::before {
    background-color: #303030;
}
/*-------------------------------------------------------------------------------------------------
 * Results pages content sections
 * ----------------------------------------------------------------------------------------------*/
div.suggested-upgrades h1,
div.what-you-can-do h1,
div.disaster-history h1,
div.code-history h1,
div.bcat-detail h1 {
    font-family: var(--primaryFont);
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--logoColor2);
    font-size: 1.4rem;
    line-height: 2.2rem;
    margin-bottom: 1.8rem;
}
div.suggested-upgrades h1 span img,
div.what-you-can-do h1 span img,
div.disaster-history h1 span img,
div.code-history h1 span img,
div.bcat-detail h1 span img {
    display: inline;
    float: left;
    max-width: 32px;
    margin-right: 1.5rem;
    margin-top: -.3rem;
}
div.disaster-history h1 span img,
div.what-you-can-do h1 span img {
    max-width: 24px;
}
div.bcat-detail h1 span img {
    margin-top: -.4rem;
}
@media only screen and (min-width: 1440px) {
    div.bcat-detail h1 span img {
        padding-bottom: 4rem;
    }
}
div.code-history h1 span img {
    margin-top: -.8rem;
}
@media only screen and (min-width: 1440px) {
    div.code-history h1 span img {
        padding-bottom: 4rem;
    }
}
div.results-explain h2 {
    font-family: var(--primaryFont);
    line-height: 2.2rem;
    font-size: 1.8rem;
    color: var(--logoColor2);
}
@media only screen and (min-width: 600px) {
    div.results-explain h2 {
        font-size: 2.6rem;
        line-height: 3.2rem;
    }
}
@media only screen and (min-width: 1024px) {
    div.results-explain h2 {
        line-height: 4rem;
        font-size: 3.2rem;
    }
}
div.results-explain > .p5 {
    font-size: 1.6rem;
    line-height: 2rem;
}
@media only screen and (min-width: 768px) {
    div.results-explain > .p5 {
        font-size: 1.8rem;
        line-height: 2.3rem;
    }
}
@media only screen and (min-width: 1024px) {
    div.results-explain > .p5 {
        line-height: 2.6rem;
    }
}
div.results-explain .p5 a {
    text-decoration: underline;
}
div.results-icon {
    width: 100%;
    float: left;
    padding: 1rem 1.8rem 0;
}
@media only screen and (min-width: 768px) {
    div.results-icon {
        width: 25%;
        float: right;
    }
}
@media only screen and (min-width: 1024px) {
    div.results-icon {
        width: 20%;
        padding: 0 2.4rem;
    }
}
div.results-icon div.marker {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: -.25rem;
}
@media only screen and (min-width: 768px) {
    div.results-icon div.marker {
        width: 5rem;
        height: 5rem;
        display: block;
        margin: -1rem auto .9rem;
    }
}
@media only screen and (min-width: 1024px) {
    div.results-icon div.marker {
        width: 6rem;
        height: 6rem;
        margin: 0 auto .9rem;
    }
}
@media only screen and (min-width: 1440px) {
    div.results-icon div.marker {
        width: 8rem;
        height: 8rem;
        margin: 0 auto .9rem;
    }
}
div.marker.not-adopted {
    background-color: var(--primaryColor3);
}
div.marker.out-of-date {
    background-color: var(--primaryColor1);
}
div.marker.up-to-date {
    background-color: var(--primaryColor2);
}
div.marker.unavailable {
    background-color: #303030;
}
div.results-icon .p4 {
    display: inline-block;
    font-weight: 700;
    color: var(--logoColor2);
    margin-bottom: 0;
    vertical-align: super;
}
@media only screen and (min-width: 768px) {
    div.results-icon .p4 {
        display: block;
        width: 100%;
        text-align: center;
    }
}
div.results-icon .disclaimer {
    display: inline-block;
    width: 40%;
    line-height: 3rem;
    font-size: 1rem;
    text-align: center;
    vertical-align: super;
    color: #585858;
}
@media only screen and (min-width: 768px) {
    div.results-icon .disclaimer {
        display: block;
        width: 100%;
        line-height: 1.6rem;
        vertical-align: unset;
    }
}
div.results-icon .disclaimer a {
    color: #585858;
    text-decoration: underline;
}

div.suggested-upgrades,
div.what-you-can-do,
div.disaster-history,
div.code-history,
div.bcat-detail {
    background-color: var(--white);
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    min-height: 25rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.09);
    padding: 1.4rem 1.8rem;
}
@media only screen and (min-width: 1024px) {
    div.suggested-upgrades,
    div.what-you-can-do,
    div.disaster-history,
    div.code-history,
    div.bcat-detail {
        padding: 2.8rem 3.2rem;
    }
}
/*----------------------------------------------------------------------------------------------------------------------
 Suggested Upgrades styling
 ---------------------------------------------------------------------------------------------------------------------*/
div.upgrades-header {
    display: block;
    margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
    div.upgrades-header {
        display: flex;
    }
}
div.upgrades-header > div.year-select,
div.upgrades-header > div.dont-forget {
    display: block;
    width: 100%;
    background-color: var(--secondaryColor1);
    border: 1px solid var(--secondaryColor2);
    border-radius: 3px;
    margin-right: .5rem;
    padding: .7rem 1.3rem;
}
div.upgrades-header > div.year-select {
    margin-bottom: .5rem;
    position: relative;
}
@media only screen and (min-width: 768px) {
    div.upgrades-header > div.year-select {
        width: 100%;
        margin: 0 auto;
    }
}
div.upgrades-header > div.year-select > p {
    padding-right: 2.4rem;
}
div.upgrades-header > div.year-select > div {
    position: absolute;
    height: 25px;
    bottom: 2.6rem;
    right: .8rem;
}
@media only screen and (min-width: 600px) {
    div.upgrades-header > div.year-select > div {
        bottom: 1.3rem;
    }
}
@media only screen and (min-width: 1024px) {
    div.upgrades-header > div.year-select > div {
        bottom: 1rem;
    }
}
div.upgrades-header > div.year-select > div > a img {
    height: 2.5rem;
    width: 2.5rem;
}
div.upgrades-header > div.dont-forget p {
    color: #585858;
    font-size: 1rem;
    line-height: 1.2rem;
    margin-bottom: 0;
}
div.upgrades-header > div.dont-forget p span {
    font-weight: 700;
}
form.year-select-form {
    width: 100%;
}
form.year-select-form select {
    width: 100%;
    margin-right: 1.2rem;
    padding: .4rem 0 .6rem 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--logoColor2);
}
@media only screen and (min-width: 1024px) {
    form.year-select-form select {
        width: 50%;
    }
}
form.year-select-form div.select-year-label {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    margin-top: .5rem;
}
@media only screen and (min-width: 360px) {
    form.year-select-form div.select-year-label {
        margin-top: .75rem;
    }
}
@media only screen and (min-width: 1024px) {
    form.year-select-form div.select-year-label {
        width: 44%;
        margin-top: 0;
    }
}
form.year-select-form div.select-year-label p {
    font-size: 1.2rem;
    line-height: 1.5rem;
    padding-right: 1.8rem;
    color: var(--secondaryColor5);
}
@media only screen and (min-width: 1024px) {
    form.year-select-form div.select-year-label p {
        margin-bottom: 0;
        font-size: 1.4rem;
    }
}
div.peril-wrapper {
    margin-bottom: 0;
}
/*@media only screen and (min-width: 768px) {
    div.peril-wrapper {
        margin-bottom: 1.5rem;
    }
}*/
div[id^="perils"] div.owl-stage-outer  {
    width: calc(80% - 30px);
    margin: 0 auto;
    background-color: var(--secondaryColor1);
    border: 1px solid var(--secondaryColor2);
    padding: .4rem 0 .4rem .8rem;
    border-radius: 3px;
}
@media only screen and (min-width: 411px) {
    div[id^="perils"] div.owl-stage-outer {
        width: calc(85% - 30px);
    }
}
@media only screen and (min-width: 600px) {
    div[id^="perils"] div.owl-stage-outer {
        width: calc(85% - 30px);
        padding: .8rem 0 .8rem 2.7rem;
    }
}
@media only screen and (min-width: 1024px) {
    div[id^="perils"] div.owl-stage-outer {
        width: calc(90% - 30px);
    }
}
@media only screen and (min-width: 600px) {
    div[id^="perils"] div.owl-stage-outer div.owl-stage {
        min-width: 140% !important;
    }
}
div.peril-type {
    font-size: 1.6rem;
    line-height: 2.6rem;
    color: var(--secondaryColor4);
}
@media only screen and (min-width: 768px) {
    div.peril-type {
        font-size: 1.8rem;
    }
}
div.peril-type a {
    color: var(--secondaryColor4);
}
div.peril-type a:hover {
    color: var(--logoColor2);
    font-weight: 500;
    text-decoration: none;
}
div.peril-type a.peril-toggle.active {
    color: var(--logoColor2);
    font-weight: 600;
}
div[id^="perils"] div.owl-nav {
    width: 91%;
    display: block;
    top: 0;
    left: -1.25rem;
}
@media only screen and (min-width: 411px) {
    div[id^="perils"] div.owl-nav {
        width: 93.5%;
    }
}
@media only screen and (min-width: 600px) {
    div[id^="perils"] div.owl-nav {
        width: 95%;
    }
}
@media only screen and (min-width: 768px) {
    div[id^="perils"] div.owl-nav {
        width: 100%;
        left: -3.5rem;
    }
}
div[id^="perils"] div.owl-nav > button.owl-prev,
div[id^="perils"] div.owl-nav > button.owl-next {
    position: absolute;
    width: 36px;
    height: 36px;
    background-color: var(--secondaryColor1) !important;
    border: 1px solid var(--secondaryColor2);
    border-radius: 3px;
}
@media only screen and (min-width: 600px) {
    div[id^="perils"] div.owl-nav > button.owl-prev,
    div[id^="perils"] div.owl-nav > button.owl-next {
        width: 44px;
        height: 44px;
    }
}
div[id^="perils"] div.owl-nav > button.owl-prev {
    left: 1.25rem;
    background: var(--secondaryColor1) url(../images/icon-perils-arrow-left.png) no-repeat !important;
    background-size: 15px !important;
    background-position: center center !important;
}
@media only screen and (min-width: 768px) {
    div[id^="perils"] div.owl-nav > button.owl-prev {
        left: 3.5rem;
    }
}
div[id^="perils"] div.owl-nav > button.owl-next {
    right: -3.5rem;
    background: var(--secondaryColor1) url(../images/icon-perils-arrow-right.png) no-repeat !important;
    background-size: 15px !important;
    background-position: center center !important;
}
div.owl-nav.disabled {
    display: block !important;
    opacity: .3;
}
div.owl-nav.disabled > button {
    cursor: default !important;
}
div.upgrade-wrapper.current {
    height: auto;
    opacity: 1;
    transform: translateY(0);
}
div.upgrade-wrapper {
    height: 0;
    opacity: 0;
    transform: translateY(200px);
    transition: all .6s ease-in-out .3s;
}
table.upgrades {
    border-collapse: separate;
    border-spacing: 0 1.5rem;
    width: 100%;
}
table.upgrades caption {
    caption-side: top !important;
    display: none;
}
div.tablesorter-header-inner {
    margin-bottom: -2rem;
}
/*table.upgrades.tablesorter thead tr th:first-of-type {
    width: 15%;
}*/
table.upgrades.tablesorter thead tr th {
    border: none;
}
table.upgrades.tablesorter thead tr th:focus {
    outline: none;
}
table.upgrades.tablesorter thead tr th,
table.upgrades.tablesorter thead tr th.sortless,
table.upgrades.tablesorter thead tr th.sortless > div.tablesorter-header-inner{
    background: none;
}
table.upgrades.tablesorter thead tr th > div.tablesorter-header-inner,
table.upgrades.tablesorter thead tr th.tablesorter-headerAsc > div.tablesorter-header-inner,
table.upgrades.tablesorter thead tr th.tablesorter-headerDesc > div.tablesorter-header-inner {
    background-size: 11px;
    background-position: left .5rem;
    background-repeat: no-repeat;
}
table.upgrades.tablesorter thead tr th > div.tablesorter-header-inner div.tooltip-inner,
table.upgrades.tablesorter thead tr th.tablesorter-headerAsc > div.tablesorter-header-inner div.tooltip-inner,
table.upgrades.tablesorter thead tr th.tablesorter-headerDesc > div.tablesorter-header-inner div.tooltip-inner {
    line-height: 1.4rem;
    padding: 0 .5rem .25rem;
    margin-bottom: .5rem;
    background-color: transparent;
}
table.upgrades.tablesorter thead tr th > div.tablesorter-header-inner {
    background-image: url(../images/arrow-both.png);
}
table.upgrades.tablesorter thead tr th.tablesorter-headerAsc > div.tablesorter-header-inner {
    background-image: url(../images/arrow-desc.png);
    background-position: left 1rem;
}
table.upgrades.tablesorter thead tr th.tablesorter-headerDesc > div.tablesorter-header-inner {
    background-image: url(../images/arrow-asc.png);
    background-position: left 1rem;
}
@media only screen and (min-width: 768px) {
    table.upgrades.tablesorter thead tr th > div.tablesorter-header-inner,
    table.upgrades.tablesorter thead tr th.tablesorter-headerAsc > div.tablesorter-header-inner,
    table.upgrades.tablesorter thead tr th.tablesorter-headerDesc > div.tablesorter-header-inner {
        background-position: right center;
    }
}
table.upgrades.tablesorter div.tooltip-inner > a {
    color: var(--logoColor2);
    text-decoration: underline;
    font-size: 1.2rem;
}
table.upgrades.tablesorter tbody tr td {
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}
table.upgrades.tablesorter tbody tr td.opened {
    border-top: 1px solid var(--secondaryColor5);
    border-bottom: 1px solid var(--secondaryColor5);
}
table.upgrades.tablesorter tbody tr > td:first-of-type {
    border-left: 1px solid #d8d8d8;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
table.upgrades.tablesorter tbody tr > td.opened:first-of-type {
    border-left: 1px solid var(--secondaryColor5);
}
table.upgrades.tablesorter tbody tr > td:last-of-type {
    border-right: 1px solid #d8d8d8;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
table.upgrades.tablesorter tbody tr > td.opened:last-of-type {
    border-right: 1px solid var(--secondaryColor5);
}
table.upgrades tbody tr td.accordion {
    background-image: url(../images/upgrades-accordion-down.png);
    background-repeat: no-repeat;
    background-size: 1.8rem;
    background-position: center 2rem;
    cursor: pointer;
}
@media only screen and (min-width: 375px) {
    table.upgrades tbody tr td.accordion {
        background-position: center 2.1rem;
    }
}
@media only screen and (min-width: 768px) {
    table.upgrades tbody tr td.accordion {
        background-size: 2rem;
        background-position: center 2.25rem;
    }
}
table.upgrades tbody tr td.accordion.opened {
    background-image: url(../images/upgrades-accordion-up.png);
}
table.upgrades tbody tr {
    background-color: var(--white);
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.09);
}
table.upgrades tbody td {
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
}
table.upgrades.no-b-padding tbody td {
    padding-bottom: 0;
}
table.upgrades tbody tr td.hide {
    color: var(--white);
}
table.upgrades tbody tr td.p6 {
    color: var(--logoColor2);
}
table.upgrades tbody tr td.p6.opened {
    font-weight: 700;
}
table.upgrades thead tr th.accordion-header,
table.upgrades tbody tr td.accordion {
    width: 2rem;
}
@media only screen and (min-width: 600px) {
    table.upgrades thead tr th.accordion-header,
    table.upgrades tbody tr td.accordion {
        width: 4rem;
    }
}
table.upgrades thead tr th.title-header {
    width: 12rem;
}
@media only screen and (min-width: 360px) {
    table.upgrades thead tr th.title-header {
        width: 16rem;
    }
}
@media only screen and (min-width: 375px) {
    table.upgrades thead tr th.title-header {
        width: 17.5rem;
    }
}
@media only screen and (min-width: 384px) {
    table.upgrades thead tr th.title-header {
        width: 18.4rem;
    }
}
@media only screen and (min-width: 411px) {
    table.upgrades thead tr th.title-header {
        width: 21.1rem;
    }
}
@media only screen and (min-width: 600px) {
    table.upgrades thead tr th.title-header {
        width: 38rem;
    }
}
@media only screen and (min-width: 768px) {
    table.upgrades thead tr th.title-header {
        width: 27.2rem;
    }
}
@media only screen and (min-width: 1024px) {
    table.upgrades thead tr th.title-header {
        width: unset;
    }
}
table.upgrades thead tr th.disaster-header {
    width: 17.7rem;
}
@media only screen and (min-width: 360px) {
    table.upgrades thead tr th.disaster-header {
        width: unset;
    }
}
table.upgrades tbody tr td.cost,
table.upgrades thead tr th.cost,
table.upgrades tbody tr td.impact,
table.upgrades thead tr th.impact,
table.upgrades tbody tr td.total,
table.upgrades thead tr th.total {
    width: 5.5rem;
    font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
    table.upgrades tbody tr td.cost,
    table.upgrades thead tr th.cost,
    table.upgrades tbody tr td.impact,
    table.upgrades thead tr th.impact,
    table.upgrades tbody tr td.total,
    table.upgrades thead tr th.total {
        width: 8rem;
        font-size: 1.6rem;
    }
}
table.upgrades thead tr th.cost {
    text-align: center;
}
@media only screen and (min-width: 768px) {
    table.upgrades thead tr th.cost {
        text-align: center;
    }
}
table.upgrades thead tr th.impact,
table.upgrades thead tr th.total {
    text-align: right;
}
@media only screen and (min-width: 768px) {
    table.upgrades thead tr th.impact,
    table.upgrades thead tr th.total {
        text-align: center;
    }
}
table.upgrades tbody tr td.title-content,
table.upgrades tbody tr td.code-title {
    font-size: 1.3rem;
    line-height: 1.6rem;
    padding-left: .5rem;
    vertical-align: text-top;
    font-weight: 600;
}
@media only screen and (min-width: 375px) {
    table.upgrades tbody tr td.title-content,
    table.upgrades tbody tr td.code-title {
        font-size: 1.4rem;
        line-height: 1.8rem;
        padding-left: 1rem;
    }
}
@media only screen and (min-width: 600px) {
    table.upgrades tbody tr td.title-content,
    table.upgrades tbody tr td.code-title {
        padding-left: 0;
    }
}
@media only screen and (min-width: 768px) {
    table.upgrades tbody tr td.title-content,
    table.upgrades tbody tr td.code-title {
        font-size: 1.6rem;
        line-height: 2rem;
    }
}
table.upgrades tbody tr td.impact,
table.upgrades tbody tr td.cost {
    vertical-align: top;
}
table.upgrades tbody tr td.cost > img {
    width: 100%;
}
@media only screen and (min-width: 360px) {
    table.upgrades tbody tr td.cost > img {
        width: 100%;
    }
}
@media only screen and (min-width: 768px) {
    table.upgrades tbody tr td.cost > img {
        width: 90%;
    }
}
table.upgrades tbody tr td.impact {
    text-align: right;
}
@media only screen and (min-width: 768px) {
    table.upgrades tbody tr td.impact {
        padding-right: 2rem;
    }
}
table.upgrades tbody tr td.impact > img {
    width: 65%;
    margin-top: -.4rem;
}
div.why-how.opened {
    height: auto;
    opacity: 1;
}
div.why-how {
    height: 0;
    opacity: 0;
    margin-top: 1rem;
    margin-right: -10rem;
    overflow-y: hidden;
    transition: all .3s ease-in .2s;
}
@media only screen and (min-width: 768px) {
    div.why-how {
        margin-top: 2rem;
        margin-right: -12rem;
    }
}
@media only screen and (min-width: 768px) {
    div.why-how {
        margin-right: 0;
    }
}
div.why-how h2 {
    font-size: 1.3rem;
    line-height: 2.6rem;
    color: var(--secondaryColor5);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 700;
    margin-bottom: 0;
    font-family: var(--primaryFont);
}
@media only screen and (min-width: 375px) {
    div.why-how h2 {
        font-size: 1.4rem;
    }
}
@media only screen and (min-width: 768px) {
    div.why-how h2 {
        font-size: 1.8rem;
    }
}
div.why-how p {
    font-size: 1.4rem;
    line-height: 2rem;
}
@media only screen and (min-width: 768px) {
    div.why-how p {
        font-size: 1.8rem;
        line-height: 2.6rem;
    }
}
/*----------------------------------------------------------------------------------------------------------------------
 Disaster history styles
 ---------------------------------------------------------------------------------------------------------------------*/
@media only screen and (min-width: 1280px) {
    #event_history > table {
        width: 100%;
    }
}
div.disaster-history > p,
div.code-history > p,
div.bcat-detail > p {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.9rem;
    color: #585858;

}
@media only screen and (min-width: 768px) {
    div.disaster-history > p {
        width: 75%;
    }
}
@media only screen and (min-width: 1024px) {
    div.disaster-history > p {
        width: 50%;
    }
}
@media only screen and (min-width: 1024px) {
    div.code-history > p,
    div.bcat-history > p {
        width: 75%;
    }
}
@media only screen and (min-width: 1440px) {
    div.disaster-history > p,
    div.code-history > p,
    div.bcat-history > p {
        margin-left: 3.9rem;
        margin-top: -1.5rem;
    }
}
@media only screen and (min-width: 1440px) {
    div.disaster-history > div > table {
        width: 100%;
    }
}
div.history.opened {
    margin-top: 1.7rem;
    height: auto;
    opacity: 1;
}
div.history {
    width: 125%;
    margin-right: -5rem;
    height: 0;
    opacity: 0;
    overflow-y: hidden;
    transition: all .3s ease-in .2s;
}
@media only screen and (min-width: 360px) {
    div.history {
        width: 120%;
    }
}
@media only screen and (min-width: 411px) {
    div.history {
        width: 115%;
    }
}
@media only screen and (min-width: 600px) {
    div.history {
        width: 110%;
    }
}
@media only screen and (min-width: 1440px) {
    div.history {
        margin-right: -5%;
    }
}
div.history > div {
    display: block;
    width: 100%;
    border-bottom: 1px solid #cdcdcd;
}
div.history > div:first-of-type {
    padding-bottom: .5rem;
}
div.history div.header {
    font-size: 1.2rem;
    line-height: 2rem;
    color: var(--secondaryColor5);
    font-weight: 400;
    display: inline-block;
}
@media only screen and (min-width: 1280px) {
    div.history div.header {
        font-size: 1.6rem;
    }
}
div.history div.header.center,
div.history div.data div.center {
    text-align: center;
}
@media only screen and (max-width: 599px) {
    div.history div.data div.center {
        text-align: left;
    }
}
div.history div.header.event,
div.history div.header.location,
div.history div.header.duration,
div.history div.header.year {
    width: 24%;
}
@media only screen and (min-width: 600px) {
    div.history div.header.event {
        width: 50%;
    }
    div.history div.header.location {
        width: 20%;
    }
    div.history div.header.duration {
        width: 18%;
    }
    div.history div.header.year {
        width: 9%;
    }
}
div.history div.data {
    padding-top: .5rem;
    padding-bottom: .7rem;
}
div.history div.data div {
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: #303030;
    font-weight: 400;
}
div.history div.data div:first-of-type {
    font-size: 1.6rem;
    line-height: 2.6rem;
    color: #303030;
    font-weight: 600;
}
div.history div.data div:first-of-type span {
    font-size: 1.4rem;
    font-weight: 400;
}
@media only screen and (min-width: 600px) {
    div.history div.data div {
        display: inline-block;
        vertical-align: top;
        line-height: 2.6rem;
    }
    div.history div.data div.event {
        width: 50%;
    }
    div.history div.data div.location {
        width: 20%;
    }
    div.history div.data div.duration {
        width: 18%;
    }
    div.history div.data div.year {
        width: 9%;
    }
}
table.upgrades thead tr th.total {
    color: #585858;
}
table.upgrades tbody tr td.disaster-total {
    color: var(--logoColor2);
    font-size: 1.4rem;
    line-height: 1.6rem;
    padding-right: .5rem;
}
@media only screen and (min-width: 768px) {
    table.upgrades tbody tr td.disaster-total {
        font-size: 1.6rem;
        line-height: 2rem;
        text-align: center;
    }
}
@media only screen and (min-width: 1440px) {
    table.upgrades tbody tr td.disaster-total {
        font-size: 2rem;
        line-height: 2.2rem;
    }
}
/* Code History Sections */
#code_history > table {
    width: 100%;
}
div.history.code div.data > div.version,
div.history.code div.data > div.duration {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.6rem;
    vertical-align: top;
}
@media only screen and (min-width: 600px) {
    div.history.code div.data > div.version {
        font-size: 1.6rem;
        line-height: 2.6rem;
    }
    div.history.code div.data > div.duration {
        line-height: 2.6rem;
    }
}
div.history.code div.header.version,
div.history.code div.data > div.version {
    width: 65%;
}
div.history.code div.header.duration,
div.history.code div.data > div.duration {
    width: 33%;
}
@media only screen and (min-width: 768px) {
    div.history.code div.header.version,
    div.history.code div.data > div.version {
        width: 75%;
    }
    div.history.code div.header.duration,
    div.history.code div.data > div.duration {
        width: 23%;
    }
}
@media only screen and (min-width: 1024px) {
    div.history.code div.header.version,
    div.history.code div.data > div.version {
        width: 81%;
    }
    div.history.code div.header.duration,
    div.history.code div.data > div.duration {
        width: 18%;
        text-align: right;
    }
}
/*
 * BCAT DETAIL Styling
 */
div.bcat-detail > div {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--logoColor2);
}
div.bcat-detail h2,
div.bcat-detail h3 {
    font-weight: 600;
    font-family: var(--primaryFont);
    color: var(--logoColor2);
    font-size: 2.4rem;
    line-height: 3rem;
    letter-spacing: -.4px;
}
div.bcat-detail h3 {
    color: #585858;
    font-size: 1.8rem;
    line-height: 2rem;
    margin-top: 1rem;
}
div.bcat-place-data p,
div.bcat-haz-data p,
div.bcat-haz-detail p {
    font-size: 1.4rem;
    line-height: 1.9rem;
    color: #585858;
}
div.bcat-place-data p span,
div.bcat-haz-data p span,
div.bcat-haz-detail p span {
    color: #ff0000;
    font-weight: 600;
}
div.bcat-place-data p.label,
div.bcat-haz-data p.label {
    text-decoration: underline;
}
div.bcat-haz-detail p.label {
    font-weight: 600;
}
div.bcat-place-data > div,
div.bcat-haz-data > div,
div.bcat-haz-detail > div {
    display: inline-table;
}
div.bcat-place-data > div:nth-of-type(1),
div.bcat-place-data > div:nth-of-type(3) {
    width: 15%;
}
div.bcat-place-data > div:nth-of-type(2),
div.bcat-place-data > div:nth-of-type(4) {
    width: 34%;
}
div.bcat-haz-data > div:nth-of-type(1),
div.bcat-haz-data > div:nth-of-type(3) {
    width: 25%;
}
div.bcat-haz-data > div:nth-of-type(2),
div.bcat-haz-data > div:nth-of-type(4) {
    width: 24%;
}
div.bcat-haz-detail > div {
    width: 30%;
}
div.bcat-haz-detail > div:last-of-type {
    width: 29%;
}
/*----------------------------------------------------------------------------------------------------------------------
 IBC results page styles
 ---------------------------------------------------------------------------------------------------------------------*/
div.what-you-can-do > p {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.9rem;
    color: #585858;
    margin-bottom: 2.5rem;
}
@media only screen and (min-width: 768px) {
    div.what-you-can-do > p {
        width: 75%;
    }
}
@media only screen and (min-width: 1440px) {
    div.what-you-can-do > p {
        margin-left: 3.9rem;
        margin-top: -1.5rem;
    }
}


/*----------------------------------------------------------------------------------------------------------------------
 Results pages sidebars
 ---------------------------------------------------------------------------------------------------------------------*/
div.sidebar-header {
    width: 100%;
    background-color: var(--white);
    padding-bottom: 1rem;
    border: 1px solid #dedede;
    border-radius: 5px;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1);
    margin-bottom: 3rem;
}
div.sidebar-header p.p3 {
    line-height: 2.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--logoColor2);
    margin-top: .9rem;
    text-align:center;
}
div.sidebar-header div.links {
    display: block;
    margin: 0 .9rem;
}
@media only screen and (min-width: 1024px) {
    div.sidebar-header div.links {
        display: flex;
        height: 6.5rem;
    }
}
div.links a {
    display: inline-block;
    width: 100%;
}
@media only screen and (min-width: 1024px) {
    div.links a {
        display: block;
        width: 50%;
    }
}
div.links a:hover {
    color: var(--white);
    text-decoration: none;
}
@media only screen and (min-width: 1024px) {
    div.links a div {
        height: 6.5rem;
    }
}
div.links a div.res {
    background-color: var(--secondaryColor5);
    padding: 1.6rem;
    vertical-align: middle;
    border: 1px solid var(--secondaryColor5);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
@media only screen and (min-width: 1024px) {
    div.links a div.res {
        padding: 1.6rem .9rem;
        border-top-right-radius: 0;
        border-bottom-left-radius: 3px;
    }
}
@media only screen and (min-width: 1280px) {
    div.links a div.res {
        padding: 1.6rem;
    }
}
div.links a div.res.commercial {
    background-color: var(--white);
    border-color: var(--secondaryColor7);
}
div.links a:hover div.res.commercial {
    background-color: var(--secondaryColor5);
    border-color: var(--secondaryColor5);
}

div.links a div.comm {
    padding: .9rem .5rem .9rem 1.3rem;
    border: 1px solid var(--secondaryColor5);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}
@media only screen and (min-width: 1024px) {
    div.links a div.comm {
        border-top-right-radius: 3px;
        border-bottom-left-radius: 0;
        padding: .9rem .5rem .9rem .9rem;
    }
}
@media only screen and (min-width: 1280px) {
    div.links a div.com {
        padding: .9rem .5rem .9rem 1.3rem;
    }
}
div.links a:hover div.comm {
    background-color: var(--secondaryColor7);
    border-color: var(--secondaryColor7);
}
div.links a:hover div.comm p,
div.links a:hover div.res.commercial p {
    color: white;
    font-weight: 600;
}
div.links a div.comm.commercial {
    background-color: var(--secondaryColor7);
    border-color: var(--secondaryColor7);
}
div.links div.res p {
    font-size: 1.4rem;
    line-height: 1.5rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0;
}
div.links div.res.commercial p {
    font-size: 1.4rem;
    line-height: 1.5rem;
    letter-spacing: -.2px;
    color: var(--fontColor);
    font-weight: 400;
}
div.links div.comm p {
    font-size: 1.4rem;
    line-height: 1.5rem;
    letter-spacing: -.2px;
    margin-bottom: 0;
}
div.links div.comm.commercial p {
    font-size: 1.4rem;
    line-height: 1.5rem;
    color: var(--white);
    font-weight: 600;
}
div.comm p a,
div.res p a {
    color:  var(--fontColor);
}
div.comm p a:hover,
div.res p a:hover {
    color: var(--secondaryColor5);
    text-decoration: none;
}

div.sidebar-nav {
    display: flex;
    padding: .5rem 0;
    margin-bottom: .5rem;
    cursor: pointer;
}
@media only screen and (min-width: 1280px) {
    div.sidebar-nav {
        padding: 1rem 0;
    }
}
div.sidebar-nav.active {
    background-color: var(--secondaryColor1);
    border: 1px solid var(--secondaryColor2);
    border-radius: 3px;
}
div.sidebar-nav p.p6 {
    margin-bottom: 0;
    font-size: 1.6rem;
    line-height: 2rem;
}
@media only screen and (min-width: 1280px) {
    div.sidebar-nav p.p6 {
        font-size: 2rem;
        line-height: 3.2rem;
    }
}
div.sidebar-nav.active p {
    color: var(--logoColor2);
    font-weight: 700;
}
div.sidebar-nav > div.icon {
    width: 25%;
    text-align:center;
    float: left;
}
div.sidebar-nav div.icon img {
    max-width: 50%;
}
div.sidebar-nav > div.label {
    width: 75%;
    text-align: left;
    float: right;
}

/*----------------------------------------------------------------------------------------------------------------------
 Results Pages - Share Data
 ---------------------------------------------------------------------------------------------------------------------*/
#share-data {
    background: url(../images/share-bg.png) no-repeat right bottom;
    background-size: contain;
    padding-bottom: 3rem;
}
@media only screen and (min-width: 600px) {
    #share-data {
        padding-bottom: 7rem;
    }
}
@media only screen and (min-width: 1024px) {
    #share-data {
        padding-bottom: 3rem;
    }
}
@media only screen and (min-width: 1440px) {
    #share-data {
        background-size: cover;
        height: 39rem;
        padding-bottom: 0;
    }
}
div.share-data-content > div {
    background: var(--secondaryColor1) url(../images/img-share-data.png) no-repeat bottom;
    background-position-x: 90%;
    border: 1px solid var(--secondaryColor2);
    border-radius: 3px;
    min-height: 22rem;
    margin-bottom: 3rem;
    padding: 4rem;
}
div.share-data-content .p6 {
    color: var(--logoColor2);
    font-weight: 700;
}
div.share-data-content .p3 {
    width: 100%;
    line-height: 2.2rem;
    margin-bottom: 2rem;
}
@media only screen and (min-width: 600px) {
    div.share-data-content .p3 {
        width: 75%;
    }
}
@media only screen and (min-width: 1280px) {
    div.share-data-content .p3 {
        width: 50%;
    }
}
div.share-data-content a {
    color: var(--white);
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 2.2rem;
    padding: 1rem 4.3rem;
    background-color: var(--secondaryColor5);
    border-radius: 3px;
}
div.share-data-content a:hover {
    text-decoration: none;
}

/*----------------------------------------------------------------------------------------------------------------------
 Popup Maker Modal Styles
 ---------------------------------------------------------------------------------------------------------------------*/
.toolkit {
    background-color: rgba(0,0,0,.75);
}
button.pum-close {
    background: url(../images/modal-close.png) no-repeat center center !important;
    background-size: contain !important;
    height: 20px !important;
    width: 20px !important;
    top: .5rem !important;
    right: .5rem !important;
    text-shadow: none !important;
    box-shadow: none !important;
}
@media only screen and (min-width: 1024px) {
    button.pum-close {
        height: 30px !important;
        width: 30px !important;
        top: 3.5rem !important;
        right: 4rem !important;
    }
}
input.toolkit-input-text,
input.toolkit-input-email,
input.toolkit-input-phone,
textarea.toolkit-input-textarea {
    padding: 1.25rem 1.5rem;
    width: 100%;
    border: 1px solid var(--secondaryColor5);
    border-radius: 3px;
    font-size: 1.6rem;
    line-height: 2.6rem;
    color: #585858;
}
.share-data-checkbox span,
.share-data-radio span {
    margin-left: 0;
    margin-right: 1.6rem;
    color: #454545;
    font-size: 1.8rem;
    line-height: 2.6rem;
}
.share-data-checkbox > span:last-of-type,
.share-data-radio > span:last-of-type {
    margin-right: 0;
}
.share-data-checkbox input[type=checkbox] {
    outline: none;
    -webkit-appearance: none;
    height: 13px;
    width: 13px;
    border: 1px solid var(--secondaryColor5);
    border-radius: 3px;
    margin-right: 3px;
}
.share-data-radio input[type=radio] {
    outline: none;
    -webkit-appearance: none;
    height: 15px;
    width: 15px;
    border: 1px solid var(--secondaryColor5);
    border-radius: 50%;
    margin-right: 3px;
}
.share-data-checkbox input[type=checkbox]:checked,
.share-data-radio input[type=radio]:checked {
    background-color: var(--secondaryColor5);
}

textarea.toolkit-input-textarea {
    resize: none;
    height: 15rem;
}
input.toolkit-send {
    padding: 1rem 6.4rem;
    background: var(--secondaryColor5);
    border-radius: 3px;
    outline: none;
    color: white;
    font-weight: 700;
    border: none;
    font-size: 1.4rem;
    line-height: 2.2rem;
}

/*----------------------------------------------------------------------------------------------------------------------
 FAQ pages
 ---------------------------------------------------------------------------------------------------------------------*/
#consumer-faqs, #contractor-faqs {
    background-color: var(--white);
    background: var(--white) url(../images/faq-bg-2.png) no-repeat left top;
    background-size: cover;
    box-shadow: 0 3px 6px 0 var(--secondaryColor5);
    margin-bottom: 9px;
    border-top: 3px solid var(--secondaryColor5);
    padding-top: 3rem;
}
#contractor-faqs {
    box-shadow: 0 3px 6px 0 var(--secondaryColor7);
    border-top-color: var(--secondaryColor7);
}
@media only screen and (min-width: 992px) {
    #consumer-faqs, #contractor-faqs {
        padding-top: 4rem;
        padding-bottom: 5rem;
    }
}
@media only screen and (max-width: 1440px) {
    #consumer-faqs, #contractor-faqs {
        background-size: contain;
    }
}
#consumer-faqs h3, #contractor-faqs h3 {
    text-align: center;
    color: #606060;
}
#faq-header p {
    margin-top: 1rem;
    margin-bottom: 0;
    color: var(--secondaryColor5);
    text-align: center;
}
@media only screen and (min-width: 1024px) {
    #faq-header p {
        margin-top: 2rem;
    }
    #consumer-faqs h3, #contractor-faqs h3 {
        padding-bottom: 5rem;
    }
}
#consumer-faqs div.faq-question, #contractor-faqs div.faq-question {
    border-top-color: rgba(0,0,0,.2);
}
#consumer-faqs div.faq-question.last-faq,
#contractor-faqs div.faq-question.last-faq {
    border-bottom: 1px solid rgba(0,0,0,.2);
    padding-bottom: 2rem;
}
#consumer-faqs div.faq-header p, #contractor-faqs div.faq-header p {
    color: var(--logoColor2);
}
#consumer-faqs div.faq-answer p, #contractor-faqs div.faq-answer p {
    color: var(--logoColor2);
}
#consumer-faqs div.consumer-faqs, #contractor-faqs div.consumer-faqs {
    margin-top: 1.5rem;
}
@media only screen and (min-width: 1024px) {
    #consumer-faqs div.consumer-faqs, #contractor-faqs div.consumer-faqs {
        margin-top: 3rem;
    }
}
#contractor-faqs div.consumer-faqs a {
    background-color: var(--secondaryColor7);
}

/*----------------------------------------------------------------------------------------------------------------------
  Sliding divs for upgrade sets
 */
div.upgrade-set.active {
    opacity: 1;
    height: auto;
    display: block;
}
div.upgrade-set {
    opacity: 0;
    height: 0;
    display: none;
    transition: all .6s ease-in-out .3s;

}
div.upgrade-set > h4 {
    margin-bottom: 1rem;
}
span.code-title::after {
    display: inline-block;
    content: '';
    height: 18px;
    width: 18px;
    border: none;
    border-radius: 50%;
    vertical-align: sub;
    margin-left: 1.5rem;
    margin-top: -1rem;
}
@media only screen and (min-width: 992px) {
    span.code-title::after {
        width: 24px;
        height: 24px;
    }
}
span.code-title.up-to-date::after {
    background-color: var(--primaryColor2);
}
span.code-title.out-of-date::after {
    background-color: var(--primaryColor1);
}
span.code-title.not-adopted::after {
    background-color: var(--primaryColor3);
}
/* Turn off color coded circles after code title */
span.code-title.up-to-date::after,
span.code-title.out-of-date::after,
span.code-title.not-adopted::after {
    background-color: var(--white);
}

span.code-title {
    color: var(--logoColor2);
    font-family: var(--primaryFont);
    font-weight: 600;
    font-size: 85%;
}
/*------------------------------------------------------------------------------
  Responsive sidebar for results pages
 -----------------------------------------------------------------------------*/
#responsive_side_nav {
    position: fixed;
    top: 125px;
    background-color: var(--white);
    z-index: 50;
}
@media only screen and (min-width: 600px) {
    #responsive_side_nav {
        top: 140px;
    }
}
div.flex-sidebar-header {
    padding: 0 1rem 1rem;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1);
    margin-bottom: 1rem;
}
div.flex-sidebar-header p.p3 {
    line-height: 2.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--logoColor2);
    margin-top: .9rem;
    margin-bottom: .5rem;
    text-align: center;
}
div.flex-sidebar-header div.links {
    display: flex;
    margin: 0;
}
@media only screen and (min-width: 384px) {
    div.flex-sidebar-header div.links {
        margin: 0 .9rem;
    }
}
div.flex-sidebar-header div.links a {
    display: block;
    width: 50%;
}
div.flex-sidebar-header div.links a div.res {
    padding: 1rem 1.6rem;
}
div.flex-sidebar-header div.links a div.comm {
    padding: 1rem .5rem;
}
@media only screen and (min-width: 360px) {
    div.flex-sidebar-header div.links a div.res {
        padding: 1rem 2.5rem;
    }
    div.flex-sidebar-header div.links a div.comm {
        padding: 1rem 1rem;
    }
}
@media only screen and (min-width: 360px) {
    div.flex-sidebar-header div.links a div.res {
        padding: 1rem 3rem;
    }
}
@media only screen and (min-width: 384px) {
    div.flex-sidebar-header div.links a div.comm {
        padding: 1rem 1.5rem;
    }
}
@media only screen and (min-width: 411px) {
    div.flex-sidebar-header div.links a div.res {
        padding: 1rem 3.5rem;
    }
}
@media only screen and (min-width: 600px) {
    div.flex-sidebar-header div.links a div.res,
    div.flex-sidebar-header div.links a div.comm {
        padding: 1rem 1.6rem;
    }
}
div.flex-sidebar-header div.links a div p {
    text-align: center;
}
div.flex-sidebar-header div.links a div.res {
    border-top-right-radius: 0;
    border-bottom-left-radius: 3px;
}
div.flex-sidebar-header div.links a div.comm {
    border-bottom-left-radius: 0;
    border-top-right-radius: 3px;
}

div.flex-nav-wrapper {
    padding: .5rem;
    margin-bottom: .5rem;
    display: flex;
    align-content: space-between;
}
@media only screen and (min-width: 600px) {
    div.flex-nav-wrapper {
        padding: .5rem 1.9rem;
    }
}
div.flex-sidebar-nav {
    display: inline-block;
    padding: 1rem;
}
div.flex-sidebar-nav.active {
    background-color: var(--secondaryColor1);
    border: 1px solid var(--secondaryColor2);
    border-radius: 3px;
}
div.flex-sidebar-nav p.p6 {
    margin-bottom: 0;
    font-size: 1.4rem;
    line-height: 1.5rem;
}
div.flex-sidebar-nav.active p {
    color: var(--logoColor2);
    font-weight: 600;
}
div.flex-sidebar-nav > div.icon {
    text-align: center;
    height: 4rem;
}
@media only screen and (min-width: 411px) {
    div.flex-sidebar-nav > div.icon {
        height: 5rem;
    }
}
div.flex-sidebar-nav > div.icon img {
    max-width: 50%;
    vertical-align: middle;
}
@media only screen and (min-width: 600px) {
    div.flex-sidebar-nav > div.icon img {
        max-width: 30%;
    }
}
div.flex-sidebar-nav > div.label p {
    text-align: center;
}
div.flex-nav-cta {
    width: 90%;
    margin: 0 auto .5rem;
    background-color: var(--logoColor1);
}
@media only screen and (min-width: 600px) {
    div.flex-nav-cta {
        width: 50%;
    }
}
div.flex-nav-cta p {
    text-align: center;
}

/*------------------------------------------------------------------------------
    508.C Compliance styling rules
 */
form.fp_header-form legend,
form.wpcf7-form legend {
    display: none;
}
form.wpcf7-form label {
    /*display: none;*/
}
fieldset.share-data > p > label {
    margin-left: 0;
    margin-right: 3rem;
    color: #454545;
    font-size: 1.8rem;
    line-height: 2.6rem;
    margin-bottom: 0;
}
input[type=radio].share-data-radio {
    outline: none;
    -webkit-appearance: none;
    height: 15px;
    width: 15px;
    border: 1px solid var(--secondaryColor5);
    border-radius: 50%;
    margin-right: .75rem;
}
input[type=radio].share-data-radio:checked {
    background-color: var(--secondaryColor5);
}
/*--------------------------------------------------------------------------------------------------
  Share Data Modals, Toolkit Modals
 *------------------------------------------------------------------------------------------------*/
#share_data,
#share_data_ty,
#toolkit_request,
#toolkit_request_ty {
    background-color: rgba(0,0,0,.6);
    transition: .15s ease-in-out;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#share_data div.modal-dialog,
#share_data_ty div.modal-dialog,
#toolkit_request div.modal-dialog,
#toolkit_request_ty div.modal-dialog {
    width: 95%;
    max-width: none;
    border-radius: 3px;
    padding: 2rem 1rem;
    height: auto;
    overflow: visible;
    border: 1px none #000000;
    box-shadow: 1px 1px 3px 0px rgba(2,2,2, 0.23);
    background-color: rgba(249,249,249, 1.00);
    margin: 5rem auto;
}
@media only screen and (min-width: 600px) {
    #share_data div.modal-dialog,
    #share_data_ty div.modal-dialog,
    #toolkit_request div.modal-dialog,
    #toolkit_request_ty div.modal-dialog    {
        padding: 2rem 2.5rem;
    }
}
@media only screen and (min-width: 768px) {
    #share_data div.modal-dialog,
    #share_data_ty div.modal-dialog,
    #toolkit_request div.modal-dialog,
    #toolkit_request_ty div.modal-dialog    {
        width: 80%;
    }
}
@media only screen and (min-width: 1024px) {
    #share_data div.modal-dialog,
    #share_data_ty div.modal-dialog,
    #toolkit_request div.modal-dialog,
    #toolkit_request_ty div.modal-dialog    {
        max-width: 80rem;
        margin: 6rem auto;
    }
}
#share_data div.modal-content,
#share_data_ty div.modal-content,
#toolkit_request div.modal-content,
#toolkit_request_ty div.modal-content {
    padding: 1rem 1rem 0;
    border: none;
}
@media only screen and (min-width: 375px) {
    #share_data div.modal-content,
    #share_data_ty div.modal-content,
    #toolkit_request div.modal-content,
    #toolkit_request_ty div.modal-content {
        padding: 1.5rem 3rem 0 1.5rem;
    }
}
@media only screen and (min-width: 411px) {
    #share_data div.modal-content,
    #share_data_ty div.modal-content,
    #toolkit_request div.modal-content,
    #toolkit_request_ty div.modal-content {
        padding: 1.5rem 4rem 0 2.5rem;
    }
}
@media only screen and (min-width: 600px) {
    #share_data div.modal-content,
    #share_data_ty div.modal-content,
    #toolkit_request div.modal-content,
    #toolkit_request_ty div.modal-content {
        padding: 2.5rem 8rem 0;
    }
}
@media only screen and (min-width: 1024px) {
    #share_data div.modal-content,
    #share_data_ty div.modal-content,
    #toolkit_request div.modal-content,
    #toolkit_request_ty div.modal-content {
        padding: 3.5rem 11rem 0;
    }
}
div.modal-body h1 {
    font-size: 2.2rem;
    line-height: 2.6rem;
}
@media only screen and (min-width: 600px) {
    div.modal-body h1 {
        font-size: 2.6rem;
        line-height: 3.2rem;
    }
}
@media only screen and (min-width: 1024px) {
    div.modal-body h1 {
        font-size: 3.2rem;
        line-height: 3.8rem;
    }
}
#share_data div.modal-body,
#share_data_ty div.modal-body,
#toolkit_request div.modal-body,
#toolkit_request_ty div.modal-body {
    padding: 1.5rem 0;
}
@media only screen and (min-width: 600px) {
    #share_data div.modal-body,
    #share_data_ty div.modal-body {
        padding: 2.5rem 0;
    }
    #toolkit_request div.modal-body,
    #toolkit_request_ty div.modal-body {
        padding: 2.5rem 0 4.5rem;
    }
}
@media only screen and (min-width: 1024px) {
    #share_data div.modal-body,
    #share_data_ty div.modal-body {
        padding: 3.5rem 0;
    }
    #toolkit_request div.modal-body,
    #toolkit_request_ty div.modal-body {
        padding: 3.5rem 0 6rem;
    }
}
#query_div > p, #tk_query_div > p,
#thank_you > p, #tk_thank_you > p {
    color: #454545;
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin: 2rem 0 3rem;
}
@media only screen and (min-width: 600px) {
    #query_div > p, #tk_query_div > p,
    #thank_you > p, #tk_thank_you > p {
        font-size: 1.8rem;
        line-height: 2.6rem;
        margin: 1rem 0 3rem;
    }
}
form.share-data-form > fieldset {
    margin-bottom: 1.5rem;
}
form.share-data-form > fieldset > legend {
    display: none;
}
form.share-data-form > label.form-hide {
    display: none;
}
form.share-data-form > input[type=text],
form.share-data-form > input[type=email],
form.share-data-form > input[type=tel] {
    margin-bottom: 1.5rem;
}
fieldset.share-data-checkbox label,
fieldset.share-data-radio label {
    margin-left: 0;
    margin-right: 1.6rem;
    color: #454545;
    font-size: 1.8rem;
    line-height: 2.6rem;
}
fieldset.share-data-checkbox input[type=checkbox] {
    margin-right: 8px;
}
#share_data button.pum-close,
#share_data_ty button.pum-close,
#toolkit_request button.pum-close,
#toolkit_request_ty button.pum-close,
.modal-info.modal button.pum-close,
.modal-share.modal button.pum-close {
    position: absolute;
    border: none;
    outline: none;
    top: -.5rem !important;
    right: 0 !important;
}
div.sending {
	position: absolute;
	top: 6px;
	right: calc(50% - 15px);
	border: 6px solid rgba(7,117,206,.2);
	border-top: 6px solid var(--secondaryColor5);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	animation: spin 1s linear infinite;
	display: none;
}
div.sending.show {
	display: block;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
#share_data div.modal-content div.button-row,
#toolkit_request div.modal-content div.button-row {
	text-align: center;
	position: relative;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
    #share_data div.modal-content div.button-row,
    #toolkit_request div.modal-content div.button-row {
        margin-top: 3rem;
        margin-bottom: 0;
    }
}
#share_data div.modal-content div.button-row input[type=submit],
#toolkit_request div.modal-content div.button-row input[type=submit] {
	padding: .8rem 6.2rem;
    background-color: var(--secondaryColor5);
	border: 1px solid var(--secondaryColor5);
    outline: none;
    border-radius: 3px;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 2.2rem;
}
#share_data div.modal-content div.button-row input[type=submit].disable,
#toolkit_request div.modal-content div.button-row input[type=submit].disable {
	opacity: .1;
}
#share_data div.modal-content div.button-row input[type=submit]:hover,
#toolkit_request div.modal-content div.button-row input[type=submit]:hover {
	background-color: #ffffff;
	color: var(--secondaryColor5);
}
#share_data div.modal-content div.error-row.open,
#toolkit_request div.modal-content div.error-row.open {
	display: block;
}
#share_data div.modal-content div.error-row,
#toolkit_request div.modal-content div.error-row {
    display: none;
    transition: all .6s ease-in-out;
}
#share_data div.modal-content div.error-row p,
#toolkit_request div.modal-content div.error-row p {
	text-align: center;
    color: var(--secondaryColor6);
    font-size: 1.4rem;
    line-height: 1.4rem;
    margin-top: 1rem;
    margin-bottom: 0;
}
#share_data div.modal-content div.error-row p span,
#toolkit_request div.modal-content div.error-row p span {
    background: #FFD9DE;
    padding:.8rem 1.6rem;
}
/*------------------------------------------------------------------------------------------------
 * PSA Modals
 *-----------------------------------------------------------------------------------------------*/
/* YouTube video player styling */
.video-background {
    background: #000;
    position: fixed;
    top: 0;
    right: 0;
    bottom:0;
    left: 0;
    z-index: -99;
}
.video-foreground, .video-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    pointer-events: none;
}
@media (min-aspect-ratio: 16/9) {
    .video-foreground {
        height: 300%;
        top: -100%;
    }
}
@media (max-aspect-ratio: 16/9) {
    .video-foreground {
        width: 300%;
        left: -100%;
    }
}
@media all and (max-width: 600px) {
    .vid-info {
        width: 50%;
        padding: .5rem;
    }
    .vid-info h1 {
        margin-bottom: .2rem;
    }
}
@media all and (max-width: 500px) {
    .vid-info .acronym {
        display: none;
    }
}
/* modals */
.psa.modal {
    background-color: rgba(0,0,0,.6);
    transition: .15s ease-in-out;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.psa.modal div.modal-dialog {
    width: 95%;
    max-width: none;
    border-radius: 3px;
    padding: 2rem 1rem;
    height: auto;
    overflow: visible;
    border: 1px none #000000;
    box-shadow: 1px 1px 3px 0px rgba(2,2,2, 0.23);
    background-color: var(--logoColor2);
    margin: 5rem auto;
    position: relative;
}
@media only screen and (min-width: 600px) {
    .psa.modal div.modal-dialog {
        padding: 2rem 2.5rem;
    }
}
@media only screen and (min-width: 768px) {
    .psa.modal div.modal-dialog {
        width: 80%;
    }
}
@media only screen and (min-width: 1024px) {
    .psa.modal div.modal-dialog {
        max-width: 80rem;
        margin: 6rem auto;
    }
}
.psa.modal div.modal-content {
    padding: 1rem 1rem 0;
    border: none;
    background: transparent;
}
@media only screen and (min-width: 360px) {
    .psa.modal div.modal-content {
        padding: 1rem 2.2rem 0 1rem;
    }
}
@media only screen and (min-width: 375px) {
    .psa.modal div.modal-content {
        padding: 1.5rem 3rem 0 1.5rem;
    }
}
@media only screen and (min-width: 411px) {
    .psa.modal div.modal-content {
        padding: 1.5rem 4rem 0 2.5rem;
    }
}
@media only screen and (min-width: 600px) {
    .psa.modal div.modal-content {
        padding: 2.5rem 8rem 0;
    }
}
@media only screen and (min-width: 1024px) {
    .psa.modal div.modal-content {
        padding: 3.5rem 11rem 0;
    }
}
.psa.modal div.modal-header {
    padding: 1rem 0;
    border-bottom: none;
}
.psa.modal div.modal-header h1 {
    font-family: var(--primaryFont);
    color: var(--white);
    font-size: 2.2rem;
    line-height: 2.6rem;
    font-weight: 400;
    margin: 1.5rem 0 0;
}
@media only screen and (min-width: 600px) {
    .psa.modal div.modal-header h1 {
        font-size: 2.6rem;
        line-height: 3.2rem;
        text-align: center;
    }
}
@media only screen and (min-width: 1024px) {
    .psa.modal div.modal-header h1 {
        font-size: 3.2rem;
        line-height: 3.8rem;
    }
}
.psa.modal div.modal-body {
    padding: 1.5rem 0;
}
@media only screen and (min-width: 600px) {
    .psa.modal div.modal-body {
        padding: 2.5rem 0 4.5rem;
    }
}
@media only screen and (min-width: 1024px) {
    .psa.modal div.modal-body {
        padding: 2.5rem 0 6rem;
    }
}
.psa.modal div.modal-body div.video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 3.5rem;
    height: 0;
    overflow: hidden;
    margin-bottom: 2rem;
}
@media only screen and (min-width: 1024px) {
    .psa.modal div.modal-body div.video {
        margin-bottom: 4rem;
    }
}
.psa.modal div.modal-body div.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.psa.modal div.modal-body h2.tag_line {
    color: var(--white);
    font-weight: 500;
    font-size: 2rem;
    line-height: 2.6rem;
    text-align: center;
}
@media only screen and (min-width: 600px) {
    .psa.modal div.modal-body h2.tag_line {
        font-size: 2.2rem;
        line-height: 2.8rem;
    }
}
@media only screen and (min-width: 1024px) {
    .psa.modal div.modal-body h2.tag_line {
        font-size: 2.4rem;
        line-height: 3rem;
    }
}
.psa.modal button.pum-close {
    position: absolute;
    border: none;
    outline: none;
    top: -.5rem !important;
    right: 0 !important;
    background: url(../images/modal-close-white.png) no-repeat center center !important;
    background-size: contain !important;
}
/*-------------------------------------------------------------------------------------------------
 * Terms/Conditions, Disclaimer Modals
 *-----------------------------------------------------------------------------------------------*/
.modal-info.modal {
    background-color: rgba(0,0,0,.6);
    transition: .15s ease-in-out;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.modal-info.modal div.modal-dialog {
    width: 95%;
    max-width: none;
    border-radius: 3px;
    padding: 2rem 1rem;
    height: auto;
    overflow: visible;
    border: 1px none #000000;
    box-shadow: 1px 1px 3px 0px rgba(2,2,2, 0.23);
    background-color: var(--white);
    margin: 5rem auto;
    position: relative;
}
@media only screen and (min-width: 600px) {
    .modal-info.modal div.modal-dialog {
        padding: 2rem 2.5rem;
    }
}
@media only screen and (min-width: 768px) {
    .modal-info.modal div.modal-dialog {
        width: 80%;
    }
}
@media only screen and (min-width: 1024px) {
    .modal-info.modal div.modal-dialog {
        max-width: 80rem;
        margin: 6rem auto;
    }
}
.modal-info.modal div.modal-content {
    padding: 1rem 1rem 0;
    border: none;
    background: transparent;
}
@media only screen and (min-width: 360px) {
    .modal-info.modal div.modal-content {
        padding: 1rem 2.2rem 0 1rem;
    }
}
@media only screen and (min-width: 375px) {
    .modal-info.modal div.modal-content {
        padding: 1.5rem 3rem 0 1.5rem;
    }
}
@media only screen and (min-width: 411px) {
    .modal-info.modal div.modal-content {
        padding: 1.5rem 4rem 0 2.5rem;
    }
}
@media only screen and (min-width: 600px) {
    .modal-info.modal div.modal-content {
        padding: 2.5rem 8rem 0;
    }
}
@media only screen and (min-width: 1024px) {
    .modal-info.modal div.modal-content {
        padding: 3.5rem 11rem 0;
    }
}
.modal-info.modal div.modal-header {
    padding: 0 0 1rem;
    border-bottom: none;
}
.modal-info.modal div.modal-header h1 {
    color: var(--secondaryColor5);
    font-size: 2.2rem;
    line-height: 2.6rem;
}
@media only screen and (min-width: 600px) {
    .modal-info.modal div.modal-header h1 {
        font-size: 2.6rem;
        line-height: 3.2rem;
    }
}
@media only screen and (min-width: 1024px) {
    .modal-info.modal div.modal-header h1 {
        font-size: 3.2rem;
        line-height: 3.8rem;
    }
}
.modal-info.modal div.modal-body {
    padding: 0 0 1.5rem;
}
@media only screen and (min-width: 600px) {
    .modal-info.modal div.modal-body {
        padding: 2.5rem 0 4.5rem;
    }
    .modal-info.modal div.modal-body.help-content {
        padding-top: 0;
    }
}
@media only screen and (min-width: 1024px) {
    .modal-info.modal div.modal-body {
        padding: 3.5rem 0 6rem;
    }
}
.modal-info.modal div.modal-body.help-content h2 {
    font-size: 2.2rem;
    line-height: 2.8rem;
    color: var(--secondaryColor5);
}
.modal-info.modal div.modal-body p {
    color: #454545;
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin-bottom: 2rem;
}
@media only screen and (min-width: 600px) {
    .modal-info.modal div.modal-body p {
        font-size: 1.8rem;
        line-height: 2.6rem;
        margin-bottom: 3rem;
    }
}
.modal-info.modal div.modal-body h2.tag_line {
    color: var(--secondaryColor5);
    font-weight: 500;
    font-size: 2rem;
    line-height: 2.6rem;
}
@media only screen and (min-width: 600px) {
    .modal-info.modal div.modal-body h2.tag_line {
        font-size: 2.2rem;
        line-height: 2.8rem;
        text-align: center;
    }
}
@media only screen and (min-width: 1024px) {
    .modal-info.modal div.modal-body h2.tag_line {
        font-size: 2.4rem;
        line-height: 3rem;
    }
}
/*-------------------------------------------------------------------------------------------------
 * Share Tool Modal
 *-----------------------------------------------------------------------------------------------*/
.modal-share.modal {
    background-color: rgba(0,0,0,.6);
    transition: .15s ease-in-out;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.modal-share.modal div.modal-dialog {
    width: 95%;
    max-width: none;
    border-radius: 3px;
    padding: 1rem .5rem;
    height: auto;
    overflow: visible;
    border: 1px none #000000;
    box-shadow: 1px 1px 3px 0px rgba(2,2,2, 0.23);
    background-color: var(--white);
    margin: 2rem auto;
    position: relative;
}
@media only screen and (min-width: 375px) {
    .modal-share.modal div.modal-dialog {
        width: 50%;
        margin: 1rem 0 0 49%;
        padding: .5rem;
    }
}
@media only screen and (min-width: 411px) {
    .modal-share.modal div.modal-dialog {
        width: 15rem;
        margin: 1rem 1rem 0 auto;
    }
}
.modal-share.modal div.modal-content {
    padding: 0 1rem;
    border: none;
    background: transparent;
}
@media only screen and (min-width: 375px) {
    .modal-share.modal div.modal-content {
        padding: .5rem 1.5rem 0;
    }
}
.modal-share.modal div.modal-header {
    padding: 0;
    border-bottom: none;
    display: none;
}
.modal-share.modal div.modal-body {
    padding: 0;
    text-align: center;
}
.modal-share.modal div.modal-body p {
    display: none;
}
.modal-share.modal div.modal-body a {
    margin-right: 1rem;
}
.modal-share.modal div.modal-body a > img {
    width: 32px;
    height: 32px;
}
.modal-share.modal button.pum-close {
    top: .5rem !important;
    right: .5rem !important;
}
/* ------------------------------------------------------------------------------------------------
 * 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...";
    }
}

/* Toolkit Request page */
div.tk-req-feedback {
    padding: 4rem 4rem 2rem;
}
@media only screen and (min-width: 768px) {
    div.tk-req-feedback {
        padding: 4rem 8rem;
    }
}
@media only screen and (min-width: 992px) {
    div.tk-req-feedback {
        padding: 4rem 16rem 2rem;
    }
}
@media only screen and (min-width: 1200px) {
    div.tk-req-feedback {
        padding: 4rem 24rem 2rem;
    }
}
div.tk-req-feedback h2 {
    color: var(--logoColor2);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.6rem;
    line-height: 3.2rem;
}
@media only screen and (min-width: 576px) {
    div.tk-req-feedback h2 {
        font-size: 3rem;
        line-height: 3.6rem;
    }
}
@media only screen and (min-width: 992px) {
    div.tk-req-feedback h2 {
        font-size: 3.4rem;
        line-height: 4.2rem;
    }
}
div.tk-req-feedback p {
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: var(--fontColor);
}
/* ------------------------------------------------------------------------------------------------
 * - Code Strength styling
 * ----------------------------------------------------------------------------------------------*/
div.code-strength-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    padding: 0 1.8rem;
    margin-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
    div.code-strength-wrapper {
        width: 90%;
        padding: 0 0 0 2.4rem;
    }
}
@media only screen and (min-width: 992px) {
    div.code-strength-wrapper {
        padding: 0;
        width: 80%;
        justify-content: left;
        margin-bottom: 0;
    }
}
@media only screen and (min-width: 1024px) {
    div.code-strength-wrapper {
        padding: 1rem 2.4rem 0 3.2rem;
        margin-bottom: 3rem;
    }
}
div.code-strength-wrapper > div.code-strength {
    flex-basis: 30%;
    margin-top: 2rem;
    position: relative;
    text-align: center;
}
div.code-strength-wrapper > div.code-strength:last-of-type {
    margin-right: 0;
}
div.code-strength > h4,
div.code-strength > a > h4 {
    color: #0b4b7f;
    font-family: var(--primaryFont);
    font-size: 1.6rem;
    line-height: 1.8rem;
    font-weight: 600;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}
@media only screen and (min-width: 1200px) {
    div.code-strength > h4,
    div.code-strength > a > h4 {
        font-size: 1.8rem;
        line-height: 3.2rem;
        font-weight: 700;
        text-align: left;
    }
}
div.code-strength.weak > h4,
div.code-strength.weak > a > h4 {
    color: #5EC0FC;
}
div.code-strength {
    padding-top: 4rem;
}
@media only screen and (min-width: 768px) {
    div.code-strength {
        padding-top: 6rem;
    }
}
@media only screen and (min-width: 992px) {
    div.code-strength {
        padding-top: 6.5rem;
    }
}
div.code-strength.earthquake {
    background: url(../images/perils/earthquake-220.png) no-repeat top center;
    background-size: 4rem;
}
@media only screen and (min-width: 768px) {
    div.code-strength.earthquake {
        background-size: 5.5rem;
    }
}
@media only screen and (min-width: 992px) {
    div.code-strength.earthquake {
        background-size: 6.5rem;
    }
}
div.code-strength.earthquake.weak {
    background: url(../images/perils/earthquake-220-weak.png) no-repeat top center;
    background-size: 4rem;
}
@media only screen and (min-width: 768px) {
    div.code-strength.earthquake.weak {
        background-size: 5.5rem;
    }
}
@media only screen and (min-width: 992px) {
    div.code-strength.earthquake.weak {
        background-size: 6.5rem;
    }
}
div.code-strength.flood {
    background: url(../images/perils/flood-220.png) no-repeat top center;
    background-size: 4rem;
}
@media only screen and (min-width: 768px) {
    div.code-strength.flood {
        background-size: 5.5rem;
    }
}
@media only screen and (min-width: 992px) {
    div.code-strength.flood {
        background-size: 6.5rem;
    }
}
div.code-strength.flood.weak {
    background: url(../images/perils/flood-220-weak.png) no-repeat top center;
    background-size: 4rem;
}
@media only screen and (min-width: 768px) {
    div.code-strength.flood.weak {
        background-size: 5.5rem;
    }
}
@media only screen and (min-width: 992px) {
    div.code-strength.flood.weak {
        background-size: 6.5rem;
    }
}
div.code-strength.hurricane {
    background: url(../images/perils/hurricane-220.png) no-repeat top center;
    background-size: 4rem;
}
@media only screen and (min-width: 768px) {
    div.code-strength.hurricane {
        background-size: 5.5rem;
    }
}
@media only screen and (min-width: 992px) {
    div.code-strength.hurricane {
        background-size: 6.5rem;
    }
}
div.code-strength.hurricane.weak {
    background: url(../images/perils/hurricane-220-weak.png) no-repeat top center;
    background-size: 4rem;
}
@media only screen and (min-width: 768px) {
    div.code-strength.hurricane.weak {
        background-size: 5.5rem;
    }
}
@media only screen and (min-width: 992px) {
    div.code-strength.hurricane.weak {
        background-size: 6.5rem;
    }
}
div.code-strength.tornado {
    background: url(../images/perils/tornado-220.png) no-repeat top center;
    background-size: 4rem;
}
@media only screen and (min-width: 768px) {
    div.code-strength.tornado {
        background-size: 5.5rem;
    }
}
@media only screen and (min-width: 992px) {
    div.code-strength.tornado {
        background-size: 6.5rem;
    }
}
div.code-strength.tornado.weak {
    background: url(../images/perils/tornado-220-weak.png) no-repeat top center;
    background-size: 4rem;
}
@media only screen and (min-width: 768px) {
    div.code-strength.tornado.weak {
        background-size: 5.5rem;
    }
}
@media only screen and (min-width: 992px) {
    div.code-strength.tornado.weak {
        background-size: 6.5rem;
    }
}
div.code-strength.tsunami {
    background: url(../images/perils/tsunami-220.png) no-repeat top center;
    background-size: 4rem;
}
@media only screen and (min-width: 768px) {
    div.code-strength.tsunami {
        background-size: 5.5rem;
    }
}
@media only screen and (min-width: 992px) {
    div.code-strength.tsunami {
        background-size: 6.5rem;
    }
}
div.code-strength.tsunami.weak {
    background: url(../images/perils/tsunami-220-weak.png) no-repeat top center;
    background-size: 4rem;
}
@media only screen and (min-width: 768px) {
    div.code-strength.tsunami.weak {
        background-size: 5.5rem;
    }
}
@media only screen and (min-width: 992px) {
    div.code-strength.tsunami.weak {
        background-size: 6.5rem;
    }
}
div.code-strength.wildfire {
    background: url(../images/perils/wildfire-220.png) no-repeat top center;
    background-size: 4rem;
}
@media only screen and (min-width: 768px) {
    div.code-strength.wildfire {
        background-size: 5.5rem;
    }
}
@media only screen and (min-width: 992px) {
    div.code-strength.wildfire {
        background-size: 6.5rem;
    }
}
div.code-strength.wildfire.weak {
    background: url(../images/perils/wildfire-220-weak.png) no-repeat top center;
    background-size: 4rem;
}
@media only screen and (min-width: 768px) {
    div.code-strength.wildfire.weak {
        background-size: 5.5rem;
    }
}
@media only screen and (min-width: 992px) {
    div.code-strength.wildfire.weak {
        background-size: 6.5rem;
    }
}
div.code-strength.severe-storm {
    background: url(../images/perils/wind-220.png) no-repeat top center;
    background-size: 4rem;
}
@media only screen and (min-width: 768px) {
    div.code-strength.severe-storm {
        background-size: 5.5rem;
    }
}
@media only screen and (min-width: 992px) {
    div.code-strength.severe-storm {
        background-size: 6.5rem;
    }
}
div.code-strength.severe-storm.weak {
    background: url(../images/perils/wind-220-weak.png) no-repeat top center;
    background-size: 4rem;
}
@media only screen and (min-width: 768px) {
    div.code-strength.severe-storm.weak {
        background-size: 5.5rem;
    }
}
@media only screen and (min-width: 992px) {
    div.code-strength.severe-storm.weak {
        background-size: 6.5rem;
    }
}
div.code-strength.winter-storm {
    background: url(../images/perils/winter-storm-220.png) no-repeat top center;
    background-size: 4rem;
}
@media only screen and (min-width: 768px) {
    div.code-strength.winter-storm {
        background-size: 5.5rem;
    }
}
@media only screen and (min-width: 992px) {
    div.code-strength.winter-storm {
        background-size: 6.5rem;
    }
}
div.code-strength.winter-storm.weak {
    background: url(../images/perils/winter-storm-220-weak.png) no-repeat top center;
    background-size: 4rem;
}
@media only screen and (min-width: 768px) {
    div.code-strength.winter-storm.weak {
        background-size: 5.5rem;
    }
}
@media only screen and (min-width: 992px) {
    div.code-strength.winter-storm.weak {
        background-size: 6.5rem;
    }
}
div.reason-weak {
    margin: 2rem 0 0;
    background: #eff5fa;
    border: 1px solid #0775ce;
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
    border-radius: 3px;
    padding: .5rem 1rem;
    width: 30rem;
    position: absolute;
    display: none;
    transition: all .3s ease-in-out;
    z-index: 0;
}
@media only screen and (min-width: 768px) {
    div.reason-weak {
        padding: 1rem 2.2rem;
        width: 40rem;
    }
}
@media only screen and (min-width: 992px) {
    div.reason-weak {
        margin: 2rem 2.4rem 0 3.2rem;
        padding: 1.5rem;
        width: 25rem;
    }
}
div.reason-weak.show {
    display: block;
    z-index: 100;
}
div.reason-weak::before {
    display: block;
    position: absolute;
    width: 1.6rem;
    height: 1.6rem;
    top: -.85rem;
    left: 2.4rem;
    content: '';
    border-left: 1px solid #0775ce;
    border-top: 1px solid #0775ce;
    transform: rotate(45deg);
    background: #eff5fa;
}
@media only screen and (min-width: 992px) {
    div.reason-weak::before {
        width: 3rem;
        height: 3rem;
        top: -1.575rem;
    }
}
div.reason-weak > h5 {
    color: #0775ce;
    font-family: var(--primaryFont);
    font-size: 1.8rem;
    line-height: 2.6rem;
    font-weight: 700;
}
div.reason-weak > p {
    font-size: 1.4rem;
    line-height: 1.5rem;
}
div.exp-weak {
    width: 10px;
    height: 10px;
    position: absolute;
    top: 5px;
    right: 5px;
    border-right: 1px solid #0775ce;
    border-bottom: 1px solid #0775ce;
    transform: rotate(45deg);
    transition: all .3s ease-in-out;
}
@media only screen and (min-width: 768px) {
    div.exp-weak {
        right: 10px;
    }
}
@media only screen and (min-width: 992px) {
    div.exp-weak {
        width: 13px;
        height: 13px;
        right: 15px;
    }
}
div.exp-weak.open {
    top: 12.5px;
}
div.code-strength > a.opener {
    display: inline-block;
    position: relative;
    cursor: pointer;
    text-align: center;
}
div.exp-weak.open {
    transform: rotate(-135deg);
}
p.override {
    font-size: 1.4rem;
    line-height: 1.6rem;
    font-style: italic;
    color: #585858;
}
