@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,800);

/*************************** CUSTOM STYLES ***************************/

:root {
    --blue: #468ee5;
    --rgba-blue: 70, 142, 229;
    --rgba-blue-alpha: rgba(var(--rgba-blue), 0.4);
    --french-rose: #f14980;
    --purple: #ae5fe8;
    --rgba-purple: 165, 78, 232;
    --rgba-purple-alpha: rgba(var(--rgba-purple), 0.4);
    --green: #47e57e;
    --rgba-green: 51, 277, 110;
    --rgba-green-alpha: rgba(var(--rgba-green), 0.4);
    --red-orange: #ff4f49;
    --rgba-red-orange: 255, 67, 57;
    --rgba-red-orange-alpha: rgba(var(--rgba-red-orange), 0.4);
    --yellow-orange: #fdb132;
    --rgba-yellow-orange: 253, 177, 50;
    --rgba-yellow-orange-alpha: rgba(var(--rgba-yellow-orange), 0.4);
    --dark-turquoise: #00c6db;
    --medium-turquoise: #47e4c2;
    --charcoal: #323c4f;
    --cadet: #495769;
    --cadet-grey: #92a2b1;
    --munshell: #edf0f5;
    --open-sans: "Open Sans", sans-serif;
    --box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 0 5px 0 rgba(0, 0, 0, 0.4);
    --bar-height: 75px;
    --bar-margin: 30px;
    --extra-bold: 800;
    --semi-bold: 600;
}

/******************/
/**    GLOBAL     */
/******************/
body {
    font-family: var(--open-sans);
    background: var(--charcoal);
}


#loading {
    position: fixed;
    z-index: 50;
    width: 100vw;
    height: 100vh;
    background: #fff;
}

.lds-dual-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -32px 0 0 -32px;
    display: block;
    width: 64px;
    height: 64px;
}
.lds-dual-ring:after {
    content: "";
    display: block;
    width: 46px;
    height: 46px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #000;
    border-color: #000 transparent #000 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



h1, h2, h3 {
    font-family: var(--open-sans);
}

div.page-wrap {
    padding-top: 75px;
}

@media (min-width: 768px) {
    div.page-wrap {
        padding-top: 0;
    }
}

.btn {
    border-radius: 0;
}
a.cta {
    text-transform: uppercase;
    font-size: 25px;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 30px;
    padding: 35px 30px;
    width: 100%;
    max-width: 305px;
    white-space: normal;
    background: #f1f1f1;
    font-weight: var(--extra-bold);
    text-decoration: none;
    text-shadow: none;
}

@media (min-width: 992px) {
    a.cta {
        max-width: 345px;
    }
}

a.cta.pink {
    background: var(--french-rose);
    color: #fff;
}

a.cta.purple {
    background: #ae5fe8;
    color: #fff;
}

a.cta.blue {
    background: #468ee5;
    color: #fff;
}

a.cta.turquoise {
    background: var(--medium-turquoise);
    color: #fff;
}

a.cta.green {
    background: #47e57e;
    color: #fff;
}

a.cta.red {
    background: #ff4f49;
    color: #fff;
}

a.cta.grey {
    /*background: rgba(255, 255, 255, 0.3);*/
    background: #9a9a9a;
    padding: 20px;
    width: 345px;
    border: 4px solid #ffffff;
    color: #fff;
}

a.cta.btn-small {
    font-size: 19px;
    padding: 10px 30px;
    max-width: 345px;
    width: 100%;
    margin: auto;
}

a.cta.full-width {
    width: 100%;
    max-width: 100%;
}

a.cta.width-90 {
    width: 100%;
    max-width: 90%;
}

a.cta.width-80 {
    width: 100%;
    max-width: 80%;
}

a.cta.width-70 {
    width: 100%;
    max-width: 70%;
}

.slick-dots li button {
    border: 2px solid #fff;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.4);
}

.slick-dots li.slick-active button,
.slick-dots li button:hover {
    background: #fff;
}

.slick-dots li button:before {
    display: none;
    color: #fff !important;
    width: 10px;
    height: 10px;
    font-size: 15px;
    line-height: 18px;
    opacity: 0.4;
    left: 3px;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
}

.header-slider .slick-prev,
.header-slider .slick-next {
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    height: 50px;
    width: 30px;
    /*clip-path: polygon(75% 0%, 75% 100%, 25% 50%);
    background: rgba(255, 255, 255, 0.5);*/
}

.header-slider .slick-prev {
    left: 0;
}

.header-slider .slick-next {
    right: 0;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .header-slider .slick-prev,
    .header-slider .slick-next {
        margin-top: auto;
        height: 60px;
        width: 40px;
    }

    .header-slider .slick-prev {
        left: 20px;
    }

    .header-slider .slick-next {
        right: 10px;
    }

}

.header-slider .slick-prev:before,
.header-slider .slick-next:before {
    content: '';
    background: url("/wp-content/themes/new-theme-child/images/icons/ic_arrow.svg") center no-repeat;
    background-size: 80%;
    width: 30px;
    height: 50px;
    display: block;
}

@media (min-width: 768px) {
    .header-slider .slick-prev:before,
    .header-slider .slick-next:before {
        background-size: 100%;
    }
}

.header-slider .slick-prev:before {
    transform: scale(-1);
}

.table {
    display: table;
}

.table-row {
    display: table-row;
}

.table-cell {
    display: table-cell;
}

.popover-button {
    background: none;
    border: none;
    outline: none !important;
    cursor: pointer;
    display: block;
    margin: auto;
}

.popover-button span {
    transition: all 0.35s linear;
}

.popover-button span:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* popover styles  */
.popover {
    max-width: 60%;
    font-family: "Open Sans", sans-serif;
}

.popover .popover-header {
    font-size: 19px;
    color: var(--charcoal);
    letter-spacing: 0.09em;
    line-height: 25px;
    font-weight: bold;
    text-transform: uppercase;
}

.popover .popover-header span {
    font-size: 15px;
    font-weight: normal;
    color: var(--cadet-grey);
    letter-spacing: 0.1em;
    border-left: 2px solid var(--cadet-grey);
    padding-left: 15px;
    margin-left: 8px;
    text-transform: none;
}

.popover .popover-body {
    font-size: 15px;
}

.popover .arrow {

}

/* arrow seperator */
.section-wrap.separator {
    display: block;
    border-top: 10px solid #00c6db;
    width: 100%;
    float: none;
    clear: both;
    text-align: center;
}

.section-wrap.separator:before {
    content: '';
    display: block;
    height: 5px;
    margin-bottom: -5px;
    width: 100%;
    position: relative;
    top: -15px;
    background-image: -webkit-linear-gradient(90deg, #0071a6 0%, #00d8f5 100%);
    background-image: -moz-linear-gradient(90deg, #0071a6 0%, #00d8f5 100%);
    background-image: -o-linear-gradient(90deg, #0071a6 0%, #00d8f5 100%);
    background-image: linear-gradient(90deg, #0071a6 0%, #00d8f5 100%);
}

.section-wrap.separator .triangle {
    display: inline-block;
    border-left: 55px solid transparent;
    border-right: 55px solid transparent;
    border-top: 40px solid #00c6db;
}

/* BANNER SLIDER */
/* slider */
.header-slider {
    height: 250px;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .header-slider {
        height: 400px;
    }
}

/* Large devices (1200px and up) */
@media (min-width: 1200px) {
    .header-slider {
        height: 500px;
    }
}

/* Extra devices (1440x and up) */
@media (min-width: 1441px) {
    .header-slider {
        height: 700px;
    }
}

.header-slider .slick {
    margin-bottom: 0;
}

.header-slider .slick-list {
    position: relative;
    z-index: 1;
}

.header-slider .slick-slide {
    height: 250px;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .header-slider .slick-slide {
        height: 400px;
    }
}

/* Large devices (1200px and up) */
@media (min-width: 1200px) {
    .header-slider .slick-slide {
        height: 500px;
    }
}

/* Extra wide devices (1440px and up) */
@media (min-width: 1441px) {
    .header-slider .slick-slide {
        height: 700px;
    }
}

.header-slider .slick-dots {
    bottom: 20px;
    z-index: 20;
    height: 40px;
}

.header-slider .slick-dots li {
    width: 20px;
    height: 15px;
    margin: 0 2px;
}

.header-slider .slide {
    background-repeat: no-repeat;
    background-position: center bottom;
    /*background-size: contain;*/
    background-size: cover;
}

.header-slider .slick-slide .table {
    height: 250px;
    margin: 0;
    display: table;
    width: 100%;
    color: #fff;
    padding: 0 0 30px;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

    .header-slider .slide {
        background-position: center top;
        background-size: cover;
    }

    .header-slider .slick-slide .table {
        height: 400px;
        padding: 0;
    }
}

/* Large devices (1200px and up) */
@media (min-width: 1200px) {
    .header-slider .slick-slide .table {
        height: 500px;
        padding: 0;
    }
}

/* Extra wide devices (1440px and up) */
@media (min-width: 1441px) {

    .header-slider .slick-slide .table {
        height: 700px;
    }
}

.header-slider .slick-slide .table .table-cell {
    vertical-align: middle;
}

.header-slider .slick-slide .table .table-cell .copy p {
    font-size: 32px;
    line-height: 34px;
    text-align: center;
    font-weight: var(--extra-bold);
    font-family: var(--open-sans);
    text-transform: uppercase;
    letter-spacing: 0.03rem;
    color: #fff;
    text-shadow: 2px 2px 5px #000;
}

.header-slider .slick-slide .table .table-cell .copy p span {
    font-size: 16px;
    letter-spacing: 0.07rem;
    text-transform: none;
    line-height: 19px;
    margin-top: 10px;
    padding: 0 15px;
    display: block;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .header-slider .slick-slide .table .table-cell .copy p {
        font-size: 50px;
        line-height: 54px;
        text-align: inherit;
        text-shadow: 4px 4px 10px #000;
    }

    .header-slider .slick-slide .table .table-cell .copy p span {
        font-size: 23px;
        padding: 0 0 0 15px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .header-slider .slick-slide .table .table-cell .copy p {
        font-size: 50px;
        line-height: 55px;
        text-align: inherit;
    }

    .header-slider .slick-slide .table .table-cell .copy p span {
        font-size: 25px;
        line-height: 28px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 1200px) {
    .header-slider .slick-slide .table .table-cell .copy p {
        font-size: 59px;
        line-height: 63px;
        text-align: inherit;
    }

    .header-slider .slick-slide .table .table-cell .copy p span {
        font-size: 28px;
        line-height: 31px;
        padding: 0 0 0 55px;
    }
}


.header-slider .slick-slide .table .table-cell .left.cta-group > p {
    max-width: 440px;
    float: right;
}

.header-slider .slick-slide .table .table-cell .right.cta-group > p {
    max-width: 345px;
    color: #ffffff;
    margin-top: 25px;
    font-size: 23px;
    font-weight: var(--extra-bold);
    letter-spacing: 0.07rem;
    line-height: 29px;
    text-shadow: 2px 2px 5px #000;
}

@media (min-width: 768px) {
    .header-slider .slick-slide .table .table-cell .right.cta-group > p {
        text-shadow: 4px 4px 10px #000;
    }
}

.header-slider .slick-slide .table .table-cell .left {
    text-align: right;
    /*padding: 0;*/
}

@media (min-width: 992px) {
    .header-slider .slick-slide .table .table-cell .left {
        padding-left: 0;
    }
}

.header-slider .slick-slide .table .table-cell .right {
    text-align: left;
}


/* separator */
.section-wrap.separator {
    display: block;
    border-top: 10px solid transparent;
    width: 100%;
    float: none;
    clear: both;
    text-align: center;
}

.section-wrap.separator .triangle {
    display: none;
}

.section-wrap.separator .btn-small {
    position: relative;
    top: -40px;
    margin-bottom: -15px;
    max-width: 330px;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .section-wrap.separator {
        display: block;
        border-top-color: #00c6db;
    }

    .section-wrap.separator .triangle {
        display: inline-block;
        border-left: 55px solid transparent;
        border-right: 55px solid transparent;
        border-top: 40px solid #00c6db;
    }
}

/* FREE TEST */
#free-test {
    padding: 0 0 20px;
}

#free-test .h2 {
    font-size: 35px;
    font-weight: var(--extra-bold);
    text-transform: uppercase;
}

/* tablet+ displays */
@media (min-width: 768px) {
    #free-test {
        padding: 0;
    }

    #free-test .h2 {
        font-size: 50px;
    }
}

/* tablet+ displays */
@media (min-width: 1200px) {
    #free-test .h2 {
        font-size: 59px;
    }
}

#free-test .wrapper {
    background: #323c4f;
    text-align: center;
    padding: 20px 0 30px;
    color: #ffffff;
    border-top: 20px solid #edf0f5;
    border-bottom: 20px solid #edf0f5;
}

#free-test .wrapper.payment-package {
    background:  #ffffff;
    text-align: center;
    padding: 20px 0 30px;
    color:  #323c4f;
    border-top: 0px solid #edf0f5;
    border-bottom: 20px solid #edf0f5;
}

/* tablet+ displays */
@media (min-width: 768px) {
    #free-test .wrapper {
        padding: 60px 0;
    }
}

#free-test .wrapper p {
    text-align: inherit;
}

#free-test .wrapper p:nth-child(2) {
    color: #fff;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.07rem;
    max-width: 300px;
    margin: auto;
    font-weight: var(--semi-bold);
}
#free-test .wrapper.payment-package p:nth-child(2) {
    color:  #323c4f;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.07rem;
    max-width: 300px;
    margin: auto;
    font-weight: var(--semi-bold);
}

/* tablet+ displays */
@media (min-width: 768px) {
    #free-test .wrapper p:nth-child(2) {
        margin: auto 0 auto auto;
        font-size: 20px;
        line-height: 24px;
        max-width: 455px;
    }
}
/* tablet+ displays */
@media (min-width: 992px) {
    #free-test .wrapper p:nth-child(2) {
        margin: auto 0 auto auto;
        font-size: 23px;
        line-height: 32px;
        max-width: 455px;
    }
}

#free-test .wrapper p:nth-child(3) {
    height: 1px;
    text-align: center;
}

#free-test .wrapper p .btn-small {
    position: relative;
    margin-bottom: -65px;
    padding: 10px 20px;
    max-width: 330px;
}

@media (min-width: 768px) {
    /*#free-test .wrapper .cta {
      padding: 44px 50px;
    }*/
}

/* ANTIDOTE */
#antidote {
    padding: 0 0 20px;
    margin-top: 200px;
}

#antidote .h2 {
    font-size: 35px;
    font-weight: var(--extra-bold);
    text-transform: uppercase;
}

/* tablet+ displays */
@media (min-width: 768px) {
    #antidote {
        padding: 0;
        margin-top: 350px;
    }

    #antidote .h2 {
        font-size: 50px;
    }
}

/* tablet+ displays */
@media (min-width: 992px) {
    #antidote {
        margin-top: 0;
    }
}

