*{
    margin: 0;
    background-repeat: no-repeat;
    font-weight: 400;
    font-family: 'Calibri';
    font-style: normal;
    font-size: 15px;
    line-height: 1.2;
    color: #1C1C1A;
    box-sizing: border-box;
}
*:after, *:before{
    background-repeat: no-repeat;
}

@keyframes bounce {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes fade {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}
body{
    overflow-x: hidden;
    position: relative;
}
.zincode{
    font-size: 15px;
    position: absolute;
    writing-mode: vertical-lr;
    transform: rotate(-180deg);
    color: #1D3632;
    z-index: 2;
    top: 0;
    bottom: 40px;
    right: 5px;
}

input, input:focus{
    -webkit-appearance: none;
    border: 0;
    outline: none;
}
a, a:hover{
    text-decoration: none;
}
i{
    font-style: italic !important;
}

b, strong, .font-weight-bold, .font-weight-bold *, b *{
    font-weight: 700 !important;
}
b, strong, span, i{
    color: inherit;
    font-size: inherit;
}
.font-weight-medium{
    font-weight: 500;
}
button, button:focus{
    user-select: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    cursor: pointer;
}
.pointer{
    cursor: pointer !important;
}
sup{
    color: inherit;
}
.bg-white{
    background-color: #FFF;
}
.text-white, .text-white *{
    color: #FFF !important;
}
.text-cyano{
    color: #0098A5;
}
.text-psa-light{
    color: #00576C !important;
}
.gradient-psa {
    background: #0098a5; /* Old browsers */
    background: -moz-linear-gradient(top,  #0098a5 0%, #005b71 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #0098a5 0%,#005b71 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #0098a5 0%,#005b71 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.text-grey{
    color: #7E726E;
}

body{
    position: relative;
    width: 1920px;
    height: 1080px;
}
.font-size-20{
    font-size: 20px;
}
.font-size-25{
    font-size: 25px;
}
.font-size-28{
    font-size: 28px;
}
.font-size-30{
    font-size: 30px;
}
.font-size-40{
    font-size: 40px;
}
.position-relative{
    position: relative;
}
.standard-section{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 18px;
    background-color: #FFF;
    z-index: 1;
    background-size: cover;
    background-position: center;
}
.standard-section.popup-summary{
    background-color: transparent;
}
.standard-section.bordered-top:before{
    content: "";
    display: block;
    left: 0;
    top: 0;
    right: 0;
    height: 18px;
    position: absolute;
    background: #005b71; /* Old browsers */
    background: -moz-linear-gradient(left,  #005b71 0%, #0098a5 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #005b71 0%,#0098a5 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #005b71 0%,#0098a5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.h-100{
    height: 100%;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.img-fluid{
    max-width: 100%;
    height: auto;
}
.hidden-default{
    display: none;
}
.btn-next-slide{
    position: absolute;
    right: 55px;
    bottom: 30px;
    background-image: url("../img/next-slide-btn.png");
    background-size: contain;
    background-position: right center;
    padding-right: 110px;
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 1;
    font-size: 28px;
    font-weight: bold;
    text-align: right;
}
.btn-next-slide:not(.inactive){
    animation: bounce 1.5s 3 ease-in-out;
}
.btn-next-slide.small{
    line-height: 56px;
}
.btn-next-slide.inactive{
    opacity: 0.4;
}
.btn-next-slide.inactive.shake{
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}
.select-btn, .select-btn:focus, .learn-treatment-response, .btn-alert, .btn-alert:focus{
    border: 4px solid #005b71;
    color: #005b71;
    background-color: #FFF;
    transition: all .2s ease-in-out;
    font-size: 40px;
    font-weight: bold;
    width: 100%;
    display: block;
    padding: 20px;
    outline: 0;
    border-radius: 15px;
}
.select-btn.treatment-response{
    max-width: 80%;
    margin: auto;
}
.select-btn.treatment-response-yes-no{
    max-width: 100%;
    padding: 15px 80px;
    width: auto;
    margin: auto;
}
.select-col p{
    color: #7E726E;
    transition: all .2s ease-in-out;
}
.text-select-col.two-row{
    min-height: 90px;
}
.text-select-col.two-row-summary{
    min-height: 42px;
}
.text-select-col.three-row {
    min-height: 108px;
}
.text-select-col.five-row {
    min-height: 150px;
}
.select-col.border-right, .border-right{
    border-right: 2px solid rgba(0, 91, 113, 0.3);
}
.select-col.selected, .select-col.selected .select-btn, .select-btn-psa.selected .select-btn{
    color: #FFF;
}
.col-24 {
    flex: 0 0 auto;
    width: 20%;
}
#evaluate-control-3 .col-24, #evaluate-severity-3 .col-24, #checklist-3 .col-24 {
    width: 18%;
}
.correct{
    background: -moz-linear-gradient(bottom,  rgba(0, 152, 165,0.05) 0%, rgba(0, 152, 165,0.20) 100%);
    background: -webkit-linear-gradient(bottom,  rgba(0, 152, 165,0.05) 0%,rgba(0, 152, 165,0.20) 100%);
    background: linear-gradient(to top,  rgba(0, 152, 165,0.05) 0%,rgba(0, 152, 165,0.20) 100%);
}

.mb-6{
    margin-bottom: 60px !important;
}
.col-35{
    flex: 0 0 auto;
    width: 32.7%;
}
.col-65{
    flex: 0 0 auto;
    width: 53%;
}
.visibility-hidden {
    visibility: hidden;
}
.info-img{
    max-height: 165px;
    width: auto;
}
.info-btn {
    cursor: pointer;
}
.border-radius {
    border-radius: 15px;
}
.btn-popup{
    position: absolute;
    width: 45px;
    height: 45px;
}
.close-popup{
    position: absolute;
    width: 45px;
    height: 45px;
    z-index: 2;
}
#evaluate-control-3 .select-btn, #evaluate-severity-3 .select-btn, #checklist-3 .select-btn {
    cursor: auto;
}
.select-col.selected .select-btn, .select-btn-psa.selected .select-btn{
    background: #005B71;
}
.popup-section {
    position: absolute;
    top: 2px;
    left: 0;
    width: 1920px;
    height: 1080px;
    z-index: 1;
}

.interactive-box{
    top: 213px;
    left: 509px;
    position: relative;
    width: 1344px;
}

.interactive-box p{
    font-weight: bold;
}

#evaluate-control-3 .text-select-col.two-row, #is-asthma-3 .text-select-col.two-row {
    min-height: 70px;
}

/*
#####################################
#################HOME ##############
#####################################
*/
#home-section{
    background-image: url("../img/home-section.png");
}
#home-section .home-btn{
    visibility: hidden;
}