/* tablet+ displays */
@media (min-width: 1200px) {
    #antidote .h2 {
        font-size: 59px;
    }
}

#antidote .wrapper {
    background: #323c4f;
    text-align: center;
    padding: 40px 0 50px;
    color: #ffffff;
    border-top: 20px solid #edf0f5;
    border-bottom: 20px solid #edf0f5;
}

/* tablet+ displays */
@media (min-width: 992px) {
    #antidote .wrapper {
        padding: 110px 0;
        border-width: 50px;
    }
}

#antidote .wrapper p {
    text-align: inherit;
}

#antidote .wrapper .image img {
    position: relative;
    width: 260px;
    margin: -281px auto 0;
}

@media (min-width: 768px) {
    #antidote .wrapper .image img {
        position: relative;
        width: 430px;
        margin: -438px auto 0;
    }
}

@media (min-width: 992px) {
    #antidote .wrapper .image img {
        position: absolute;
        top: -195px;
        right: -110px;
        width: 780px;
        margin: 0;
    }
}

#antidote .wrapper p:nth-child(2) {
    color: #fff;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.07rem;
    max-width: 300px;
    margin: auto;
    font-weight: var(--semi-bold);
}

/* tablet+ displays */
@media (min-width: 768px) {
    #antidote .wrapper p:nth-child(2) {
        font-size: 20px;
        line-height: 24px;
        max-width: 500px;
    }
}
/* tablet+ displays */
@media (min-width: 992px) {
    #antidote .wrapper p:nth-child(2) {
        margin: 0 0 30px;
        font-size: 23px;
        line-height: 32px;
    }
}

#antidote .wrapper p:nth-child(3) {
    height: 1px;
    text-align: center;
}

#antidote .wrapper .cta {
    font-size: 33px;
    line-height: 39px;
}

#antidote .wrapper .btn-small {
    position: relative;
    top: 40px;
    margin-bottom: -50px;
    font-size: 19px;
}

@media (min-width: 768px) {
    #antidote .wrapper .btn-small {
        padding: 20px 30px;
        margin-bottom: -60px;
    }
}

/* COMPARE */
#compare-assessment {
    padding: 0 0 20px;
}

#compare-assessment .h2 {
    font-size: 35px;
    font-weight: var(--extra-bold);
    text-transform: uppercase;
}

/* tablet+ displays */
@media (min-width: 768px) {
    #compare-assessment {
        padding: 0;
    }

    #compare-assessment .h2 {
        font-size: 50px;
    }
}

/* tablet+ displays */
@media (min-width: 1200px) {
    #compare-assessment .h2 {
        font-size: 59px;
    }
}

#compare-assessment .wrapper {
    background: #fff;
    text-align: center;
    padding: 20px 0 30px;
    color: #000;
    border-top: 20px solid #edf0f5;
    border-bottom: 20px solid #edf0f5;
}

/* tablet+ displays */
@media (min-width: 768px) {
    #compare-assessment .wrapper {
        padding: 60px 0;
    }
}

#compare-assessment .wrapper p {
    text-align: inherit;
}

#compare-assessment .wrapper p:nth-child(2) {
    color: #000;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.07rem;
    max-width: 300px;
    margin: auto;
    font-weight: var(--semi-bold);
}

/* tablet+ displays */
@media (min-width: 768px) {
    #compare-assessment .wrapper p:nth-child(2) {
        margin: auto ;
        font-size: 20px;
        line-height: 24px;
        max-width: 455px;
    }
}
/* tablet+ displays */
@media (min-width: 992px) {
    #compare-assessment .wrapper {
        border-width: 60px;
        padding: 120px 0;
    }

    #compare-assessment .wrapper p:nth-child(2) {
        margin: auto 0 auto auto;
        font-size: 23px;
        line-height: 32px;
        max-width: 455px;
    }
}

#compare-assessment .wrapper p:nth-child(3) {
    /*height: 1px;*/
    text-align: center;
}

#compare-assessment .wrapper p .btn-small {
    position: relative;
    margin-top: 15px;
    /*margin-bottom: -65px;*/
}

/* SCREEN TIME AD */
#screen-time-ad {
    padding: 15px 0 30px;
}

#screen-time-ad .h2 {
    font-size: 33px;
    line-height: 100%;
    font-weight: var(--extra-bold);
    text-transform: uppercase;
    background-color: #000;
    padding: 15px 10px;
}

@media (min-width: 768px) {
    #screen-time-ad {
        padding: 0 0 45px;
    }
    #screen-time-ad .h2 {
        font-size: 45px;
        padding: 20px 10px;
    }
}

/* tablet+ displays */
@media (min-width: 992px) {

    #screen-time-ad {
        padding: 0;
    }

    #screen-time-ad .h2 {
        padding: 0;
        font-size: 50px;
        margin-top: 130px;
    }
}

/* wide displays */
@media (min-width: 1200px) {
    #screen-time-ad .h2 {
        font-size: 59px;
        margin-top: 125px;
    }
}

/* wide+ displays */
@media (min-width: 1441px) {
    #screen-time-ad .h2 {
        font-size: 59px;
        margin-top: 180px;
    }
}

#screen-time-ad .wrapper {
    border-top: 5px solid var(--medium-turquoise);
    border-bottom: 5px solid var(--medium-turquoise);
    text-align: center;
    color: #ffffff;
}

#screen-time-ad .wrapper > div.copy {
    background: url('/wp-content/themes/new-theme-child/images/screen-time/img_screen_time_ad_mobile.png') top center no-repeat;
    background-size: cover;
    text-shadow: 2px 2px 5px #000;
}

#screen-time-ad .wrapper > div {
    padding: 0;
    height: 300px;
}


/* tablet+ displays */
@media (min-width: 768px) {
    #screen-time-ad .wrapper > div {
        height: 400px;
    }
}

/* tablet+ displays */
@media (min-width: 992px) {

    #screen-time-ad .wrapper {
        border: none;
        background: #000;
    }

    #screen-time-ad .wrapper > div.copy {
        height: 480px;
        background: #000;
    }

    #screen-time-ad .wrapper > div:last-child {
        height: 480px;
    }

    #screen-time-ad .wrapper > div .image {
        background: url("/wp-content/themes/new-theme-child/images/screen-time/img_screen_time_ad.png") center no-repeat;
        background-size: cover;
        height: 100%;
        width: calc(100% - 30px); /* left margin */
        margin-left: 30px;
        border-right: 15px solid var(--medium-turquoise);
    }
}

/* wide+ displays */
@media (min-width: 1441px) {

    #screen-time-ad .wrapper > div.copy {
        height: 600px;
    }

    #screen-time-ad .wrapper > div:last-child {
        height: 600px;
    }
}



#screen-time-ad .wrapper p {
    text-align: inherit;
}

#screen-time-ad .wrapper p:nth-child(2) {
    color: #fff;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.07rem;
    max-width: 330px;
    margin: auto;
    font-weight: var(--semi-bold);
}

/* tablet+ displays */
@media (min-width: 992px) {
    #screen-time-ad .wrapper p:nth-child(2) {
        margin: 0;
        font-size: 23px;
        line-height: 32px;
        max-width: 100%;
    }
}

#screen-time-ad .wrapper p:nth-child(3) {
    height: 1px;
    text-align: center;
}

#screen-time-ad .wrapper p .btn-small {
    position: relative;
    bottom: -205px;
    color: #000;
    padding: 10px 20px;
    max-width: 330px;
}


@media (min-width: 768px) {
    #screen-time-ad .wrapper p .btn {
        position: relative;
        bottom: -255px;
        color: #000;
    }
}

@media (min-width: 992px) {
    #screen-time-ad .copy {
        background: #000;
    }

    #screen-time-ad .wrapper p .btn {
        max-width: 100%;
        margin: 10px 0 0;
        text-align: right;
        left: 0;
        bottom: -10px;
    }
}

/* forms */
.form-control {
    background-color: var(--munshell);
    border: 1px solid var(--cadet-grey);
    border-radius: 0;
}

/******************/
/**    HEADER     */
/******************/
div.header {
    /*background: rgba(0, 0, 0, 0.7);*/
    background-image: -webkit-linear-gradient(90deg, #001a33 0%, #00324B 100%);
    background-image: -moz-linear-gradient(90deg, #001a33 0%, #00324B 100%);
    background-image: -o-linear-gradient(90deg, #001a33 0%, #00324B 100%);
    background-image: linear-gradient(90deg, #001a33 0%, #00324B 100%);
    position: relative;
    z-index: 1;
}

@media (max-width:767px) {

    div.mobi-header-bar {
        /*background: rgba(0, 0, 0, 0.7);*/
        background-image: -webkit-linear-gradient(90deg, #001a34 0%, #00304a 100%);
        background-image: -moz-linear-gradient(90deg, #001a34 0%, #00304a 100%);
        background-image: -o-linear-gradient(90deg, #001a34 0%, #00304a 100%);
        background-image: linear-gradient(90deg, #001a34 0%, #00304a 100%);
    }

    div.mobi-header-bar .header-logo {
        float: none;
        margin: 15px auto;
    }

    div.mobi-header-bar img {
        padding: 0;
        max-width: 130px;
    }

    div.mobi-nav.left,
    div.mobi-close-btn.left {
        right: auto;
        left: 15px;
        top: 23px;
    }

    div.mobi-nav.left .icon-bar {
        display: inline-block;
        width: 20px;
        height: 2px;
        transition: background-color 0.35s;
        background-color: var(--dark-turquoise);
    }

    div.mobi-nav.left .icon-bar:before,
    div.mobi-nav.left .icon-bar:after {
        content: '';
        display: block;
        position: relative;
        width: 20px;
        height: 2px;
        top: 6px;
        background-color: inherit;
        transition: height 0.1s linear,transform 0.1s ease-in,top 0.1s linear 0.35s,background-color 0.35s linear;
    }

    div.mobi-nav.left .icon-bar:before {
        top: -8px;
    }

    div.mobi-nav.closed .icon-bar:before,
    div.mobi-nav.closed .icon-bar:after {
        height: 2px;
        background-color: var(--dark-turquoise);
        transition: height 0.1s linear,top 0.1s ease-in,transform 0.1s linear 0.35s,background-color 0.35s linear;
    }

    div.mobi-nav.closed .icon-bar {
        background: transparent;
    }

    div.mobi-nav.closed .icon-bar:before {
        top: 0;
        transform: rotate(45deg);
    }

    div.mobi-nav.closed .icon-bar:after {
        top: -2px;
        transform: rotate(-45deg);
    }

    div.header-nav-login-get-started-wrap {
        background: rgba(50, 60, 79, 0.9);
        height: 100vh;
        padding-left: 0;
        padding-right: 0;
    }

    div.header-nav-login-get-started-wrap ul {
        background: var(--charcoal);
        padding: 0 20px;
    }

    div.header-nav-login-get-started-wrap .header-nav ul li {
        border-bottom: 1px solid var(--dark-turquoise);
        margin: 0;
    }

    div.header-nav-login-get-started-wrap .header-nav ul li:nth-child(3) {
        border-bottom: none;
    }

    div.header-nav-login-get-started-wrap .header-nav ul li:last-child {
        display: none;
    }

    div.mobi-sign-in {
        margin-top: 8px;
        margin-right: 15px;
    }

    div.mobi-sign-in a {
        border: 2px solid #00c6db;
        background: transparent;
        color: #00c6db;
        text-transform: uppercase;
        font-size: 9px;
        letter-spacing: 0.1em;
    }

}

div.header > .common-wrap {
    padding-bottom: 0;
    height: 87px;
}

div.header > .common-wrap .header-logo {
    margin: 20px 0;
    width: 160px;
}

div.header > .common-wrap .header-nav-login-get-started-wrap {
    margin: 25px 0 0;
}

.fixedTop .header-nav-login-get-started-wrap {
    margin: 25px 0 0;
}

div.main-header.mobifixedTop {
    top: -97px;
    height: 87px;
    background: rgba(0, 0, 0, 0.7);
}

div.main-header.fixedTop {
    box-shadow: 0 1px 2px 0 rgba(50, 60, 78, 0.25), inset 0 -1px 0 0 #000;
}

.header-nav {
    margin: 0;
}

#menu-header-menu-new li,
#menu-header-menu-new-1 li {
    margin-right: 12px;
}

#menu-header-menu-new li:last-child,
#menu-header-menu-new-1 li:last-child {
    margin-right: 0;
}

#menu-header-menu-new li.current-menu-item a,
#menu-header-menu-new-1 li.current-menu-item a,
#menu-header-menu-new li:hover a,
#menu-header-menu-new-1 li:hover a {
    color: var(--dark-turquoise);
}

#menu-header-menu-new li a,
#menu-header-menu-new-1 li a {
    color: #fff;
    font-size: 13px;
    font-weight: var(--semi-bold);
    text-align: left;
    float: none;
    display: block;
    text-transform: uppercase;
    padding: 8px 12px;
    border: 2px solid transparent;
    letter-spacing: 0.1em;
    transition: color 0.35s linear;
    font-family: 'Open Sans', sans-serif;
}
#menu-header-menu-new-1 li a {
    padding: 10px 12px;
}

@media (min-width: 768px) {

    #menu-header-menu-new li a,
    #menu-header-menu-new-1 li a {
        text-align: center;
    }

    #menu-header-menu-new .menu-item-1382,
    #menu-header-menu-new-1 .menu-item-1382 {
        border-left: 1px solid #fff;
    }

    #menu-header-menu-new .menu-item-1382 a,
    #menu-header-menu-new-1 .menu-item-1382 a {
        padding: 8px 12px 8px 22px;
    }

}


#menu-header-menu-new li:last-child a,
#menu-header-menu-new-1 li:last-child a{
    color: #00c6db;
    font-weight: normal;
    border-color: #00c6db;
    text-transform: uppercase;
    padding: 8px 20px;
}


/* ASSESSMENT HEADER */
.competencies-breadcrumb {
    float: right;
    width: 60%;
    text-align: right;
    padding-top: 20px;
}

.competencies-breadcrumb .step {
    display: inline-block;
}

.competencies-breadcrumb .step p {
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
    width: 0;
    overflow: hidden;
    text-align: left;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 0;
    transition: width 0.35s linear;
    color: #fff;
    margin-left: 10px;
}

.competencies-breadcrumb .step.last.completed p {
    transition: none;
}

.competencies-breadcrumb .step.active p {
    width: 180px;
}

.competencies-breadcrumb .step .image {
    width: 40px;
    display: inline-block;
    position: relative;
}

.competencies-breadcrumb .step .image img {
    border: 1px solid #fff;
}

.competencies-breadcrumb .step:nth-child(1) .image {
    background: var(--blue);
}
.competencies-breadcrumb .step:nth-child(2) .image {
    background: var(--green);
}
.competencies-breadcrumb .step:nth-child(3) .image {
    background: var(--purple);
}
.competencies-breadcrumb .step:nth-child(4) .image {
    background: var(--red-orange);
}

.competencies-breadcrumb .step:not(.active) .image:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.65);
    background-size: 30px;
}

.competencies-breadcrumb .step.last.completed p {
    color: var(--green);
}

.competencies-breadcrumb .step.completed .image:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('/wp-content/themes/new-theme-child/images/icons/ic_check.svg') rgba(0, 0, 0, 0.65) no-repeat center top;
    background-size: 30px;
}

/******************/
/**    FOOTER     */
/******************/
#footer-section {
    border-top: 5px solid #00c6db;
    padding-top: 20px;
    background: var(--charcoal);
}

#footer-section .icon-wrapper {
    position: relative;
    z-index: 10;
}

#footer-section .social-wrapper {
    /*position: absolute;
    right: 0;
    top: 0;*/
}

#footer-section .social-wrapper a {
    display: inline-block;
    max-width: 28px;
    margin-left: 10px;
}

#footer-section .footer-logo {
    margin-top: 0;
}

#footer-section .footer-nav {
    padding: 0 0 15px;
}

#footer-section .footer-nav ul:last-child {
    width: 100%;
}

#footer-section .footer-nav li {
    margin: 0;
    padding: 0 3px;
}

/*#footer-section .footer-nav li:last-child {
    border-left: 1px solid #fff;
    margin-left: 0;
    padding-left: 6px;
}*/

#footer-section .footer-nav li a {
    padding: 0;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--open-sans);
    font-size: 13px;
    font-weight: var(--semi-bold);
}

#footer-section .footer-nav li ul:first-child li:last-child a {
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
    #footer-section .footer-nav li {
        padding: 0 18px;
    }
    #footer-section .footer-nav li a {
        font-size: 16px;
        padding: 8px 12px
    }

    #footer-section .footer-nav li:last-child {
        margin-left: 12px;
        padding-left: 30px;
    }
}

#footer-section .copyright p {
    padding-top: 20px;
    font-size: 12px;
    line-height: 20px;
    color: #93a2b0;
    text-align: inherit;
}

/******************/
/** LANDING PAGE **/
/******************/
#landing-page {
    position: relative;
    z-index: 0;
    /*top: -87px; !* menu height *!
    margin-bottom: -87px;*/
}

#landing-page img {
    float: none;
}

#landing-page #key-skills-section {
    margin-top: 0;
    padding: 30px 0;
}

@media (min-width: 992px) {
    #landing-page #key-skills-section {
        padding: 60px 0;
    }
}

#landing-page #key-skills-section .narrow {
    max-width: 700px;
    margin: auto;
}

#landing-page #key-skills-section h2 {
    font-size: 23px;
    font-weight: var(--extra-bold);
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.03rem;
    line-height: 25px;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    #landing-page #key-skills-section h2 {
        font-size: 50px;
        line-height: 54px;
        margin-bottom: 30px;
    }
}

@media (min-width: 1200px) {
    #landing-page #key-skills-section h2 {
        font-size: 59px;
        line-height: 63px;
    }
}

#landing-page .competencies .list-group-item {
    margin: 0 0 10px;
    padding: 5px;
    border-radius: 0;
    border: none;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    /*transition: all 0.35s ease-in-out;*/
}

#landing-page .competencies .list-group-item:before {
    content: '';
    display: inline-block;
    width: 75px;
    height: 75px;
    background-position: center;
    background-size: 100%;
    vertical-align: middle;
}

@media (min-width: 768px) {
    #landing-page .competencies .list-group-item:before {
        width: 105px;
        height: 105px;
    }
}

@media (min-width: 1200px) {
    #landing-page .competencies .list-group-item:before {
        width: 150px;
        height: 150px;
    }
}

#landing-page .competencies .list-group-item.active:before {
    background-color: #ffffff !important;
}

#landing-page .competencies .list-group-item.blue:before {
    background-color: var(--blue);
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_va_primary.svg");
}
#landing-page .competencies .list-group-item.active {
    background-color: var(--blue);
}
#landing-page .competencies .list-group-item.blue.active:before {
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_va_secondary.svg");
}

#landing-page .competencies .list-group-item.green:before {
    background-color: var(--green);
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_et_primary.svg");
}
#landing-page .competencies .list-group-item.green.active {
    background-color: var(--green);
}
#landing-page .competencies .list-group-item.green.active:before {
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_et_secondary.svg");
}

#landing-page .competencies .list-group-item.purple:before {
    background-color: var(--purple);
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_dm_primary.svg");
}
#landing-page .competencies .list-group-item.purple.active {
    background-color: var(--purple);
}
#landing-page .competencies .list-group-item.purple.active:before {
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_dm_secondary.svg");
}

#landing-page .competencies .list-group-item.red:before {
    background-color: var(--red-orange);
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_rt_primary.svg");
}
#landing-page .competencies .list-group-item.red.active {
    background-color: var(--red-orange);
}
#landing-page .competencies .list-group-item.red.active:before {
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_rt_secondary.svg");
}

#landing-page .competencies .list-group-item .description-intro,
#landing-page .competencies .list-group-item .description {
    width: calc(100% - 80px);
    padding: 0 5px;
    vertical-align: middle;
    display: none;
}

@media (min-width: 768px) {
    #landing-page .competencies .list-group-item .description-intro,
    #landing-page .competencies .list-group-item .description {
        width: calc(100% - 115px);
        padding: 0 15px;
    }
}
@media (min-width: 1200px) {
    #landing-page .competencies .list-group-item .description-intro,
    #landing-page .competencies .list-group-item .description {
        width: calc(100% - 160px);
        padding: 0 15px;
    }
}


#landing-page .competencies .list-group-item .description-intro {
    display: inline-block;
}

#landing-page .competencies .list-group-item.active .description-intro,
#landing-page .competencies .list-group-item.active .description {
    display: none;
}
#landing-page .competencies .list-group-item.active .description {
    display: inline-block;
}

#landing-page .competencies .list-group-item .description-intro .h2 {
    font-size: 17px;
    font-weight: var(--extra-bold);
    line-height: 1;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
    margin: 0;
}

@media (min-width: 768px) {
    #landing-page .competencies .list-group-item .description-intro .h2 {
        font-size: 33px;
        line-height: 33px;
    }
}

@media (min-width: 1200px) {
    #landing-page .competencies .list-group-item .description-intro .h2 {
        font-size: 35px;
        line-height: 35px;
    }
}

#landing-page .competencies .list-group-item .description .h3 {
    font-size: 15px;
    color: #ffffff;
    letter-spacing: 0.07rem;
    line-height: 16px;
    font-weight: var(--extra-bold);
    margin-bottom: 5px;
    text-shadow: 2px 2px 5px #000000;
}
#landing-page .competencies .list-group-item .description p {
    font-size: 13px;
    color: #ffffff;
    letter-spacing: 0.07rem;
    line-height: 16px;
    font-weight: var(--semi-bold);
    text-shadow: 2px 2px 5px #000000;
}

@media (min-width: 768px) {
    #landing-page .competencies .list-group-item .description .h3 {
        font-size: 23px;
        line-height: 26px;
    }
    #landing-page .competencies .list-group-item .description p {
        font-size: 20px;
        line-height: 24px;
    }
}

@media (min-width: 1200px) {
    #landing-page .competencies .list-group-item .description .h3 {
        font-size: 25px;
        line-height: 32px;
    }
    #landing-page .competencies .list-group-item .description p {
        font-size: 21px;
        line-height: 25px;
    }
}

/* competencies above slider */
#landing-page .narrow {
    max-width: 900px;
}

#landing-page .narrow .competencies {
    padding-bottom: 30px;
}

/* compare */
#landing-page #compare {
    background: #323c4f;
    padding-bottom: 60px;
}

#landing-page #compare .left {
    text-align: right;
    font-weight: var(--semi-bold);
    color: #fff;
}

#landing-page #compare .left .section-title {
    font-size: 47px;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 0.04em;
    line-height: 51px;
    text-transform: uppercase;
}

#landing-page #compare .left p {
    color: #fff;
    float: right;
    font-weight: var(--semi-bold);
}

#landing-page #compare .left p:nth-child(2) {
    max-width: 300px;
    margin-bottom: 40px;
}

#landing-page #compare .left .cta {
    float: right;
    text-transform: uppercase;
    font-size: 25px;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 30px;
    padding: 35px 30px;
    max-width: 345px;
    white-space: normal;
    background: #f1f1f1;
    font-weight: var(--semi-bold);
    text-decoration: none;
    margin-bottom: 30px;
}

#landing-page #compare .left a.cta.pink {
    background: var(--french-rose);
    color: #fff;
}

#landing-page #compare .left a.cta.grey {
    background: #9a9a9a;
    padding: 20px;
    width: 345px;
    border: 4px solid #ffffff;
    color: #fff;
}

#landing-page #compare .right {
    text-align: left;
}

/* partner section */
#landing-page #partners-section {
    padding-bottom: 20px;
}

#landing-page #partners-section h2 {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 30px;
    font-size: 21px;
    font-weight: var(--extra-bold);
    color: var(--charcoal);
    letter-spacing: 0.03rem;
    line-height: 25px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    #landing-page #partners-section {
        padding-bottom: 50px;
    }

    #landing-page #partners-section h2 {
        font-size: 47px;
        letter-spacing: 0.04rem;
        line-height: 51px;
    }
}

#landing-page #partners-section .box-shadow {
    box-shadow: var(--box-shadow);
}

#landing-page #partners-section a {
    display: block;
    padding: 10px 0;
    text-align: center;
}

#landing-page #partners-section img {
    height: 60px;
    width: auto;
    margin: auto;
}


/***********************/
/** TELL ME MORE PAGE **/
/***********************/
#tell-me-more-page {
    position: relative;
    z-index: 0;
    /*top: -87px; !* menu height *!
    margin-bottom: -87px;*/
}

#tell-me-more-page img {
    float: none;
    max-width: 100%;
    width: auto;
}

/* about dr sherylle */
#tell-me-more-page #about-dr-sherylle {
    position: relative;
    z-index: 4;
}

#tell-me-more-page #about-dr-sherylle .image img {
    position: relative;
    float: none;
    right: -45px;
    max-width: 155px;
    margin-bottom: -40px;
}

#tell-me-more-page #about-dr-sherylle h2 {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 110%;
    font-weight: var(--extra-bold);
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
}

#tell-me-more-page #about-dr-sherylle h2 a {
    position: absolute;
    top: 0;
    right: 0;
}

#tell-me-more-page #about-dr-sherylle .copy h3 {
    color: #627383;
    font-weight: var(--extra-bold);
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 110%;
}

#tell-me-more-page #about-dr-sherylle .copy {
    padding-top: 10px;
    padding-right: 0;
}

#tell-me-more-page #about-dr-sherylle .copy p,
#tell-me-more-page #about-dr-sherylle .copy ul li {
    font-size: 13px;
    line-height: 16px;
    color: #000;
    letter-spacing: 0.04em;
    margin-bottom: 30px;
    max-width: 420px;
}

#tell-me-more-page #about-dr-sherylle .copy ul {
    padding-left: 20px;
    font-weight: var(--semi-bold);
}

#tell-me-more-page #about-dr-sherylle .copy ul li {
    margin-bottom: 5px;
}

/* tablet+ displays */
@media (min-width:768px) {
    #tell-me-more-page #about-dr-sherylle .copy ul {
        padding-left: 25px;
    }

    #tell-me-more-page #about-dr-sherylle .copy {
        padding-right: 15px;
    }

    #tell-me-more-page #about-dr-sherylle .image img {
        float: right;
        position: relative;
        top: -90px;
        max-width: 90%;
        margin-bottom: -160px;
        right: -140px;
    }

    #tell-me-more-page #about-dr-sherylle h2 {
        font-size: 43px;
    }

    #tell-me-more-page #about-dr-sherylle .copy h3 {
        font-size: 28px;
    }

    #tell-me-more-page #about-dr-sherylle .copy {
        padding-top: 20px;
        padding-right: 25px;
        padding-left: 0;
    }

    #tell-me-more-page #about-dr-sherylle .copy p,
    #tell-me-more-page #about-dr-sherylle .copy ul li {
        font-size: 19px;
        line-height: 140%;
    }
}

@media (min-width:992px) {

    #tell-me-more-page #about-dr-sherylle h2 {
        font-size: 47px;
    }

    #tell-me-more-page #about-dr-sherylle .copy h3 {
        font-size: 33px;
    }

    #tell-me-more-page #about-dr-sherylle .copy {
        padding-top: 90px;
    }

    #tell-me-more-page #about-dr-sherylle .copy p,
    #tell-me-more-page #about-dr-sherylle .copy ul li {
        font-size: 23px;
        line-height: 32px;
    }
}


/* triangle bg */
#tell-me-more-page #about-dr-sherylle #shapes-bg {
    position: absolute;
    z-index: 2;
    height: 385px;
    width: 100%;
    bottom: -1px;
    overflow: hidden;
}

#tell-me-more-page #about-dr-sherylle #shapes-bg .shape.one {
    content: '';
    background: #edf0f5;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -2;
    bottom: 0;
    /* polygon: (tl, tr, br, bl) */
    -webkit-clip-path: polygon(0 0, 100% 80%, 100% 100%, 0 20%);
    clip-path: polygon(0 0, 100% 80%, 100% 100%, 0 20%);
}

#tell-me-more-page #about-dr-sherylle #shapes-bg .shape.two {
    content: '';
    background: #323c4f;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -2;
    bottom: 0;
    /* polygon: (tl: x y, tr: x y, br: x y, bl: x y) */
    -webkit-clip-path: polygon(0 20%, 100% 99%, 100% 100%, 0% 100%);
    clip-path: polygon(0 20%, 100% 99%, 100% 100%, 0% 100%);
}


/* success stories */
#tell-me-more-page #success-stories {
    padding-bottom: 15px;
}

#tell-me-more-page #success-stories .common-wrap {
    padding: 0 15px 100px;
    max-width: 1200px;
}

@media (min-width: 768px) {
    #tell-me-more-page #success-stories .common-wrap {
        padding: 0 60px 100px;
    }
}

#tell-me-more-page #success-stories h2 {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    color: #3a4458;
    font-weight: var(--extra-bold);
    font-size: 21px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    #tell-me-more-page #success-stories h2 {
        font-size: 42px;
    }
}

@media (min-width: 1024px) {
    #tell-me-more-page #success-stories h2 {
        font-size: 47px;
    }
}

#tell-me-more-page #success-stories .d-inline-block,
#tell-me-more-page #success-stories .d-sm-inline-block {
    vertical-align: middle;
}

#tell-me-more-page #success-stories .d-inline-block.wrapper {
    padding: 0 10px;
}

#tell-me-more-page #success-stories .chosen-slider {
    margin: 15px -15px;
}

#tell-me-more-page #success-stories .wrapper-inner {
    border: 2px solid #edf0f5;
}

#tell-me-more-page #success-stories .d-inline-block img {
    width: 70px;
    padding: 5px;
    height: auto;
    margin: auto;
}