#img-container {
    margin-left: 977px;
    margin-top: 220px;
}

#home-label {
    max-width: 80%;
    height: auto;
    margin-bottom: 94px;
}

.btn-hp-start > img {
    max-width: 80%;
    height: auto;
    cursor: pointer;
}
.pt-6{
    padding-top: 70px;
}
/*
#####################################
#################MENU ##############
#####################################
*/
.btn-menu{
    background-color: rgba(0, 152, 165, 0.50);
    transition: all .2s ease-in-out;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 55px 25px;
    cursor: default;
    border-bottom: 5px;
}
.btn-menu span{
    color: white;
    background-image: url("../img/locker-close.png");
    background-size: 17px auto;
    background-position: 0 calc(50% - 2px);
    padding-left: 30px;
    font-size: 23px;
    line-height: 1.1;
}

.btn-menu.completed{
    background-color: #0098A5;
    cursor: pointer;
}
.btn-menu.completed span{
    background-image: url("../img/locker-open.png");
    color: #FFF;
    font-weight: bold;
}
.btn-menu.active{
    background-color: #005B71;
}
.btn-menu.active span{
    background-image: url("../img/locker-open.png");
    color: #FFF;
    font-weight: bold;
}
.main-menu {
    margin-left: 454px;
    padding-right: 250px;
    flex: 0 0 auto;
    width: 66%;
}

.main-menu > div {
    box-shadow: 3px 3px 20px 1px grey;
}


/*
#####################################
#################MEET ##############
#####################################
*/

#meet-1{
    background-image: url("../img/slides/meet-1.png");
}
.shadow-box{
    box-shadow: 0px 9px 19px rgba(0, 0, 0, 0.22);
    padding: 60px 80px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    transition: all .2s ease-in-out;
}
.select-btn-psa.selected .shadow-box{
    box-shadow: 0px 11px 22px rgba(0, 0, 0, 0.6);
}

/*
#####################################
#################EVALUATE CONTROL ##############
#####################################
*/
#evaluate-control-1{
    background-image: url("../img/slides/evaluate-control-1.png");
}
#evaluate-control-2{
    background-image: url("../img/slides/evaluate-control-2.png");
}
#evaluate-control-3{
    background-image: url("../img/slides/evaluate-control-3.png");
}
#evaluate-control-1 .interactive-box, #evaluate-control-3 .interactive-box {
    top: 293px;
    left: 0;
    margin-right: 80px;
    width: auto;
}
.treatment-img{
    max-height: 125px;
    width: auto;
}
#popup-evaluate-control-3-1{
    background-image: url("../img/popup/popup-evaluate-control-3_1.png");
}
#popup-evaluate-control-3-2{
    background-image: url("../img/popup/popup-evaluate-control-3_2.png");
}
#popup-evaluate-control-3-3{
    background-image: url("../img/popup/popup-evaluate-control-3_3.png");
}
#popup-evaluate-control-3-4{
    background-image: url("../img/popup/popup-evaluate-control-3_4.png");
}
.close-popup[popupid="popup-evaluate-control-3-1"]{
    top: 384px;
    right: 286px;
}
.close-popup[popupid="popup-evaluate-control-3-2"]{
    top: 384px;
    right: 318px;
}
.close-popup[popupid="popup-evaluate-control-3-3"]{
    top: 384px;
    right: 318px;
}
.close-popup[popupid="popup-evaluate-control-3-4"]{
    top: 385px;
    right: 318px;
}
#evaluate-control-1 .select-btn, #evaluate-control-3 .select-btn {
    font-size: 35px;
    padding: 10px;
}