#tell-me-more-page #success-stories .d-inline-block .sports-description {
    padding: 0 0 0 10px;
    max-width: calc(100% - 80px);
    text-align: left;
    line-height: 120%;
}


@media (min-width: 768px) {
    #tell-me-more-page #success-stories .chosen-slider {
        margin: 15px 0;
    }

    #tell-me-more-page #success-stories .d-inline-block img {
        width: 100px;
    }

    #tell-me-more-page #success-stories .d-inline-block .sports-description {
        padding: 0 20px;
        max-width: calc(100% - 110px);
    }
}

#tell-me-more-page #success-stories .d-inline-block .sports-description .title {
    color: var(--charcoal);
    font-size: 13px;
    font-weight: bold;
}

#tell-me-more-page #success-stories .d-inline-block .sports-description .sub-text {
    color: #627383;
    font-size: 10px;
    font-weight: normal;
}

@media (min-width: 768px) {
    #tell-me-more-page #success-stories .d-inline-block .sports-description .title {
        font-size: 21px;
        line-height: 30px;
    }

    #tell-me-more-page #success-stories .d-inline-block .sports-description .sub-text {
        font-size: 18px;
    }
}

#tell-me-more-page #success-stories .slick-next {
    width: 0;
    height: 0;
    right: -45px;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-left: 20px solid #323c4f;
}

#tell-me-more-page #success-stories .slick-prev {
    width: 0;
    height: 0;
    left: -45px;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-right: 20px solid #323c4f;
}
#tell-me-more-page #success-stories .slick-next:before,
#tell-me-more-page #success-stories .slick-prev:before {
    content: '';
}


/***************************/
/** ASSESSMENT BRIEF PAGE **/
/***************************/
#assessment-brief-page {
    position: relative;
    z-index: 0;
}

#assessment-brief-page img {
    float: none;
    position: relative;
    max-width: 100%;
    width: 72px;
    top: -5px;
    left: -25px;
    margin-right: -25px;
}

@media (min-width: 992px) {
    #assessment-brief-page img {
        width: 122px;
        top: -10px;
        left: -45px;
        margin-right: -45px;
    }
}

@media (min-width: 1200px) {
    #assessment-brief-page img {
        width: 152px;
    }
}

#assessment-brief-page .hero-section {
    background-color: var(--charcoal);
    background-image: url("/wp-content/themes/new-theme-child/images/img_icons.png");
    background-repeat: no-repeat;
    background-position: 17% 42%;
    background-size: 740px;
    height: 250px;
}

#assessment-brief-page .hero-section .table {
    margin: 0;
    height: 100%;
}

#assessment-brief-page .hero-section .table .table-row .table-cell {
    vertical-align: middle;
}

#assessment-brief-page .hero-section h1 {
    font-size: 33px;
    font-family: var(--open-sans);
    font-weight: var(--extra-bold);
    color: #fff;
    letter-spacing: 0.03rem;
    line-height: 36px;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px #000;
}

#assessment-brief-page .hero-section .sub-text {
    font-size: 15px;
    line-height: 15px;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 0.07rem;
    font-family: var(--open-sans);
    font-weight: var(--extra-bold);
    color: #fff;
    text-shadow: 2px 2px 5px #000;
    margin: 5px auto 0;
    max-width: 330px;
}

@media (min-width: 768px) {

    #assessment-brief-page .hero-section {
        padding: 50px 0;
        height: 400px;
        background-position: -52% 39%;
    }

    #assessment-brief-page .hero-section h1 {
        font-size: 55px;
        line-height: 56px;
    }

    #assessment-brief-page .hero-section h1,
    #assessment-brief-page .hero-section .sub-text {
        text-shadow: 4px 4px 10px #000;
    }

    #assessment-brief-page .hero-section .sub-text {
        font-size: 23px;
        line-height: 29px;
        max-width: 600px;
        margin: 20px auto 0;
    }

    #assessment-brief-page .hero-section img {
        max-width: 150px;
    }
}

@media (min-width: 992px) {
    #assessment-brief-page .h1,
    #assessment-brief-page .hero-section h1 {
        font-size: 59px;
        line-height: 63px;
    }

    #assessment-brief-page .text-lg-left {
        font-size: 31px;
        line-height: 39px;
        letter-spacing: 0.07rem;
        font-weight: var(--extra-bold);
    }
}

/* Large devices (1200px and up) */
@media (min-width: 1200px) {
    #assessment-brief-page .hero-section {
        height: 500px;
        background-position: -27% center;
        background-size: 880px;
    }
}

@media (min-width: 1441px) {
    #assessment-brief-page .hero-section {
        height: 700px;
        background-position: 140px center;
        background-size: 1200px;
    }
}


#assessment-brief-page .hero-section img {
    max-width: 75px;
    margin-bottom: 15px;
}

#assessment-brief-page #key-skills-section {
    margin-top: 0;
    padding: 30px 0;
}

@media (min-width: 992px) {
    #assessment-brief-page #key-skills-section {
        padding: 60px 0;
    }
}

#assessment-brief-page #key-skills-section .narrow {
    max-width: 700px;
    margin: auto;
}

#assessment-brief-page #key-skills-section h2 {
    font-size: 23px;
    font-weight: var(--extra-bold);
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.03rem;
    line-height: 25px;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    #assessment-brief-page #key-skills-section h2 {
        font-size: 50px;
        line-height: 54px;
        margin-bottom: 30px;
    }
}

@media (min-width: 1200px) {
    #assessment-brief-page #key-skills-section h2 {
        font-size: 59px;
        line-height: 63px;
    }
}

#assessment-brief-page .competencies .list-group-item {
    margin: 0 0 10px;
    padding: 5px;
    border-radius: 0;
    border: none;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    /*transition: all 0.35s ease-in-out;*/
}

#assessment-brief-page .competencies .list-group-item:before {
    content: '';
    display: inline-block;
    width: 75px;
    height: 75px;
    background-position: center;
    background-size: 100%;
    vertical-align: middle;
}

@media (min-width: 768px) {
    #assessment-brief-page .competencies .list-group-item:before {
        width: 105px;
        height: 105px;
    }
}

@media (min-width: 1200px) {
    #assessment-brief-page .competencies .list-group-item:before {
        width: 150px;
        height: 150px;
    }
}

#assessment-brief-page .competencies .list-group-item.active:before {
    background-color: #ffffff !important;
}

#assessment-brief-page .competencies .list-group-item.blue:before {
    background-color: var(--blue);
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_va_primary.svg");
}
#assessment-brief-page .competencies .list-group-item.active {
    background-color: var(--blue);
}
#assessment-brief-page .competencies .list-group-item.blue.active:before {
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_va_secondary.svg");
}

#assessment-brief-page .competencies .list-group-item.green:before {
    background-color: var(--green);
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_et_primary.svg");
}
#assessment-brief-page .competencies .list-group-item.green.active {
    background-color: var(--green);
}
#assessment-brief-page .competencies .list-group-item.green.active:before {
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_et_secondary.svg");
}

#assessment-brief-page .competencies .list-group-item.purple:before {
    background-color: var(--purple);
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_dm_primary.svg");
}
#assessment-brief-page .competencies .list-group-item.purple.active {
    background-color: var(--purple);
}
#assessment-brief-page .competencies .list-group-item.purple.active:before {
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_dm_secondary.svg");
}

#assessment-brief-page .competencies .list-group-item.red:before {
    background-color: var(--red-orange);
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_rt_primary.svg");
}
#assessment-brief-page .competencies .list-group-item.red.active {
    background-color: var(--red-orange);
}
#assessment-brief-page .competencies .list-group-item.red.active:before {
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_rt_secondary.svg");
}

#assessment-brief-page .competencies .list-group-item .description-intro,
#assessment-brief-page .competencies .list-group-item .description {
    width: calc(100% - 80px);
    padding: 0 5px;
    vertical-align: middle;
    display: none;
}

@media (min-width: 768px) {
    #assessment-brief-page .competencies .list-group-item .description-intro,
    #assessment-brief-page .competencies .list-group-item .description {
        width: calc(100% - 115px);
        padding: 0 15px;
    }
}
@media (min-width: 1200px) {
    #assessment-brief-page .competencies .list-group-item .description-intro,
    #assessment-brief-page .competencies .list-group-item .description {
        width: calc(100% - 160px);
        padding: 0 15px;
    }
}


#assessment-brief-page .competencies .list-group-item .description-intro {
    display: inline-block;
}

#assessment-brief-page .competencies .list-group-item.active .description-intro,
#assessment-brief-page .competencies .list-group-item.active .description {
    display: none;
}
#assessment-brief-page .competencies .list-group-item.active .description {
    display: inline-block;
}

#assessment-brief-page .competencies .list-group-item .description-intro .h2 {
    font-size: 17px;
    font-weight: var(--extra-bold);
    line-height: 1;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
    margin: 0;
}

@media (min-width: 768px) {
    #assessment-brief-page .competencies .list-group-item .description-intro .h2 {
        font-size: 33px;
        line-height: 33px;
    }
}

@media (min-width: 1200px) {
    #assessment-brief-page .competencies .list-group-item .description-intro .h2 {
        font-size: 35px;
        line-height: 35px;
    }
}

#assessment-brief-page .competencies .list-group-item .description .h3 {
    font-size: 15px;
    color: #ffffff;
    letter-spacing: 0.07rem;
    line-height: 16px;
    font-weight: var(--extra-bold);
    margin-bottom: 5px;
    text-shadow: 2px 2px 5px #000000;
}
#assessment-brief-page .competencies .list-group-item .description p {
    font-size: 13px;
    color: #ffffff;
    letter-spacing: 0.07rem;
    line-height: 16px;
    font-weight: var(--semi-bold);
    text-shadow: 2px 2px 5px #000000;
}

@media (min-width: 768px) {
    #assessment-brief-page .competencies .list-group-item .description .h3 {
        font-size: 23px;
        line-height: 26px;
    }
    #assessment-brief-page .competencies .list-group-item .description p {
        font-size: 20px;
        line-height: 24px;
    }
}

@media (min-width: 1200px) {
    #assessment-brief-page .competencies .list-group-item .description .h3 {
        font-size: 25px;
        line-height: 32px;
    }
    #assessment-brief-page .competencies .list-group-item .description p {
        font-size: 21px;
        line-height: 25px;
    }
}

/* competencies above slider */
#assessment-brief-page .narrow {
    max-width: 900px;
}

#assessment-brief-page .narrow .competencies {
    padding-bottom: 30px;
}


#assessment-brief-page #assessment-drill-btn {
    position: relative;
    font-size: 60px;
    padding: 15px;
    letter-spacing: 0.03rem;
    line-height: 1;
    max-width: 100%;
    box-shadow: var(--box-shadow);
    transition: all 0.35s linear;
}

@media (min-width: 768px) {
    #assessment-brief-page #assessment-drill-btn {
        font-size: 65px;
        padding: 24px;
    }
}

@media (min-width: 992px) {
    #assessment-brief-page #assessment-drill-btn {
        font-size: 90px;
        padding: 10px;
    }
}

@media (min-width: 1200px) {
    #assessment-brief-page #assessment-drill-btn {
        font-size: 120px;
        padding: 20px;
    }
}

#assessment-brief-page #assessment-drill-btn:hover {
    box-shadow: var(--box-shadow-hover);
}

#assessment-brief-page #assessment-drill-btn:hover img {
    -webkit-animation: bounce 1s infinite;
    -o-animation: bounce 1s infinite;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(30px);
    }
    60% {
        transform: translateX(15px);
    }
}

/****************************/
/** ASSESSMENT DRILLS PAGE **/
/****************************/
#drills-page {
    position: relative;
    z-index: 0;
}

#drills-page img {
    float: none;
    max-width: 100%;
    width: auto;
}

/* banner */
#drills-page #banner {
    position: relative;
}

#drills-page #banner .table {
    height: 100%;
    padding: 120px 0 80px;
    margin: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#drills-page #banner .table h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: var(--semi-bold);
    color: #fff;
}

#drills-page #banner .table .table-row .table-cell {
    text-align: center;
    vertical-align: bottom;
}

#drills-page iframe#drill-frame {
    height: calc(100vh - 177px);
    margin-bottom: -7px;
}

/******* TESTIMONIALS &*******/


#testimonial-page .section-wrap {
    background: #3a4457;
}

#testimonial-page .section-wrap .h1 {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: var(--cadet);
    font-weight: var(--extra-bold);
    font-size: 59px;
    line-height: 63px;
    margin: 40px -80px;
}

#testimonial-page .section-wrap .h1 span {
    background: #3a4457;
    padding: 0 20px;
}



/* comparison */
#testimonial-page.compared-page .header {
    text-align: center;
}

#testimonial-page.compared-page .header h1 {
    font-size: 59px;
    line-height: 63px;
    color: #fff;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
    font-weight: var(--extra-bold);
    margin: 50px 0 25px;
}

#testimonial-page.compared-page .header label {
    background-color: var(--cadet-grey);
    box-shadow: var(--box-shadow);
    padding: 15px;
    text-transform: uppercase;
    color: #fff;
    font-size: 21px;
    letter-spacing: 0.1rem;
    line-height: 30px;
    width: 33.333%;
    max-width: 290px;
    font-weight: var(--extra-bold);
}
/* testimonial-header */
#testimonial-page #testimonial-header {
    background: #fff;
    padding: 100px 0;
    border-top: 50px solid var(--munshell);
    border-bottom: 50px solid var(--munshell);
}


#testimonial-page #testimonial-header .content p {
    font-size: 23px;
    line-height: 32px;
    font-weight: var(--semi-bold);
    color: #1c1c1c;
    text-align: center;
    letter-spacing: 0.07rem;
    margin: 10px 0 50px;
}

#testimonial-page #testimonial-header .content .h1 {
    background: transparent;
    color: #1c1c1c;
    margin: 0;
}

#testimonial-page #testimonial-header .col-12 .wrapper {
    font-size: 19px;
    line-height: 30px;
    font-weight: var(--extra-bold);
    background: var(--charcoal);
    color: #fff;
    text-align: center;
    letter-spacing: 0.07rem;
    margin-top: 30px;
    padding: 10px 0;
}
#testimonial-page #testimonial-header .no-bg {
    padding-right: 40px;
    padding-left: 40px;
    
    background: var(--charcoal);

}

#testimonial-page #testimonial-header .testimonial-card {
    padding: 20px;
    margin-bottom: 40px;
    background: #fff;
    min-height: 190px;
    border-bottom: 3px solid var(--dark-turquoise);
}

#testimonial-page #testimonial-header .select-category-container  {
    display: flex;
    flex-wrap: wrap;
    margin-bottom:30px;
    flex-direction: row;
    justify-content: center;
}

#testimonial-page #testimonial-header .select-category-container .category-block {
    display: flex;
    height: 70px;
    margin: 20px;
    background: #92a1b0;
    flex-direction: column;
    justify-content: space-around;
    color:  #fff;
    flex-grow: 1;
    width: 33%;
    cursor: pointer;

}



#testimonial-page #testimonial-header .select-category-container .category-block.selected-category {
    display: flex;
    height: 70px;
    margin: 20px;
    background: #fff687;
    flex-direction: column;
    justify-content: space-around;
    color:  var(--charcoal);
    flex-grow: 1;
    width: 33%;
    cursor: pointer;
}

#testimonial-page #testimonial-header .select-category-container .category-block.filter-by-category {
    display: flex;
    height: 70px;
    margin: 20px;
    background: #92a1b0;
    flex-direction: column;
    justify-content: space-around;
    color:  #fff;
    flex-grow: 1;
    width: 45%;
    cursor: pointer;

}

#testimonial-page #testimonial-header .select-category-container .category-block .h4{
    font-family: var(--open-sans);
    font-size: 21px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 20px;
}

#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content {
    padding: 0px;
    display: flex;
    flex-direction: column;
    background: #fff;
}
@media (min-width: 500px) {
    #testimonial-page #testimonial-header .testimonial-card .testimonial-card-content {
        padding: 0px;
        display: flex;
        flex-direction: row;
        background: #fff;
    }
}

#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-img-container {
    padding: 0px;
    background: #fff;
    height: 150px;
    width: 150px;
    min-width: 150px;
    max-height: 150px;
}

#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-body-container {
    padding: 0px;
    flex-grow: 100;
    background: #fff;
    display: flex;
    flex-direction: column;
}


#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-body-container .testimonial-header-container {
    padding: 0px;
    display: flex;
    margin-left:0px;
    margin-right:0px;
    flex-direction: column;
    justify-content: flex-start;
}

@media (min-width: 500px) {
    #testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-body-container .testimonial-header-container {
        padding: 0px;
        display: flex;
        margin-left:20px;
        margin-right:20px;
        flex-direction: column;
        justify-content: flex-start;
    }
}
#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-body-container .testimonial-header-container .testimonial-category {
    padding:0px;
    margin-left:0px;
}


#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-body-container .testimonial-header-container .testimonial-header .h4 {
    height: auto;
    padding:0px;
    font-family: var(--open-sans);
    font-weight: var(--extra-bold);
    font-size: 21px;
    color: #323c4f;
    line-height: 22px;
}



#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-body-container .testimonial-header-container .testimonial-category .h3{
    font-family: var(--open-sans);
    font-weight: 300;
    font-size: 21px;
    color: #92a2b1;
    line-height: 22px;
    height: 22px;
    padding:0px;
    
}

#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-body-container .testimonial-header-container .testimonial-category .h3 a{
    font-family: var(--open-sans);
    font-weight: 300;
    font-size: 21px;
    color: #92a2b1;
    line-height: 22px;
    height: 22px;
    padding:10px;
    
}

@media (min-width: 650px) {

    #testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-body-container .testimonial-header-container {
        padding: 0px;
        display: flex;
        margin-left:20px;
        margin-right:20px;
        flex-direction: row;
        justify-content: flex-start;
    }
}

@media (min-width: 650px) {
    #testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-body-container .testimonial-header-container .testimonial-category {
        margin-left:20px;
    }
}

#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-date-container {
    padding: 0px;
    margin-left:0px;
    margin-right: 0px;
    background: #fff;
}

@media (min-width: 500px) {
    #testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-date-container {
        padding: 0px;
        margin-left:20px;
        margin-right: 20px;
        background: #fff;
    }
}

#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-date-container .testimonial-date{
    font-family: var(--open-sans);
    font-size: 13px;
    color: #92a2b1;
    line-height: 15px;
}

#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-content-container {
    padding: 0px;
    margin-left:0px;
    margin-top:10px;
    margin-right: 0px;
    flex-grow: 100;
}


@media (min-width: 500px) {
    #testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-content-container {
        padding: 0px;
        margin-left:20px;
        margin-top:10px;
        margin-right: 20px;
        flex-grow: 100;
    }
}
#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-content-container .testimonial-content {
    font-family: var(--open-sans);
    font-size: 18px;
    font-weight: 400;
    color: #323c4f;
}
#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-content-container h2 {
    font-family: var(--open-sans);
    font-size: 18px;
    font-weight: 400;
    color: #323c4f;
}

#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-content-container p {
    font-family: var(--open-sans);
    font-size: 18px;
    font-weight: 400;
    color: #323c4f;
}

#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-content-container p strong {
    font-family: var(--open-sans);
    font-size: 18px;
    font-weight: 400;
    color: #323c4f;
}
/*
#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-content-container p:nth-child(odd) {
    text-align: end;
}

#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-content-container p strong:nth-child(odd) {
    text-align: end;
}

#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-content-container p:nth-child(even) {
    text-align: start;
}

#testimonial-page #testimonial-header .testimonial-card .testimonial-card-content .testimonial-content-container p strong:nth-child(even) {
    text-align: start;
}
*/

/*****************************************/
/** ASSESSMENT COMPLETED / COMPARE PAGE **/
/*****************************************/
#assessment-completed-page {
    background: #3a4457;
}

/* banner */
#assessment-completed-page #banner {
    height: 250px;
    position: relative;
}

#assessment-completed-page #banner .table {
    height: 100%;
    background-image: url("/wp-content/themes/new-theme-child/images/img_icons_reverse.png");
    background-repeat: no-repeat;
    background-position: 235% -68px;
    background-size: 80%;
}

@media (min-width: 768px) {

    #assessment-completed-page #banner {
        height: 400px;
    }
}

/* Large devices (992 and up) */
@media (min-width: 992px) {
    #assessment-completed-page #banner .table {
        background-position: 235% -138px;
        background-size: 80%;
    }
}

/* Large devices (1200px and up) */
@media (min-width: 1200px) {
    #assessment-completed-page #banner {
        height: 500px;
    }

    #assessment-completed-page #banner .table {
        background-position: 122% -71px;
        background-size: 60%;
    }
}

@media (min-width: 1441px) {
    #assessment-completed-page #banner {
        height: 700px;
    }

    #assessment-completed-page #banner .table {
        background-position: 95% 0;
        background-size: 48%;
    }
}

#assessment-completed-page #banner .table .table-row .table-cell {
    vertical-align: middle;
}

#assessment-completed-page #banner .table .title p {
    text-align: right;
    font-size: 47px;
    line-height: 53px;
    font-weight: var(--extra-bold);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
    text-shadow: 4px 4px 10px #000;
}

@media (min-width: 992px) {
    #assessment-completed-page #banner .table .title p {
        text-align: right;
        font-size: 59px;
        line-height: 63px;
    }
}

#assessment-completed-page #banner .table p.copy {
    color: #fff;
    margin-top: 5px;
    text-align: right;
    font-size: 23px;
    line-height: 29px;
    font-weight: var(--extra-bold);
    letter-spacing: 0.07rem;
    text-shadow: 4px 4px 10px #000;
}

#assessment-completed-page #banner #shapes-bg {
    position: absolute;
    z-index: 0;
    height: 40%;
    width: 100%;
    bottom: -1px;
}

#assessment-completed-page #banner #shapes-bg .shape {
    height: 100%;
    width: 100%;
    background: #fff;
    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}


#assessment-completed-page .section-wrap {
    background: #3a4457;
}

#assessment-completed-page .section-wrap .h1 {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: var(--cadet);
    font-weight: var(--extra-bold);
    font-size: 59px;
    line-height: 63px;
    margin: 40px -80px;
}

#assessment-completed-page .section-wrap .h1 span {
    background: #3a4457;
    padding: 0 20px;
}

#assessment-completed-page #level {
    padding: 0 15px;
}

#assessment-completed-page #level .container {
    margin-top: 120px;
}

#assessment-completed-page #level dl {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}

#assessment-completed-page #level dl dt {
    color: #627383;
    border: 5px solid #627383;
    background: #3a4457;
    font-weight: var(--extra-bold);
    border-radius: 50%;
    text-align: center;
    width: 40px;
    padding: 2px 5px;
    position: relative;
}

/* normal line */
#assessment-completed-page #level dl dt .line {
    height: 0;
    border-top: 5px solid #627383;
    width: 100%;
    top: 50%;
    margin-top: -2px;
    right: 100%;
    position: absolute;
    z-index: -1;
}

#assessment-completed-page #level dl dt:first-child .line {
    display: none;
}

/* compare line */
#assessment-completed-page #level dl dt.avg {
    border-color: #fff77f;
    color: #fff77f;
}
#assessment-completed-page #level dl dt.avg .line {
    border-color: #fff77f;
}

/* active line */
#assessment-completed-page #level dl dt.active,
#assessment-completed-page #level dl dt.active.avg {
    border-color: #fff;
    color: #fff;
}
#assessment-completed-page #level dl dt.active.avg .line,
#assessment-completed-page #level dl dt.active .line {
    border-color: #fff;
}

#assessment-completed-page #level dl dt .level-marker {
    position: absolute;
    top: -100px;
    left: -45px;
    font-size: 25px;
    line-height: 35px;
    text-transform: uppercase;
    font-weight: var(--extra-bold);
    color: #3a4457;
    text-align: center;
    letter-spacing: 0.07rem;
    background: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.3);
}

#assessment-completed-page #level dl dt .level-marker:after {
    content: '';
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #fff;
    position: absolute;
    bottom: -15px;
    left: 50%;
    margin-left: -10px;
}

#assessment-completed-page #level dl dt .level-marker.start {
    left: 0;
}

#assessment-completed-page #level dl dt .level-marker.start:after {
    border-left: 5px solid transparent;
    left: 18%;
}

#assessment-completed-page #level dl dt .level-marker.end {
    left: -85px;
}

#assessment-completed-page #level dl dt .level-marker.end:after {
    border-right: 5px solid transparent;
    left: 85%;
}

#assessment-completed-page #level dl dt .level-marker.avg.start {
    left: -5px;
}

#assessment-completed-page #level dl dt .level-marker.avg.start:after {
    border-left: 5px solid transparent;
    left: 9%;
}

#assessment-completed-page #level dl dt .level-marker.avg.end {
    left: -255px;
}

#assessment-completed-page #level dl dt .level-marker.avg.end:after {
    border-right: 5px solid transparent;
    left: 92%;
}


#assessment-completed-page #bar-chart {
    padding: 0 80px 60px;
}

#assessment-completed-page #bar-chart #c-div {
    position: relative;
    padding: 0;
    margin-top: var(--bar-margin);
    /*margin-left: 120px;
    margin-right:  120px;*/
    background-color: var(--cadet);
    height: calc((var(--bar-height) + var(--bar-margin)) * 4 + var(--bar-margin)  * 3);
    /*border-left: 1px solid var(--cadet-grey);
    border-bottom: 2px solid var(--cadet-grey);*/
}

#assessment-completed-page #bar-chart #a-div {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /*border-left: 1px solid var(--cadet-grey);
    border-bottom: 2px solid var(--cadet-grey);*/
}

#assessment-completed-page #bar-chart #b-div {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /*border-left: 1px solid var(--cadet-grey);
    border-bottom: 2px solid var(--cadet-grey);*/
}


#assessment-completed-page #bar-chart dl {
    position: relative;
    padding: 0;
    margin-top: var(--bar-margin);
    margin-left: 120px;
    margin-right:  120px;
    background-color: var(--cadet);
    /*border-left: 1px solid var(--cadet-grey);
    border-bottom: 2px solid var(--cadet-grey);*/
}
/*
#assessment-completed-page #bar-chart dl:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: var(--cadet-grey);
    border-radius: 50%;
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: 1;
}
#assessment-completed-page #bar-chart dl:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: var(--cadet-grey);
    border-radius: 50%;
    position: absolute;
    right: -5px;
    bottom: -5px;
    z-index: 1;
}
*/
#assessment-completed-page #bar-chart dd.percentage {
    position: relative;
    background: repeating-linear-gradient(
            to right,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0.3) 1px,
            transparent 0,
            transparent 9.99%
    );
    clear: both;
    padding-bottom: var(--bar-margin);
}

#assessment-completed-page #bar-chart dd.percentage:first-child {
    padding-top: var(--bar-margin);
}

#assessment-completed-page #bar-chart dd.percentage:before {
    content: '';
    display: block;
    position: relative;
    float: left;
    width: calc(var(--bar-height) - 15px);
    height: calc(var(--bar-height) - 15px);
    top: calc(var(--bar-height) - calc(var(--bar-height) - 8px) );
    left: -70px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border: 2px solid;
}
#assessment-completed-page #bar-chart dd.va:before {
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_va_secondary.svg");
    border-color: var(--blue);
}
#assessment-completed-page #bar-chart dd.et:before {
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_et_secondary.svg");
    border-color: var(--green);
}
#assessment-completed-page #bar-chart dd.rt:before {
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_rt_secondary.svg");
    border-color: var(--red-orange);
}
#assessment-completed-page #bar-chart dd.dm:before {
    background-image: url("/wp-content/themes/new-theme-child/images/icons/ic_dm_secondary.svg");
    border-color: var(--purple);
}

#assessment-completed-page #bar-chart dd.percentage .text-wrapper {
    display: block;
    /*background-color: rgba(0, 0, 0, 0.3);*/
    text-align: right;
    border-left: none !important;
    height: var(--bar-height);
    transition: width 1s ease-in-out 1s;
    width: 10%;
    position: relative;
    border: 2px solid;
}

#assessment-completed-page #bar-chart dd.percentage.va .text-wrapper {
    /*border-color: var(--blue);
    background-image: linear-gradient(to right, rgb(var(--rgba-blue), 0.3) , var(--blue));
    */
    border: none !important;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.3);
    background-image: -webkit-linear-gradient(-90deg, rgba(70, 142, 229, 1) 0%, rgba(0, 198, 219, 1) 100%);
    background-image: -moz-linear-gradient(-90deg, rgba(70, 142, 229, 1) 0%, rgba(0, 198, 219, 1) 100%);
    background-image: -o-linear-gradient(-90deg, rgba(70, 142, 229, 1) 0%, rgba(0, 198, 219, 1) 100%);
    background-image: linear-gradient(-90deg, rgba(70, 142, 229, 1) 0%, rgba(0, 198, 219, 1) 100%);
    
}

#assessment-completed-page #bar-chart dd.percentage.et .text-wrapper {
    /*border-color: var(--green);
    background-image: linear-gradient(to right, rgba(var(--rgba-green), 0.3) , var(--green));*/
    border: none !important;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.3);
    background-image: -webkit-linear-gradient(-90deg, rgba(71, 229, 126, 1) 0%, rgba(71, 228, 194, 1) 100%);
    background-image: -moz-linear-gradient(-90deg, rgba(71, 229, 126, 1) 0%, rgba(71, 228, 194, 1) 100%);
    background-image: -o-linear-gradient(-90deg, rgba(71, 229, 126, 1) 0%, rgba(71, 228, 194, 1) 100%);
    background-image: linear-gradient(-90deg, rgba(71, 229, 126, 1) 0%, rgba(71, 228, 194, 1) 100%);

}