/*
#####################################
#################IS ASTHMA ##############
#####################################
*/
#is-asthma-1{
    background-image: url("../img/slides/is-asthma-1.png");
}
#is-asthma-2{
    background-image: url("../img/slides/is-asthma-2.png");
}
#is-asthma-3{
    background-image: url("../img/slides/is-asthma-3.png");
}
#popup-is-asthma-3-1{
    background-image: url("../img/popup/popup-is-asthma-3_1.png");
}
#popup-is-asthma-3-2{
    background-image: url("../img/popup/popup-is-asthma-3_2.png");
}
#popup-is-asthma-3-3{
    background-image: url("../img/popup/popup-is-asthma-3_3.png");
}
#popup-is-asthma-3-4{
    background-image: url("../img/popup/popup-is-asthma-3_4.png");
}
.close-popup[popupid="popup-is-asthma-3-1"]{
    top: 324px;
    right: 318px;
}
.close-popup[popupid="popup-is-asthma-3-2"]{
    top: 324px;
    right: 318px;
}
.close-popup[popupid="popup-is-asthma-3-3"]{
    top: 324px;
    right: 318px;
}
.close-popup[popupid="popup-is-asthma-3-4"]{
    top: 326px;
    right: 318px;
}
#is-asthma-1 .interactive-box, #is-asthma-3 .interactive-box {
    top: 560px;
    left: 600px;
}
#is-asthma-1 .select-btn, #is-asthma-3 .select-btn {
    font-size: 35px;
    padding: 10px;
}

/*
#####################################
#################SUMMARY ##############
#####################################
*/
#summary-1{
    background-image: url("../img/slides/summary-1.png");
}
#summary-2 {
    background-image: url("../img/slides/summary-2.png");
}
.return-home{
    position: absolute;
    right: 55px;
    bottom: 30px;
    background-image: url("../img/start-over-btn.png");
    background-size: contain;
    background-position: right center;
    padding-right: 110px;
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 1;
    font-size: 28px;
    font-weight: bold;
    text-align: right;
}
.return-home.small{
    line-height: 56px;
}

/*
#####################################
#################FOOTER ##############
#####################################
*/
.footer-btns{
    position: fixed;
    left: 30px;
    bottom: 10px;
    z-index: 1;
    min-height: 110px;
}
.home-btn, .resources-btn, .back-btn{
    background-position: top center;
    background-size: contain;
    padding-top: 78px;
    width: 75px;
    text-align: center;
    color: #FFF;
    display: block;
}
.back-btn{
    background-image: url("../img/back-btn.png");
    background-size: 50px auto;
    background-position: 50% 10px;
}
.home-btn{
    background-image: url("../img/home-btn.png");
}
.resources-btn{
    background-image: url("../img/resources-btn.png");
}
.resources-btn.active{
    background-image: url("../img/resources-btn-active.png");
    font-weight: bold;
}


/*
#####################################
#################RESOURCE ##############
#####################################
*/
#resource-1 {
    background-image: url("../img/slides/resource-1.png");
}
#resource-2 {
    background-image: url("../img/slides/resource-2.png");
}
#resource-3 {
    background-image: url("../img/slides/resource-3.png");
}
#resource-4 {
    background-image: url("../img/slides/resource-4.png");
}
.btn-next-resources {
    position: absolute;
    top: 56px;
    width: 250px;
    height: 78px;
}
.btn-next-resources[popupid="resource-1"] {
    left: 500px;
}
.btn-next-resources[popupid="resource-2"] {
    left: 752px;
}
.btn-next-resources[popupid="resource-3"] {
    left: 1004px;
}
.btn-next-resources[popupid="resource-4"] {
    left: 1259px;
}
.back-to-profile {
    position: absolute;
    right: 55px;
    top: 45px;
    background-image: url(../img/start-over-btn.png);
    background-size: contain;
    background-position: right center;
    padding-right: 70px;
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 1;
    font-size: 20px;
    font-weight: bold;
    text-align: right;
}
/*
#####################################
#################ALERT ##############
#####################################
*/
.outer-alert{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.85);
    display: none;
    z-index: 99;
    max-width: 1920px;
}
.outer-alert.criteria{
    background-color: transparent;
    left: 300px;
    top: 150px;
}
.outer-alert.diagnosis{
    background-color: transparent;
    left: 0;
    bottom: 0;
}
.inner-alert{
    position: relative;
    width: 90%;
    max-width: 1100px;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFF;
    border: 15px solid #005b71;
    padding: 40px 100px 40px 40px;
}

video::-webkit-media-controls-volume-slider {
    display: none;
}

video::-webkit-media-controls-mute-button {
    display: none;
}

video::-webkit-media-controls-fullscreen-button {
    display: none;
}