#assessment-completed-page #bar-chart dd.percentage.rt .text-wrapper {
    /*border-color: var(--red-orange);
    background-image: linear-gradient(to right, rgba(var(--rgba-red-orange), 0.3) , var(--red-orange));*/
    border: none !important;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.3);
    background-image: -webkit-linear-gradient(-90deg, rgba(255, 79, 73, 1) 0%, rgba(255, 122, 85, 1) 100%);
    background-image: -moz-linear-gradient(-90deg, rgba(255, 79, 73, 1) 0%, rgba(255, 122, 85, 1) 100%);
    background-image: -o-linear-gradient(-90deg, rgba(255, 79, 73, 1) 0%, rgba(255, 122, 85, 1) 100%);
    background-image: linear-gradient(-90deg, rgba(255, 79, 73, 1) 0%, rgba(255, 122, 85, 1) 100%);

}

#assessment-completed-page #bar-chart dd.percentage.dm .text-wrapper {
   /* border-color: var(--purple);
    background-image: linear-gradient(to right, rgba(var(--rgba-purple), 0.3) , var(--purple));*/
    border: none !important;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.3);
    background-image: -webkit-linear-gradient(-90deg, rgba(174, 95, 232, 1) 0%, rgba(255, 147, 255, 1) 100%);
    background-image: -moz-linear-gradient(-90deg, rgba(174, 95, 232, 1) 0%, rgba(255, 147, 255, 1) 100%);
    background-image: -o-linear-gradient(-90deg, rgba(174, 95, 232, 1) 0%, rgba(255, 147, 255, 1) 100%);
    background-image: linear-gradient(-90deg, rgba(174, 95, 232, 1) 0%, rgba(255, 147, 255, 1) 100%);
        
}

#assessment-completed-page #bar-chart dd.percentage .text-wrapper .text {
    white-space: nowrap;
    font-size: 9px;
    color: #fff;
    position: absolute;
    right: 15px;
}

/* comparison */
#assessment-completed-page.compared-page .header {
    text-align: center;
}

#assessment-completed-page.compared-page .header h1 {
    font-size: 59px;
    line-height: 63px;
    color: #fff;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
    font-weight: var(--extra-bold);
    margin: 50px 0 25px;
}

#assessment-completed-page.compared-page .header label {
    background-color: var(--cadet-grey);
    box-shadow: var(--box-shadow);
    padding: 15px;
    text-transform: uppercase;
    color: #fff;
    font-size: 21px;
    letter-spacing: 0.1rem;
    line-height: 30px;
    width: 33.333%;
    max-width: 290px;
    font-weight: var(--extra-bold);
}

#assessment-completed-page.compared-page .header label .group-value {
    font-size: 12px;
    line-height: 100%;
    font-weight: var(--semi-bold);
}
#assessment-completed-page.compared-page .header label .group-value:before {
    content: "(";
    display: inline-block;
}
#assessment-completed-page.compared-page .header label .group-value:after {
    content: ")";
    display: inline-block;
}

#assessment-completed-page.compared-page .header .compared-to > input:checked + label {
    color: #3a4457;
    background-color: #fff77f;
}

#assessment-completed-page.compared-page #bar-chart #c-div {
    position: relative;
    padding: 0;
    margin-top: var(--bar-margin);
    background-color: var(--cadet);
    height: calc((var(--bar-height) + var(--bar-margin)) * 6 + var(--bar-margin)  * 5);
}

#assessment-completed-page.compared-page #bar-chart dd.percentage {
    padding-bottom: 0px;
}

#assessment-completed-page.compared-page #bar-chart dd.percentage-compared {
    position: relative;
    background: repeating-linear-gradient(
            to right,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0.3) 1px,
            transparent 0,
            transparent 9.99%
    );
    clear: both;
    padding-bottom: var(--bar-margin);
}

#assessment-completed-page.compared-page #bar-chart dd.percentage-compared .text-wrapper {
    display: block;
    text-align: right;
    border-left: none !important;
    height: calc(var(--bar-height) / 2);
    transition: width 1s ease-in-out 1s;
    width: 10%;
    position: relative;
    /*
    border: 2px solid #fff77f;
    background: linear-gradient(to right, rgba(255, 247, 127, 0.4), #fff77f);
    */
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.3);
    background-image: -webkit-linear-gradient(-90deg, #fff77f 0%, #fdb132 100%);
    background-image: -moz-linear-gradient(-90deg, #fff77f 0%, #fdb132 100%);
    background-image: -o-linear-gradient(-90deg, #fff77f 0%, #fdb132 100%);
    background-image: linear-gradient(-90deg, #fff77f 0%, #fdb132 100%);


}

#assessment-completed-page.compared-page #level .container {
    margin-bottom: 120px;
}

#assessment-completed-page #level dl dt .level-marker.avg {
    width: 293px;
    top: 65px;
    left: -131px;
    background: #fff77f;
    /*white-space: nowrap;*/
}

#assessment-completed-page #level dl dt .level-marker.avg .group-value {
    font-size: 12px;
    font-weight: var(--semi-bold);
    line-height: 100%;
}

#assessment-completed-page #level dl dt .level-marker.avg:after {
    top: -15px;
    bottom: auto;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #fff77f;
    border-top: none;
}

/* recommendation */
#assessment-completed-page #recommendation {
    background: #fff;
    padding: 100px 0;
    border-top: 50px solid var(--munshell);
    border-bottom: 50px solid var(--munshell);
}

#assessment-completed-page .section-wrap.payment-package {
    background:  #323c4f;
    padding: 100px 0;
    border-top: 50px solid var(--munshell);
    border-bottom: 50px solid var(--munshell);
}

#assessment-completed-page #recommendation .content .h1 {
    background: transparent;
    color: #1c1c1c;
    margin: 0;
}

#assessment-completed-page #recommendation .content.payment-package .h1 {
    background: transparent;
    color: #fff;
    margin: 0;
}

#assessment-completed-page #recommendation .content p {
    font-size: 23px;
    line-height: 32px;
    font-weight: var(--semi-bold);
    color: #1c1c1c;
    text-align: center;
    letter-spacing: 0.07rem;
    margin: 10px 0 50px;
}

#assessment-completed-page #recommendation .content.payment-package p {
    font-size: 23px;
    line-height: 32px;
    font-weight: var(--semi-bold);
    color: #fff;
    text-align: center;
    letter-spacing: 0.07rem;
    margin: 10px 0 50px;
}

#assessment-completed-page #recommendation .options {
    max-width: 940px;
    margin: auto;
}

#assessment-completed-page #recommendation .card {
    border-radius: 0;
    border: none;
}

#assessment-completed-page #recommendation .card .card-header,
#assessment-completed-page #recommendation .card .card-footer {
    border: none;
    background: transparent;
}

#assessment-completed-page #recommendation .card .card-header {
    padding: 30px 45px;
}

#assessment-completed-page #recommendation .card.stay-fit.payment-package-fit .card-header {
    padding: 30px 45px 0px 45px;
}

#assessment-completed-page #recommendation .card.entry.payment-package-fit .card-header {
    padding: 30px 45px 0px 45px;
}

#assessment-completed-page #recommendation .card .card-header .h2 {
    font-size: 41px;
    letter-spacing: 0.1rem;
    font-weight: var(--extra-bold);
    text-transform: uppercase;
}

#assessment-completed-page #recommendation .card .card-header .h2 span {

    font-size: 26px;
    display: block;
}

#assessment-completed-page #recommendation .card .card-header p {
    font-size: 19px;
    letter-spacing: 0.07rem;
    line-height: 25px;
    font-weight: var(--extra-bold);
}

#assessment-completed-page #recommendation .card .card-body {
    padding: 0 25px 0 45px;
}
#assessment-completed-page #recommendation .card.stay-fit.payment-package-fit .card-body {
    padding: 0 25px 0 45px;
}

#assessment-completed-page #recommendation .card.enty.payment-package-fit .card-body {
    padding: 0 25px 0 45px;
}

#assessment-completed-page #recommendation .card .card-body .content {
    min-height: 105px;
}

#assessment-completed-page #recommendation .card.payment-package-fit .card-body .content {
    min-height: 0px;
}

#assessment-completed-page #recommendation .card .card-body .content span {
    display: inline-block;
    font-size: 19px;
    line-height: 25px;
    /*width: 225px;*/
    letter-spacing: 0.07rem;
    /*white-space: nowrap;*/
}

#assessment-completed-page #recommendation .card .card-body .content label {
    font-weight: var(--extra-bold);
    text-transform: uppercase;
}

#assessment-completed-page #recommendation .card .card-body .price {
    font-size: 77px;
    line-height: 75px;
    letter-spacing: 0.02rem;
    font-weight: var(--extra-bold);
    margin-top: 50px;
}

#assessment-completed-page #recommendation .card.entry.payment-package-fit .card-body .price {
    margin-top: 25px;
}

#assessment-completed-page #recommendation .card.stay-fit.payment-package-fit .card-body .price {
    margin-top: 25px;
}

#assessment-completed-page #recommendation .card .card-body .price span.rate {
    font-size: 23px;
    letter-spacing: 0.07rem;
    line-height: 75px;
    font-weight: normal;
    text-transform: uppercase;
}

#assessment-completed-page #recommendation .card .card-footer {
    padding-bottom: 20px;
}

#assessment-completed-page #recommendation .card .card-footer .btn {
    width: 100%;
    background: transparent;
    border: 5px solid #ccc;
    font-size: 21px;
    letter-spacing: 0.1rem;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: var(--extra-bold);
    padding: 15px;
}


#assessment-completed-page #recommendation .card.get-fit {
    color: #fff;
}

#assessment-completed-page #recommendation .card.get-fit.payment-package-fit {
    /*background: var(--dark-turquoise);*/
    color: #323c4b;
}

#assessment-completed-page #recommendation .card.get-fit .box-shadow {
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
    background: var(--charcoal);
    padding-bottom: 10px;
}

#assessment-completed-page #recommendation .card.get-fit.payment-package-fit .box-shadow {
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.6);
    background: var(--medium-turquoise);
    padding-bottom: 10px;
    cursor: pointer;
}

#assessment-completed-page #recommendation .card.get-fit p {
    /*background: var(--dark-turquoise);*/
    color: #fff;
}

#assessment-completed-page #recommendation .card.get-fit.payment-package-fit p {
    /*background: var(--dark-turquoise);*/
    color: #323c4b;
}

#assessment-completed-page #recommendation .card.get-fit .card-footer {
    margin-top: 10px;
    padding: 0;
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
}

#assessment-completed-page #recommendation .card.get-fit .card-footer .btn {
    background: var(--medium-turquoise);
    border-color: var(--medium-turquoise);
    color: var(--charcoal);
}

#assessment-completed-page #recommendation .card.stay-fit,
#assessment-completed-page #recommendation .card.stay-fit p {
    /*background: #dce0e5;*/
    color: var(--cadet-grey);
}
#assessment-completed-page #recommendation .card.stay-fit.payment-package-fit,
#assessment-completed-page #recommendation .card.stay-fit.payment-package-fit p {
    /*background: #dce0e5;*/
    color: #fff;
    cursor: pointer;
}

#assessment-completed-page #recommendation .card.stay-fit .box-shadow {
    /*box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);*/
    background: #dce0e5;
    padding-bottom: 10px;
}

#assessment-completed-page #recommendation .card.stay-fit.payment-package-fit .box-shadow {
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.6);
    background: #ad63e5;
    padding-bottom: 10px;
    cursor: pointer;
    margin-bottom: 30px;
}

#assessment-completed-page #recommendation .card.stay-fit .locked {
    border: 5px solid var(--cadet-grey);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    background: #dce0e5;
    position: absolute;
    right: -20px;
    top: -20px;
}

#assessment-completed-page #recommendation .card.stay-fit .locked img {
    width: 40px;
    margin: 15px auto 0;
    display: block;
}

#assessment-completed-page #recommendation .card.stay-fit .card-footer {
    margin-top: 10px;
    padding: 0;
    /*box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);*/
}

#assessment-completed-page #recommendation .card.stay-fit .card-footer .btn {
    background: #dce0e5;
    border-color: #dce0e5;
    color: var(--cadet-grey);
    opacity: 1;
}


#assessment-completed-page #recommendation .card.entry,
#assessment-completed-page #recommendation .card.entry p {
    /*background: #dce0e5;*/
    color: var(--cadet-grey);
}
#assessment-completed-page #recommendation .card.entry.payment-package-fit,
#assessment-completed-page #recommendation .card.entry.payment-package-fit p {
    /*background: #dce0e5;*/
    color: #323c4b;
    cursor: pointer;
}

#assessment-completed-page #recommendation .card.entry .box-shadow {
    /*box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);*/
    background: #dce0e5;
    padding-bottom: 10px;
}

#assessment-completed-page #recommendation .card.entry.payment-package-fit .box-shadow {
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.6);
    background: #fff687;
    padding-bottom: 10px;
    cursor: pointer;
}

#assessment-completed-page #recommendation .card.entry .locked {
    border: 5px solid var(--cadet-grey);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    background: #dce0e5;
    position: absolute;
    right: -20px;
    top: -20px;
}

#assessment-completed-page #recommendation .card.entry .locked img {
    width: 40px;
    margin: 15px auto 0;
    display: block;
}

#assessment-completed-page #recommendation .card.entry .card-footer {
    margin-top: 10px;
    padding: 0;
    /*box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);*/
}

#assessment-completed-page #recommendation .card.entry .card-footer .btn {
    background: #dce0e5;
    border-color: #dce0e5;
    color: var(--cadet-grey);
    opacity: 1;
}

#assessment-completed-page #recommendation .col-12 .wrapper {
    font-size: 19px;
    line-height: 30px;
    font-weight: var(--extra-bold);
    background: var(--charcoal);
    color: #fff;
    text-align: center;
    letter-spacing: 0.07rem;
    margin-top: 30px;
    padding: 10px 0;
}

/*************************/
/** PAYMENT FAILED PAGE **/
/*************************/
#payment-failed {

}

#payment-failed .section-wrap .h1 {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: var(--cadet);
    font-weight: var(--extra-bold);
    font-size: 59px;
    line-height: 63px;
    margin: 40px -80px;
}

#payment-failed .section-wrap .h1 span {
    background: #3a4457;
    padding: 0 20px;
}

/* recommendation */
#payment-failed #recommendation {
    background: #fff;
    padding: 40px 0;
    border-top: 50px solid var(--munshell);
    border-bottom: 50px solid var(--munshell);
}

#payment-failed #recommendation .content .h1 {
    background: transparent;
    /*color: #1c1c1c;*/
    color: var(--red-orange);
    margin: 0;
}

#payment-failed #recommendation .content p {
    font-size: 23px;
    line-height: 32px;
    font-weight: var(--semi-bold);
    color: #000;
    text-align: center;
    letter-spacing: 0.07rem;
    margin: 10px 0 50px;
}

#payment-failed #recommendation .options {
    max-width: 940px;
    margin: auto;
}

#payment-failed #recommendation .card {
    border-radius: 0;
    border: none;
}

#payment-failed #recommendation .card .card-header,
#payment-failed #recommendation .card .card-footer {
    border: none;
    background: transparent;
}

#payment-failed #recommendation .card .card-header {
    padding: 30px 45px;
}

#payment-failed #recommendation .card .card-header .h2 {
    font-size: 41px;
    letter-spacing: 0.1rem;
    font-weight: var(--extra-bold);
    text-transform: uppercase;
}

#payment-failed #recommendation .card .card-header .h2 span {
    font-size: 26px;
    display: block;
}

#payment-failed #recommendation .card .card-header p {
    font-size: 19px;
    letter-spacing: 0.07rem;
    line-height: 25px;
    font-weight: var(--extra-bold);
}

#payment-failed #recommendation .card .card-body {
    padding: 0 45px;
}

#payment-failed #recommendation .card .card-body .content {
    min-height: 105px;
}

#payment-failed #recommendation .card .card-body .content span {
    display: inline-block;
    font-size: 19px;
    line-height: 25px;
    /*width: 225px;*/
    letter-spacing: 0.07rem;
    /*white-space: nowrap;*/
}

#payment-failed #recommendation .card .card-body .content label {
    font-weight: var(--extra-bold);
    text-transform: uppercase;
}

#payment-failed #recommendation .card .card-body .price {
    font-size: 77px;
    line-height: 75px;
    letter-spacing: 0.02rem;
    font-weight: var(--extra-bold);
    margin-top: 50px;
}

#payment-failed #recommendation .card .card-body .price span.rate {
    font-size: 23px;
    letter-spacing: 0.07rem;
    line-height: 75px;
    font-weight: normal;
    text-transform: uppercase;
}

#payment-failed #recommendation .card .card-footer {
    padding-bottom: 20px;
}

#payment-failed #recommendation .card .card-footer .btn {
    width: 100%;
    background: transparent;
    border: 5px solid #ccc;
    font-size: 21px;
    letter-spacing: 0.1rem;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: var(--extra-bold);
    padding: 15px;
}


#payment-failed #recommendation .card.get-fit {
    color: #fff;
}

#payment-failed #recommendation .card.get-fit .box-shadow {
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
    background: var(--charcoal);
    padding-bottom: 10px;
}

#payment-failed #recommendation .card.get-fit p {
    /*background: var(--dark-turquoise);*/
    color: #fff;
}

#payment-failed #recommendation .card.get-fit .card-footer {
    margin-top: 10px;
    padding: 0;
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
}

#payment-failed #recommendation .card.get-fit .card-footer .btn {
    background: var(--medium-turquoise);
    border-color: var(--medium-turquoise);
    color: var(--charcoal);
}

#payment-failed #recommendation .card.stay-fit,
#payment-failed #recommendation .card.stay-fit p {
    background: #dce0e5;
    color: var(--cadet-grey);
}

#payment-failed #recommendation .card.stay-fit .locked {
    border: 5px solid var(--cadet-grey);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    background: #dce0e5;
    position: absolute;
    right: -20px;
    top: -20px;
}

#payment-failed #recommendation .card.stay-fit .locked img {
    width: 40px;
    margin: 15px auto 0;
    display: block;
}


#payment-failed #recommendation .card.stay-fit .card-footer .btn {
    border-color: var(--cadet-grey);
    color: var(--cadet-grey);
}

#payment-failed #recommendation .card.stay-fit.active {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

#payment-failed #recommendation .card.stay-fit.active,
#payment-failed #recommendation .card.stay-fit.active p {
    background: var(--purple);
    color: #fff;
}

#payment-failed #recommendation .card.stay-fit.active .card-footer .btn {
    border-color: #fff;
    color: #fff;
}


#payment-failed #recommendation .card.entry,
#payment-failed #recommendation .card.entry p {
    background: #dce0e5;
    color: var(--cadet-grey);
}

#payment-failed #recommendation .card.entry .locked {
    border: 5px solid var(--cadet-grey);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    background: #dce0e5;
    position: absolute;
    right: -20px;
    top: -20px;
}

#payment-failed #recommendation .card.entry .locked img {
    width: 40px;
    margin: 15px auto 0;
    display: block;
}


#payment-failed #recommendation .card.entry .card-footer .btn {
    border-color: var(--cadet-grey);
    color: var(--cadet-grey);
}

#payment-failed #recommendation .card.entry.active {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

#payment-failed #recommendation .card.entry.active,
#payment-failed #recommendation .card.entry.active p {
    background: var(--purple);
    color: #fff;
}

#payment-failed #recommendation .card.entry.active .card-footer .btn {
    border-color: #fff;
    color: #fff;
}



/**********************/
/** SCREEN TIME PAGE **/
/**********************/
#screen-time-page {
    position: relative;
    z-index: 0;
    min-height: calc(100vh - (250px + 10px));
    padding-bottom: 30px;
    background: #fff;
}

@media (min-width: 768px) {
    #screen-time-page {
        padding-bottom: 60px;
    }
}

#screen-time-page .hero-section {
    background-image: url("/wp-content/uploads/2019/03/img_screen_time.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    height: 250px;
}

#screen-time-page .hero-section .table {
    margin: 0;
    height: 100%;
}

#screen-time-page .hero-section .table .table-row .table-cell {
    vertical-align: middle;
}

/* Medium devices (tablet landscape, 1024px and up) */
@media (min-width: 992px) {
    #screen-time-page .hero-section {
        background-image: url("/wp-content/uploads/2019/03/img_screen_time-1.png");
        background-repeat: no-repeat;
        background-position: center top;
    }

    #screen-time-page .hero-section .table .table-row .table-cell {
        padding-top: 0;
    }
}

#screen-time-page .hero-section h1 {
    font-size: 33px;
    font-family: var(--open-sans);
    font-weight: var(--extra-bold);
    color: #fff;
    letter-spacing: 0.03rem;
    line-height: 36px;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px #000;
}

#screen-time-page .hero-section .sub-text {
    font-size: 15px;
    line-height: 15px;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 0.07rem;
    font-family: var(--open-sans);
    font-weight: var(--extra-bold);
    color: #fff;
    text-shadow: 2px 2px 5px #000;
    margin: 5px auto 0;
    max-width: 330px;
}


#screen-time-page .hero-section img {
    max-width: 75px;
    margin-bottom: 15px;
}

#screen-time-page .h1 {
    font-size: 33px;
    line-height: 36px;
    text-transform: uppercase;
    font-weight: var(--extra-bold);
}

#screen-time-page .text-lg-left {
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0.07rem;
    font-weight: var(--semi-bold);
}

@media (min-width: 768px) {
    /* #screen-time-page {
         margin-top: -87px;
     }*/

    #screen-time-page .hero-section {
        padding: 50px 0;
        height: 400px;
    }

    #screen-time-page .hero-section h1,
    #screen-time-page .hero-section .sub-text {
        text-shadow: 4px 4px 10px #000;
    }

    #screen-time-page .hero-section .sub-text {
        font-size: 23px;
        line-height: 29px;
        max-width: 600px;
        margin: 20px auto 0;
    }

    #screen-time-page .hero-section img {
        max-width: 150px;
    }
}

@media (min-width: 992px) {
    #screen-time-page .h1,
    #screen-time-page .hero-section h1 {
        font-size: 59px;
        line-height: 63px;
    }

    #screen-time-page .text-lg-left {
        font-size: 31px;
        line-height: 39px;
        letter-spacing: 0.07rem;
        font-weight: var(--extra-bold);
    }
}

/* Large devices (1200px and up) */
@media (min-width: 1200px) {
    #screen-time-page .hero-section {
        height: 500px;
    }
}

@media (min-width: 1441px) {
    #screen-time-page .hero-section {
        height: 700px;
    }
}


/* SCREEN TIME INFO */
#screen-time-page .page-content {
    padding: 30px 0;
}

@media (min-width: 992px) {
    #screen-time-page .page-content {
        padding: 60px 0;
    }
}

#screen-time-page .page-content .text-sm-left {
    font-size: 23px;
    line-height: 25px;
    font-weight: var(--semi-bold);
    color: #000;
    letter-spacing: 0.03rem;
}

@media (min-width: 768px) {
    #screen-time-page .page-content .text-sm-left {
        font-size: 31px;
        letter-spacing: 0.07rem;
        line-height: 39px;
        font-weight: bold;
    }
}

#screen-time-page .page-content .info-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: var(--box-shadow);
    height: 360px;
    cursor: pointer;
}

/* info-wrapper heights based on screen */
@media (min-width: 425px) {
    #screen-time-page .page-content .info-wrapper {
        height: 395px;
    }
}
@media (min-width: 768px) {
    #screen-time-page .page-content .info-wrapper {
        height: 465px;
    }
}
@media (min-width: 992px) {
    #screen-time-page .page-content .info-wrapper {
        height: 326px;
    }
}
@media (min-width: 1200px) {
    #screen-time-page .page-content .info-wrapper {
        height: 390px;
    }
}

#screen-time-page .page-content .info-wrapper:first-child {
    margin-top: 30px;
}

#screen-time-page .page-content .info-wrapper:last-child {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    #screen-time-page .page-content .info-wrapper:first-child {
        margin-top: 50px;
    }

    #screen-time-page .page-content .info-wrapper:last-child {
        margin-bottom: 50px;
    }
}

#screen-time-page .page-content .info-wrapper .table {
    margin: 0;
}
#screen-time-page .page-content .info-wrapper .table-cell.copy {
    vertical-align: middle;
    padding: 35px;
    position: relative;
}

#screen-time-page .page-content .info-wrapper .table-cell.copy p {
    font-size: 25px;
    line-height: 33px;
    font-weight: var(--extra-bold);
    color: #000;
    letter-spacing: 0.07rem;
}

#screen-time-page .page-content .info-wrapper .table-cell.copy:before {
    content: '';
    display: block;
    width: 15px;
    height: 100%;
    background: #ccc;
    position: absolute;
    z-index: 3;
}

#screen-time-page .page-content .info-wrapper:nth-child(odd) .table-cell.copy:before {
    left: 0;
    top: 0;
}

#screen-time-page .page-content .info-wrapper:nth-child(even) .table-cell.copy:before {
    right: 0;
    top: 0;
}

#screen-time-page .page-content .info-wrapper .table-cell.copy.va-top {
    vertical-align: top;
    padding: 0;
}

#screen-time-page .page-content .info-wrapper .table-cell.copy.va-top p {
    padding: 0 35px;
}

#screen-time-page .page-content .info-wrapper .table-cell.copy.va-top .heading p {
    padding: 20px 35px;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
}
#screen-time-page .page-content .info-wrapper .table-cell.copy.va-top ul {
    margin-left: 25px;
}

#screen-time-page .page-content .info-wrapper .table-cell.copy.va-top:before {
    z-index: 0;
}

#screen-time-page .page-content .info-wrapper:nth-child(odd) .table-cell.copy.va-top:before {
    right: 0;
    left: auto;
}

#screen-time-page .page-content .info-wrapper:nth-child(even) .table-cell.copy.va-top:before {
    left: 0;
}

#screen-time-page .page-content .info-wrapper.green .table-cell:before,
#screen-time-page .page-content .info-wrapper.green .table-cell.copy .heading {
    background: var(--green);
}

#screen-time-page .page-content .info-wrapper.purple .table-cell:before,
#screen-time-page .page-content .info-wrapper.purple .table-cell.copy .heading {
    background: var(--purple);
}

#screen-time-page .page-content .info-wrapper.red .table-cell:before,
#screen-time-page .page-content .info-wrapper.red .table-cell.copy .heading {
    background: var(--red-orange);
}

#screen-time-page .page-content .info-wrapper .table-cell.copy ul {
    padding-left: 35px;
}

#screen-time-page .page-content .info-wrapper .table-cell.copy .fact p {
    margin-top: 10px;
    font-size: 45px;
    line-height: 47px;
    font-weight: var(--extra-bold);
    text-transform: uppercase;
}

#screen-time-page .page-content .info-wrapper.green .fact p,
#screen-time-page .page-content .info-wrapper.green .fact {
    color: var(--green);
}

#screen-time-page .page-content .info-wrapper.purple .fact p,
#screen-time-page .page-content .info-wrapper.purple .fact {
    color: var(--purple);
}

#screen-time-page .page-content .info-wrapper.red .fact p,
#screen-time-page .page-content .info-wrapper.red .fact {
    color: var(--red-orange);
}

#screen-time-page .page-content .info-wrapper .content-over {
    position: absolute;
    top: 0;
    z-index: 1;
    background: #fff;
    width: 100%;
    height: 100%;
    left: 0;
    transition: left 0.35s linear, top 0.35s linear;
}

#screen-time-page .page-content .mobile .info-wrapper.move .content-over {
    animation: topAnimate 0.5s both;
}

@keyframes topAnimate {
    0% {
        top: 0;
    }
    50% {
        top: 25%;
    }
    100% {
        top: 0;
    }
}

#screen-time-page .page-content .mobile .info-wrapper.active .content-over {
    top: 100%;
}

/* animate once */
#screen-time-page .page-content .info-wrapper.lg.move:nth-child(odd) .content-over {
    animation: leftAnimate 0.5s both;
}

#screen-time-page .page-content .info-wrapper.lg.move:nth-child(even) .content-over {
    animation: leftAnimateReverse 0.5s both;
}

@keyframes leftAnimate {
    0% {
        left: 0;
    }
    50% {
        left: 25%;
    }
    100% {
        left: 0;
    }
}
@keyframes leftAnimateReverse {
    0% {
        left: 0;
    }
    50% {
        left: -25%;
    }
    100% {
        left: 0;
    }
}


/* hover / click */
#screen-time-page .page-content .info-wrapper.lg.active:nth-child(odd) .content-over {
    left: 100%;
}
#screen-time-page .page-content .info-wrapper.lg.active:nth-child(even) .content-over {
    left: -100%;
}

#screen-time-page .page-content .info-wrapper .content-under {
    position: relative;
}

/* mobile */
#screen-time-page .page-content .mobile {
    max-width: 500px;
    margin: auto;
}

#screen-time-page .page-content .mobile .info-wrapper {
    font-size: 13px;
    letter-spacing: 0.07rem;
    line-height: 15px;
    font-weight: var(--extra-bold);
}

#screen-time-page .page-content .mobile .info-wrapper .content-over:before,
#screen-time-page .page-content .mobile .info-wrapper .content-under:before {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: #ccc;
    position: absolute;
    z-index: 3;
}
#screen-time-page .page-content .mobile .info-wrapper .content-under:before {
    bottom: 0;
    z-index: 0;
}

#screen-time-page .page-content .mobile .info-wrapper .heading p {
    font-size: 17px;
    padding: 12px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.07rem;
    line-height: 21px;
    font-weight: var(--extra-bold);
    text-align: inherit;
}


#screen-time-page .page-content .mobile .info-wrapper .copy {
    padding: 10px;
    max-width: 300px;
    margin: auto;
}
#screen-time-page .page-content .mobile .info-wrapper .copy p {
    font-weight: var(--extra-bold);
    text-align: inherit;
    font-size: 13px;
    line-height: 15px;
}



#screen-time-page .page-content .mobile .info-wrapper .copy .fact p {
    font-size: 25px;
    letter-spacing: 0.04rem;
    line-height: 25px;
    text-transform: uppercase;
    margin-top: 5px;
}

#screen-time-page .page-content .info-wrapper.green .content-over:before,
#screen-time-page .page-content .info-wrapper.green .content-under:before,
#screen-time-page .page-content .info-wrapper.green .heading {
    background: var(--green);
}

#screen-time-page .page-content .info-wrapper.purple .content-over:before,
#screen-time-page .page-content .info-wrapper.purple .content-under:before,
#screen-time-page .page-content .info-wrapper.purple .heading {
    background: var(--purple);
}

#screen-time-page .page-content .info-wrapper.red .content-over:before,
#screen-time-page .page-content .info-wrapper.red .content-under:before,
#screen-time-page .page-content .info-wrapper.red .heading {
    background: var(--red-orange);
}

#screen-time-page #digital-decline {
    z-index: 2;
    padding-top: 20px;
}

@media (min-width: 768px) {
    #screen-time-page #digital-decline {
        padding-top: 45px;
    }
}

#screen-time-page #digital-decline .h2 {
    font-weight: var(--extra-bold);
    font-size: 21px;
    line-height: 25px;
    color: var(--charcoal);
    letter-spacing: 0.04rem;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    #screen-time-page #digital-decline .h2 {
        font-size: 31px;
        line-height: 35px;
    }
}

#screen-time-page #digital-decline .article {
    padding: 10px 30px;
    max-width: 345px;
    width: 100%;
    margin: 10px auto;
    box-shadow: var(--box-shadow);
}

@media (min-width: 992px) {
    #screen-time-page #digital-decline .article {
        max-width: 400px;
        margin: 10px 25px;
    }

    #screen-time-page #digital-decline .h2 {
        font-size: 47px;
        line-height: 51px;
    }
}

#screen-time-page #digital-decline .article img {
    max-height: 52px;
    width: auto;
    margin: auto;
}


/******************/
/** CONTACT PAGE **/
/******************/
#contact-page {
    position: relative;
    z-index: 0;
    margin-top: 0;
    min-height: calc(100vh - (250px + 75px));
}

#contact-page .hero-section {
    padding: 25px 0;
}

#contact-page .hero-section h1 {
    font-family: var(--open-sans);
    font-size: 23px;
    font-weight: var(--extra-bold);
    text-align: center;
    letter-spacing: 0.03rem;
    line-height: 25px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    #contact-page .hero-section {
        padding: 50px 0;
    }

    #contact-page .hero-section h1 {
        font-size: 59px;
        line-height: 63px;
    }
}

#contact-page .card {
    margin-bottom: 10px;
    border-radius: 0;
    border: none;
}

@media (min-width: 768px) {
    #contact-page .card {
        margin-bottom: 20px;
    }
}


#contact-page .box-shadow {
    box-shadow: var(--box-shadow);
    padding: 0;
}

#contact-page .card .h2 {
    font-size: 17px;
    font-weight: var(--extra-bold);
    color: var(--charcoal);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.07rem;
    line-height: 17px;
    margin: 0;
    padding: 25px 0;
    cursor: pointer;
}

#contact-page .card .h2 span:before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    vertical-align: text-top;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    #contact-page .card .h2 {
        padding: 32px 0;
    }

    #contact-page .card .h2 span:before {
        width: 45px;
        height: 45px;
    }
}

#contact-page .card .h2 span.general:before {
    background-image: url('/wp-content/themes/new-theme-child/images/icons/ic_ge.svg');
}

#contact-page .card .h2 span.business:before {
    background-image: url('/wp-content/themes/new-theme-child/images/icons/ic_bo.svg');
    vertical-align: text-bottom;
}

#contact-page .card .h2 span.elite:before {
    background-image: url('/wp-content/themes/new-theme-child/images/icons/ic_es.svg');
}

@media (min-width: 768px) {
    #contact-page .card .h2 {
        font-size: 31px;
        letter-spacing: 0.07rem;
        line-height: 29px;
    }
}

#contact-page .gform_wrapper {
    padding: 0 1.25rem 1.25rem;
}

#contact-page .gform_wrapper .gform_body .gform_fields .gfield,
#contact-page .gform_wrapper .gform_body .gform_fields .gfield input[type=text],
#contact-page .gform_wrapper .gform_body .gform_fields .gfield input[type=email],
#contact-page .gform_wrapper .gform_body .gform_fields .gfield input[type=tel],
#contact-page .gform_wrapper .gform_body .gform_fields .gfield select,
#contact-page .gform_wrapper .gform_body .gform_fields .gfield textarea,
#contact-page .gform_wrapper .gform_body .gform_fields .gfield .ginput_container,
#contact-page .gform_wrapper .gform_body .ginput_container_select {
    float: none;
    margin: 0;
}

#contact-page .gform_wrapper .gform_body .gform_fields .gfield {
    width: 100%;
    margin-top: 10px;
}

#contact-page .gform_wrapper .gform_body .gform_fields .gfield label {
    display: none;
    font-size: 19px;
    color: var(--cadet-grey);
    letter-spacing: 0.07rem;
    line-height: 29px;
}

#contact-page .gform_wrapper .gform_body .gform_fields .gfield input[type=text],
#contact-page .gform_wrapper .gform_body .gform_fields .gfield input[type=email],
#contact-page .gform_wrapper .gform_body .gform_fields .gfield input[type=tel],
#contact-page .gform_wrapper .gform_body .gform_fields .gfield select,
#contact-page .gform_wrapper .gform_body .gform_fields .gfield textarea {
    border: 1px solid var(--cadet-grey);
    background-color: #edf0f5;
    border-radius: 0;
    margin-top: 5px;
    height: 35px;
}
#contact-page .gform_wrapper .gform_body .gform_fields .gfield textarea {
    height: auto;
}

@media (min-width:768px) {
    #contact-page .gform_wrapper .gform_body .gform_fields .gfield input[type=text],
    #contact-page .gform_wrapper .gform_body .gform_fields .gfield input[type=email],
    #contact-page .gform_wrapper .gform_body .gform_fields .gfield input[type=tel],
    #contact-page .gform_wrapper .gform_body .gform_fields .gfield select,
    #contact-page .gform_wrapper .gform_body .gform_fields .gfield textarea {
        border: 1px solid var(--cadet-grey);
        background-color: #edf0f5;
        border-radius: 0;
        margin-top: 5px;
        height: 60px;
    }
    #contact-page .gform_wrapper .gform_body .gform_fields .gfield textarea {
        height: auto;
    }
}


#contact-page .form-wrapper {
    /*height: 0;*/
    overflow: hidden;
    transition: height 1s linear;
}

#contact-page .form-wrapper.open {
    height: 100%;
}

#contact-page .gform_footer {
    text-align: center;
}

#contact-page .gform_footer .gform_button {
    background: var(--french-rose);
    padding: 5px 20px;
    width: 150px;
    height: auto;
    line-height: 1;
    border: 4px solid var(--french-rose);
    color: #fff;
    float: none;
    margin: 10px auto 0;
    border-radius: 0;
    letter-spacing: 0.1rem;
}

@media (min-width:768px) {

    #contact-page {
        margin-top: 0;
    }

    #contact-page .gform_footer {
        text-align: right;
    }

    #contact-page .gform_footer .gform_button {
        padding: 20px 20px;
        width: 345px;
        font-size: 21px;
        line-height: 30px;
    }

}

/* PARENT THEME OVERRIDE */
div.main-header.mobifixedTop.fixedTop {
    box-shadow: none;
    height: 87px;
    top: -87px;
}

.news-page .bg-white {
    margin-top: 0;
    background: #fff !important;
}
.news-page .news-top-content .read-btns
.news-nav .selectric .label {
    border-radius: 0;
}

.header-section .left-graphics,
.header-section .right-content {
    margin-top: 70px;
}

#footer-top-section,
.news-page .bg-pattern {
    display: none;
}


/******************/
/***** MODALS *****/
/******************/
.modal {

}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 960px;
    }
}

.modal .modal-header {
    border: none;
    padding: 50px 1rem 30px;
}

.modal .modal-header .close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-weight: normal;
    font-size: 60px;
    line-height: 35px;
    color: #dce0e5;
    transition: color 0.35s ease-out;
}

.modal .modal-header .close:hover {
    color: var(--cadet-grey);
}

.modal .modal-title {
    font-size: 59px;
    line-height: 63px;
    font-weight: var(--extra-bold);
    color: #000;
    text-align: center;
    text-transform: uppercase;
    border: none;
    letter-spacing: 0.03rem;
    width: 100%;
}



.modal .modal-content {
    border-radius: 0;
    border: none;
    background: #fff;
}

.modal .modal-content .modal-body {
    padding: 0 1rem;
}


.modal .form-check {
    padding: 0;
    margin-bottom: 10px;
}

.modal label {
    color: var(--cadet-grey);
    text-transform: uppercase;
    font-size: 19px;
    line-height: 29px;
    letter-spacing: 0.07rem;
}

.modal .form-check label {
    display: block;
    padding: 25px;
    border: 5px solid #fff;
    background: #fff;
    box-shadow: var(--box-shadow);
}

.modal .form-check label p {
    color: var(--cadet-grey);
    text-transform: uppercase;
    font-size: 29px;
    line-height: 29px;
    font-weight: var(--extra-bold);
    letter-spacing: 0.07rem;
}

.modal .form-check label p.email {
    font-size: 27px;
    line-height: 27px;
    font-weight: normal;
    text-transform: none;
    margin-top: 10px;
}

.modal .form-check-input:checked + label {
    box-shadow: var(--box-shadow);
    border-color: #47e4c2;
}

.modal .form-check-input:checked + label p {
    color: #000;
}

.modal .form-check.new label p {
    color: var(--purple);
}

.modal .form-check.new .form-check-input:checked + label {
    box-shadow: var(--box-shadow);
    border-color: var(--purple);
}

.modal .form-check.new .form-check-input:checked + label p {
    color: var(--purple);
}


.modal .modal-footer {
    justify-content: center;
    border: none;
    padding-bottom: 30px;
}

.modal .modal-footer .btn {
    width: 45%;
    margin-right: 10%;
    text-transform: uppercase;
    font-size: 21px;
    line-height: 30px;
    padding: 15px;
    letter-spacing: 0.01rem;
    font-weight: var(--extra-bold);
}

.modal .modal-footer .btn:last-child {
    margin: 0;
}

.modal .modal-footer .btn.btn-primary {
    color: #fff;
    background: var(--french-rose);
    border: 6px solid var(--french-rose);
}

.modal .modal-footer .btn.btn-secondary {
    color: var(--french-rose);
    background: #fff;
    border: 6px solid var(--french-rose);
}

.modal#modalUserAdvancedCookie .modal-footer {
    justify-content: space-between;
}



.modal#modalUserAdvancedCookie .modal-footer .stars {
    display: inline-flex;
    width: 45%;
    justify-content: space-between;
    font-size: 19px;
    line-height: 29px;
    color: var(--yellow-orange);
    letter-spacing: 0.07rem;
    font-weight: var(--extra-bold);
    text-transform: uppercase;
}

.modal#modalUserAdvancedCookie .modal-footer .stars .fa-star {
    color: var(--rgba-yellow-orange-alpha);
}

.modal#modalUserAdvancedCookie .modal-footer .stars .rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

/*hides the radio buttons*/
.modal#modalUserAdvancedCookie .modal-footer .stars .rating > input{
    display:none;
}

/*style the empty stars, sets position:relative as base for pseudo-elements*/
.modal#modalUserAdvancedCookie .modal-footer .stars .rating > label {
    position: relative;
    width: 30px;
    font-size: 20px;
    color: var(--yellow-orange);
    cursor: pointer;
}

/* sets filled star pseudo-elements */
.modal#modalUserAdvancedCookie .modal-footer .stars .rating > label::before{
    content: "\f005";
    font-family: FontAwesome;
    position: absolute;
    opacity: 0;
}
/*overlays a filled start character to the hovered element and all previous siblings*/
.modal#modalUserAdvancedCookie .modal-footer .stars .rating > label:hover:before,
.modal#modalUserAdvancedCookie .modal-footer .stars .rating > label:hover ~ label:before {
    opacity: 1 !important;
}

/*overlays a filled start character on the selected element and all previous siblings*/
.modal#modalUserAdvancedCookie .modal-footer .stars .rating > input:checked ~ label:before {
    opacity: 1;
}

/*when an element is selected and pointer re-enters the rating container, selected rate and siblings get semi transparent, as reminder of current selection*/
.modal#modalUserAdvancedCookie .modal-footer .stars .rating:hover > input:checked ~ label:before {
    opacity: 0.4;
}


/* MODAL MOBILE */
.modal#modalMobile {
    max-width: 80%;
    margin: auto;
}

.modal#modalMobile .modal-header {
    padding-top: 30px;
    padding-bottom: 15px;
}

.modal#modalMobile .modal-title {
    font-size: 15px;
    line-height: 19px;
    font-weight: var(--extra-bold);
    color: #000000;
    text-align: center;
    letter-spacing: 0.07rem;
}

.modal#modalMobile .modal-body p {
    font-size: 15px;
    line-height: 19px;
    color: #000000;
    text-align: center;
    letter-spacing: 0.07rem;
}

.modal#modalMobile .modal-footer .btn {
    width: 80%;
}

/* MODAL TABLET PRORTAIT */
.modal#modalTabletPortrait .modal-dialog-centered {
    max-width: 600px;
}

.modal#modalTabletPortrait .modal-title {
    font-size: 49px;
    line-height: 53px;
    font-weight: var(--extra-bold);
    color: #000000;
    text-align: center;
    letter-spacing: 0.03rem;
}

.modal#modalTabletPortrait .modal-body p {
    font-size: 25px;
    line-height: 31px;
    color: #000000;
    text-align: center;
    letter-spacing: 0.07rem;
}

.modal#modalTabletPortrait .modal-footer .btn {
    width: 80%;
}

.modal#modalPaidUser .modal-body p {
    font-size: 25px;
    line-height: 31px;
    color: #000000;
    text-align: center;
    letter-spacing: 0.07rem;
    margin-bottom: 25px;
}

#hero-section li[innerHtml="8"]{
    display: none;
}
/*
#hero-section #cat option[value=8]{
    display: none;
}

#hero-section #cat option[value=9]{
    display: none;
}
#hero-section #cat option[value=10]{
    display: none;
}
#hero-section #cat option[value=11]{
    display: none;
}

#hero-section #cat option[value=12]{
    display: none;
}

#hero-section #cat option[value=15]{
    display: none;
}

#hero-section #cat option[value=13]{
    display: none;
}

#hero-section #cat option[value=14]{
    display: none;
}
*/
