j/* Box sizing rules */

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* Remove default padding */

ul[class],
ol[class] {
    padding: 0;
}


/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}


/* Set core body defaults */

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    scroll-behavior: smooth;
}


/* Remove list styles on ul, ol elements with a class attribute */

ul[class],
ol[class] {
    list-style: none;
}


/* A elements that don't have a class get default styles */

a:not([class]) {
    text-decoration-skip-ink: auto;
}

a,
a:hover {
    text-decoration: none !important;
}


/* Make images easier to work with */

img {
    max-width: 100%;
    display: block;
}


/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
    font: inherit;
}


/* Remove all animations and transitions for people that prefer not to see them */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

html {
    -webkit-scroll-snap-type: y proximity;
    scroll-snap-type: y proximity;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Gotham Condensed Book', sans-serif;
    font-weight: 300;
    font-size: var(--text-ml);
    line-height: 1.2;
    color: #212529;
}

@font-face {
    font-family: 'Gotham';
    src: url('../assets/fonts/Gotham-Light.woff2') format('woff2'), url('../assets/fonts/Gotham-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Bold';
    src: url('../assets/fonts/Gotham-Bold.woff2') format('woff2'), url('../assets/fonts/Gotham-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Book';
    src: url('../assets/fonts/Gotham-Book.woff2') format('woff2'), url('../assets/fonts/Gotham-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Book Italic';
    src: url('../assets/fonts/Gotham-BookItalic.woff2') format('woff2'), url('../assets/fonts/Gotham-BookItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham Condensed Book';
    src: url('../assets/fonts/GothamCondensed-Book.woff2') format('woff2'), url('../assets/fonts/GothamCondensed-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Condensed Bold';
    src: url('../assets/fonts/GothamCondensed-Bold.woff2') format('woff2'), url('../assets/fonts/GothamCondensed-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'OCR A Std';
    src: url('../assets/fonts/OCRAStd.woff2') format('woff2'), url('../assets/fonts/OCRAStd.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}



/* VARIABLES GLOBALES */

:root {
    --lightblue: #00B6DE;
    --black: #000;
    --text-xs: 1rem;
    --text-s: 1.2rem;
    --text-m: 1.4rem;
    --text-ml: 1.6rem;
    --text-l: 1.8rem;
    --text-xl: 2rem;
    --text-xxl: 2.5rem;
    --font-ocr: 'OCR A Std', monospace;
    --font-bold: 'Gotham Condensed Bold', sans-serif;
    --font-condensed: 'Gotham Condensed Book', sans-serif;
    --font-gotham: 'Gotham Book', sans-serif;
}


.text-ocra {
    font-family: 'OCR A Std', monospace;
}

.text-gotham {
    font-family: var(--font-gotham);
}

strong {
  font-family: var(--font-bold);

}

.text-xxl {
    font-size: var(--text-xxl);
}

h1 {
    font-size: var(--text-xxl);
    text-transform: uppercase;
    color: #FFFFFF;
}
#overlay-container {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999999999;
    cursor: pointer;
    transition: opacity 0.4s ease;
    opacity: 1;
}

#overlay-container.fade-out {
    display: none !important;
}

.overlay {
    background-color: #fff;
    margin: 50vh auto 0;
    transform: translateY(-50%);
    max-width: 700px;
}

.not-supported {
    display: none; 
    position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    color: #fff;
    text-align: center;
    background-color: #000;
}


.container-fluid {
    max-width: 1200px;
}

.text-white {
    color: #fff;
}

.text-black {
    color: #000;
}

.text-blue {
    color: #00B6DE;
}

.text-xs {
    font-size: var(--text-xs);
}

.text-small,
.text-s {
    font-size: var(--text-s);
}

.text-m {
    font-size: var(--text-m);
}
.text-ml {
    font-size: var(--text-ml);
}

.text-l {
    font-size: var(--text-l);
}
.text-xl {
    font-size: var(--text-xl);
}
.text-xxl {
    font-size: var(--text-xxl);
}

.bg-black {
    background-color: #000;
}

.bg-blue {
    background-color: #00B6DE;
}

.bg-white {
    background-color: #fff;
}

button,
.btn {
    border-radius: 0 !important;
    font-family: 'OCR A Std', monospace;
    padding: 10px 48px 6px 48px;
    font-size: 1.4rem;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    white-space: normal;
}

button.bg-blue {
    color: #fff;
    -moz-box-shadow: 0px 0px 0px 2px #00B6DE;
    -webkit-box-shadow: 0px 0px 0px 2px #00B6DE;
    box-shadow: 0px 0px 0px 2px #00B6DE;
}

button.bg-blue:hover {
    background-color: #fff;
    color: #00B6DE !important;
    -moz-box-shadow: 0px 0px 0px 2px #000;
    -webkit-box-shadow: 0px 0px 0px 2px #000;
    box-shadow: 0px 0px 0px 2px #000;
}

button.bg-white {
    color: #00B6DE;
    -moz-box-shadow: 0px 0px 0px 2px #fff;
    -webkit-box-shadow: 0px 0px 0px 2px #fff;
    box-shadow: 0px 0px 0px 2px #fff;
}

button.bg-white:hover {
    background-color: #000 !important;
    color: #00B6DE !important;
    -moz-box-shadow: 0px 0px 0px 2px #000;
    -webkit-box-shadow: 0px 0px 0px 2px #000;
    box-shadow: 0px 0px 0px 2px #000;
}

button.cta-test {
    font-size: 2rem;
    min-width: 300px;
    animation: pulse 3s infinite;
    margin-left: auto;
    margin-right: auto;
}

p strong {
    font-family: 'Manrope', sans-serif;
}

#cookies-container {
    background-color: #000;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
}

#cookie-message {
    min-height: inherit;
    z-index: 4000;
    height: auto;
    padding-top: .25rem;
    padding-bottom: .25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#cookies-container .container-fluid {
    max-width: 1200px;
}

#cookies-container .buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#cookies-container .btn {
    font-size: 1rem;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
    padding-top: 10px;
}

header .container.header-logos,
#meaning header .container.header-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.lang {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.8rem;
    color: #000;
    margin: 0;
}

.lang a {
    color: #000;
}

.header-logos img {
    max-height: 70px;
    max-width: 150px;
}

.header-logos .az-logo {
    margin-left: 25px;
}

section {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    min-height: calc(100vh + .1px);
    position: relative;
    padding-bottom: 100px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



section .section-button {
    position: absolute;
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 5;
}

section#watchthevideo .section-button,
section#takethetest .section-button {
    align-items: center
}

.new-cta {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    margin-top: 0.5rem;
}

.new-cta p {
    line-height: 1 !important;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.new-cta img {
    max-height: 45px;
}

.hulihealth,
section.content.hulihealth,
.new-cta.cliniweb,
.cliniweb {
    display: none;
}


.hulihealth,
.cliniweb  {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}


section#intro-main {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: center;
    padding-top: 50px;
    background-image: url(../assets/images/desktop/results-background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#intro-main p {
    font-family: var(--font-bold);
}

#intro-main .heroes {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

#learnmore .box {
    background-color: var(--lightblue);
    position: relative;
    color: #fff;
    padding: 1rem;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
}
#learnmore .box:before {
    content: "";
position: absolute;
top: 5px;
left: 5px;
width: 100%;
height: 100%;
background-color: #000;
z-index: -1;}

#learnmore .box img {
    max-height: 75px;
    margin-bottom: .75rem;
}


#answers section .section-button {
    align-items: center;
}
section#meaning {
    background-image: url(../assets/images/desktop/results-background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#answers section#meaning .section-button {
    align-items: flex-start;
}

section .section-button button {
    font-size: 1.4rem;
}

section .section-button.no-button button {
    padding: 0;
    height: 0;
    width: 0;
    background: none;
    color: rgba(255, 255, 255, 0);
}

section .section-button button:after {
    position: absolute;
    content: "";
    background-image: url(../assets/images/desktop/Scroll-Down-Arrow-Desktop-Blue.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 35px;
    left: calc(50% - 25px);
    height: 60px;
    width: 50px;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-name: bounce;
    -moz-animation-name: bounce;
}

section#symptoms .section-button button:after,
section#signs .section-button button:after {
    background-image: url(../assets/images/desktop/Scroll-Down-Arrow-Desktop-White.svg);
}

section .section-button.no-button button:after {
    top: 0;
}

section .content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: calc(100% - 100px);
}

section .content .container {
    height: 100%;

   }

img.action {
    max-height: 120px;
    margin-top: 20px;
    animation: shake 0.95s cubic-bezier(.36, .07, .19, .97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    animation-iteration-count: infinite;
    perspective: 1000px;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 1px, 0);
    }

    20%,
    80% {
        transform: translate3d(1px, -1px, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-1px, 1px, 0);
    }

    40%,
    60% {
        transform: translate3d(1px, -1px, 0);
    }
}

@keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    60% {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px)
    }
}


@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(52, 172, 224, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(52, 172, 224, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(52, 172, 224, 0);
    }
}







section#learnmore:before {
    content: "";
    position: absolute;
    top: -1.9rem;
    left: 0;
    width: 100%;
    height: 2rem;
    background-image: url(../assets/images/desktop/white-triangle-top.svg);
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}



#modalVideo video {
    max-width: 100%;
}

#modalVideo .modal-dialog {
    width: 950px;
    max-width: 100%;
}

#modalVideo .modal-content {
    background-color: rgba(0, 0, 0, 0);
    border: none;
}

#modalVideo .close {
    opacity: 1;
}

#modalVideo .close span {
    font-size: 4rem;
    color: #fff;
    text-shadow: none;
}


/* TAKE THE TEST */

#start-container {
    top: 0;
    z-index: 10;
    height: auto;
    width: 100%;
    padding-top: 1rem;
}

#start-container button:hover {
    background-color: #000;
    color: #fff;
}

#question-container {
    display: none;
}

section#takethetest {
    background-color: #00B6DE;
    padding-bottom: 150px;
    position: relative;

    scroll-snap-align: none;
    scroll-snap-stop: unset;
}

section#takethetest.scroll-snap {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

section#takethetest:before {
    content: "";
    position: absolute;
    top: 0rem;
    left: 0;
    width: 100%;
    height: 2rem;
    background-image: url(../assets/images/desktop/blue-black-triangle-top.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
}

section#takethetest:after {
    content: "";
    position: absolute;
    bottom: -0.1rem;
    left: 0;
    width: 100%;
    height: 2rem;
    background-image: url(../assets/images/desktop/BLK-triangle-top.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

section#takethetest .section-button {
    bottom: 2.4rem;
}

#takethetest .content {
    position: relative;
}

#takethetest .content .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#takethetest .content .top,
#takethetest .content .center,
#takethetest .content .bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#takethetest .content .top h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

#takethetest .content .top p {
  
}

#takethetest .content .bottom p {
    font-size: 1.3rem;
    line-height: 1.2;
    font-family: 'Gotham Condensed Book', sans-serif;

}

.test-wrapper {
    background-color: #fff;
    padding: 2rem;
}

#takethetest #test-progress {

    width: 100%;
    margin-bottom: 2rem;
    position: relative;
}

#takethetest #test-progress:before {
    position: relative;
    font-family: 'Gotham Condensed Bold', sans-serif;
    content: "0% COMPLETADO";
    font-size: 1.2rem;
    text-align: center;
    left: 45%;
    color: rgba(191, 191, 191);
}

.bar2 {
    background-color: #000;
    width: 100%;
    height: 10px;
    padding: 0px;
    border-radius: 15px;
    
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.bar2 .fill {
    background-color: #000;
    width: 0%;
    height: 100%;
    border-radius: 25px;
    opacity: 1;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}



.step-1 .bar2 .fill {
    width: 20%;
    background-color: none;
    opacity: 1;
  background-color: var(--lightblue);
}

.step-2 .bar2 .fill {
    width: 40%;
}

.step-3 .bar2 .fill {
    width: 60%;
}

.step-4 .bar2 .fill {
    width: 80%;
}

.step-5 .bar2 .fill {
    width: 100%;
}

#takethetest #test-progress.step-1:before {
    content: "20% COMPLETADO";
   
}

#takethetest #test-progress.step-2:before {
    content: "40% COMPLETADO";

}

#takethetest #test-progress.step-3:before {
    content: "60% COMPLETADO";

}

#takethetest #test-progress.step-4:before {
    content: "80% COMPLETADO";
  
}

#takethetest #test-progress.step-5:before {
    content: "100% COMPLETADO - CARGANDO RESULTADO...";
  
}

#takethetest .quiz-statement {
    font-size: 1.8rem;
    line-height: 1.2;
    text-align: center;
    margin: 0;
    font-family: 'Gotham Condensed Bold', sans-serif;
}

#takethetest .btn-quiz {
    background-color: var(--lightblue);
    color: #fff;
    -moz-box-shadow: 0px 0px 0px 2px #000;
    -webkit-box-shadow: 0px 0px 0px 2px #000;
    box-shadow: 0px 0px 0px 2px #000;
}



#takethetest .content .bottom p strong {
    font-family: 'Gotham Condensed Bold', sans-serif;
}

section#takethetest .section-button button {
    background-color: #000;
    color: #fff;
    -moz-box-shadow: 0px 0px 0px 2px #000;
    -webkit-box-shadow: 0px 0px 0px 2px #000;
    box-shadow: 0px 0px 0px 2px #000;
}

section#takethetest .section-button button:hover {
    background-color: #fff;
    color: #00B6DE;
    -moz-box-shadow: 0px 0px 0px 2px #fff;
    -webkit-box-shadow: 0px 0px 0px 2px #fff;
    box-shadow: 0px 0px 0px 2px #fff;
}

section#takethetest .section-button button:after {
    background-image: url(../assets/images/desktop/Scroll-Down-Arrow-Desktop-White.png);
}

section#takethetest .section-button button:hover:after {
    background-image: url(../assets/images/desktop/Scroll-Down-Arrow.png);
}

#takethetest .bottom p {
    font-family: 'Gotham Condensed Book', sans-serif;
    text-align: center;
    margin: auto;
    font-size: 1.5rem;
}

section#share {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
    background-color: #000;
}

#share .share {
    width: 100%;
    background-color: #000;
    color: #fff;
}

#share .share .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

#share .share .social-media {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.social-media {
    width: 280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-media a:hover,
.share a:hover {
    cursor: pointer;
}

#share .share p {
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 0.5rem;
}

#share .share p.link {
    text-transform: inherit;
    font-size: 1.3rem;
    line-height: 1.5rem;
    font-family: 'Gotham Condensed Book', sans-serif;
}

.icon-share {
    cursor: pointer;
}

.icon-share svg {
    width: 40px;
    height: 40px;
}

.icon-share .st0 {
    fill: #fff;
}

.icon-share .fill,
.icon-share svg .fill,
.icon-share svg .st0 {
    transition: all 0.2s ease;
}

.icon-share:hover svg .fill,
.icon-share:hover .st0 {
    fill: #00B6DE;
}

#answers .icon-share:hover svg .fill,
#answers .icon-share:hover .st0 {
    fill: #000;
}

.disclaimer {
    background-color: #fff;
    width: 100%;
    min-height: 12rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 1rem;
    position: relative;
}

.disclaimer:before {
    content: "";
    position: absolute;
    height: 2rem;
    top: -1.9rem;
    left: 0;
    width: 100%;
    background-image: url(../assets/images/desktop/share-after.png);
    background-size: 100% 100%;
    background-position: top;
    background-repeat: no-repeat;
}

.disclaimer p {
    font-family: 'Gotham Condensed Bold', sans-serif;
    font-size: var(--text-m);
   
}

.disclaimer ol {
    font-size: 0.7rem;
    text-align: left;
    font-family: 'Gotham Bold', sans-serif;
}

.disclaimer ol li {
    font-family: 'Gotham', sans-serif;
}

#share .footer {
    width: 100%;
}

section#intro .footer {
    bottom: 0;
    height: auto;
    left: 0;
    width: 100%;
}

.footer {
    position: relative;
    min-height: 5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: black;
    color: #fff;
    font-size: 0.7rem;
    z-index: 9999;
}

.footer:before {
    content: "";
    position: absolute;
    height: 2rem;
    top: -1.95rem;
    left: 0;
    width: 100%;
    background-image: url(../assets/images/desktop/BLK-triangle-top.png);
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}

.footer a {
    color: #fff;
}

.footer .links a {
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: 0.7rem;
    font-family: var(--font-gotham);
}

#cookie-message a:hover,
.footer .links a:hover {
    color: #00B6DE !important;
    text-decoration: none;
}

.footer-content-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
    line-height: 1rem;
}

.footer-content-top p {
    font-family: 'Gotham Book', sans-serif !important;
    font-size: 0.7rem !important;
}

.footer-content-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-content-bottom p {
    font-size: 0.7rem !important;
    font-family: 'Gotham Bold', sans-serif !important;
}


#contact section .content {
    bottom: 0;
    padding-bottom: 0;
}

.formulario {}

.formulario label.wrapper {
    display: flex;
    flex-direction: column;
    color: #000;
    width: 100%;
    margin-bottom: 1rem;
    text-align: left;
}

.formulario input {
    width: 100%;
    border: solid 1px #00B6DE;
    background-color: #fff;
}

.formulario input[type=submit] {
    background-color: #00B6DE;
    color: #fff;
}

.formulario input[type=submit]:hover {
    background-color: #fff;
    color: #00B6DE;
}

.robot {
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0% {
      transform: translatey(0px);
    }
  
    50% {
      transform: translatey(-20px);
    }
  
    100% {
      transform: translatey(0px);
    }
  }
.dialog-box {
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    /*background-image: url(../assets/images/dialog-left.svg);*/
    text-align: center;
    padding: 2rem 2rem 2rem 5rem;

}


#visit-doctor .dialog-box,
#results .dialog-box {
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../assets/images/dialog-right.svg);
text-align: center;
    padding: 2rem 5rem 2rem 2rem;

}

#visit-doctor .map .dialog-box {
    background-image: url(../assets/images/dialog-bottom.svg);
    text-align: center;
        padding: 2rem 2rem 5rem 2rem;
}
#visit-doctor .map iframe {
    width: 100%;
    height: 100%;
}
#visit-doctor .map .map-wrapper {
    position: relative;
    min-height: 450px;
}
#visit-doctor .map .map-wrapper:after {
   /* content: ""; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--lightblue);
    mix-blend-mode: color;
    opacity: 50%;
    pointer-events: none;
}  

.cta-mapa-tel {
    display: block;
    font-size: 1.1rem;
    margin-top: .5rem;
    color: var(--lightblue);
}
 
#map {
    width: 100%;
    height: 600px;
}

.content-farmacia button.btn {
    font-size: 0.9rem;
    padding: 5px;
    background-color: var(--lightblue);
    color: #fff;
}
#symptoms {
    overflow: hidden;
}

#symptoms .notgood,
#symptoms .good {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
#symptoms .notgood ul,
#symptoms .good ul  {
list-style: none;
}
#symptoms .notgood ul li,
#symptoms .good ul li  {
position: relative;
padding-left: 3rem;
margin-bottom: 1rem;
}
#symptoms .good ul li {
    color: #000;
}
#symptoms .notgood ul li {
    color: #fff;
}
#symptoms .notgood ul li:before,
#symptoms .good ul li:before  {
content: "";
position: absolute;
left: 0;
width: 2rem;
height: 2rem;
background-position: center;
background-size: contain;
background-repeat: no-repeat;
top: .25rem;
}
#symptoms .notgood ul li:before {
background-image: url(../assets/images/thumbs-down.svg);
}
#symptoms .good ul li:before {
background-image: url(../assets/images/thumbs-up.svg);
}

#symptoms .good { 
    position: relative;
    color: #fff;
  
}
#symptoms .notgood:before {
    position: absolute;
    content: "";
width: 180%;
height: 100%;
top: 0;
left: 0;
background-color: black;
z-index: -1; 
}

section#meaning {
    padding-top: 50px;
}

#meaning .section-button button {
    background-color: #00B6DE;
    color: #fff;
}

#meaning .section-button button:after {
    background-image: url(../assets/images/desktop/Scroll-Down-Arrow.png);
}

#answers #share .share {
    background-color: #00B6DE;
}

#answers #share .share .container {
    justify-content: center;
}

#signs .sign {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
}
#signs .sign img {
    max-width: 90px;
    height: auto;
}
#signs .sign p {
    font-size: var(--text-m);
    margin-top: 1rem;
    text-align: center;
    color: #fff;
}
#signs:before,
#answers:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2rem;
    top: -1px;
    left: 0;
    background-image: url(../assets/images/desktop/white-triangle-top.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(180deg);
}

section#doctor:before,
section#results:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2rem;
    top: -1.95rem;
    left: 0;
    background-image: url(../assets/images/desktop/share-before.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}


#answers #results .no-button .btn {
    background-color: rgba(0, 0, 0, 0);
}

.share-test h4 {
    font-family: 'OCR A Std', monospace;
    color: #000;
}
#answers #policy p,
#answers #policy li {
    text-align: left;
}
#answers #policy h3 {
 margin-top: 1.5rem;
}
#policy .question {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 4rem;
}

#policy {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

#policy .question h3 {
    margin-bottom: 1rem;
}

#policy .question h4 {
    font-family: 'Gotham Condensed Bold', sans-serif;
}

#policy .question p {
    margin-bottom: 1rem;
}

#answers #policy ul {
    font-family: 'Gotham Condensed Book', sans-serif;
    font-size: 1.5rem;
    line-height: 1.4;
    text-align: center;
}

#policy .card {
    margin-bottom: 1rem;
}

#policy .card-header.collapsed {
    background-color: #fff;
    padding: 0;
}

#policy .card-header {
    padding: 0;
}

#policy .card-header button {
    width: 100%;
    height: 100%;
    text-align: left;
    text-decoration: none;
    color: #fff;
    font-family: 'Gotham Condensed Bold', sans-serif;
    text-transform: uppercase;
    padding: 7px 10px 6px 15px;
    background-color: #000;
}

#policy .card-header button.collapsed {
    color: #000;
    background-color: #fff
}

#policy .card-header button {
    width: 100%;
    height: 100%;
    text-align: left;
    color: #fff;
    font-family: 'Gotham Condensed Bold', sans-serif;
    text-transform: uppercase;
    padding: 7px 10px 5px 15px;
}

#policy .card-body p {
    text-align: left;
}



.modal-subscribe .modal-dialog {
    max-width: 100%;
    width: 900px;
}

.modal-subscribe .modal-content {
    background-color: #000;
    border: solid 2px #fff;
    color: #fff;
}

.modal-subscribe .modal-content h5,
.new-cta h5 {
    font-family: 'Gotham Condensed Bold', sans-serif;
    text-align: center;
    font-size: 2rem;
}

.modal-subscribe button.close {
    font-family: 'Gotham Condensed Bold', sans-serif;
    font-size: 3rem;
    color: #fff;
    position: absolute;
    top: -50px;
    right: -50px;
    z-index: 5;
}

label.wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Gotham Condensed Bold', sans-serif;
    font-size: 1.6rem;

}

.wrapper input {
    width: 100%;
    padding: 15px;
    font-family: 'Gotham Condensed Book', sans-serif;
}


.modal-subscribe button.close,
#do-the-test button.close {
    font-family: 'Gotham Condensed Bold', sans-serif;
    font-size: 3rem;
    color: #fff;
    position: absolute;
    top: 10px;
    right: 10px;
}

#do-the-test {
    transform: translateY(-100%);
    opacity: 0;
    position: fixed;
    bottom: 15px;
    width: 80%;
    left: 10%;
    background-color: #00B6DE;
    border: solid 2px #fff;
    z-index: 1030;
    min-height: 150px;
    pointer-events: none;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 25px 50px;
    justify-content: space-between;
}

#do-the-test p {
    width: calc(100% - 350px);
    font-size: 1.4rem;
}

#do-the-test.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

/*12/05/2021 */

#modalRiesgo .modal-header {
display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#modalRiesgo .modal-content {
    color: #fff;
}


#modalRiesgo h3 {
    font-size: 1.4rem;
}

#modalRiesgo h5 {
    font-size: 1.4rem;
}


/* DESKTOP GRANDE */

@media (min-width: 1451px) {
  


    section#watchthevideo .section-button {
        bottom: 1rem;
    }


}


/* DESKTOP CHICO */

@media (min-width:576px) and (max-width:1450px) {
    img.action {
        max-height: 70px;
        margin-top: 20px;
    }

    section#intro .top {
        padding-top: 10rem;
    }



    section#watchthevideo:after {
        height: 1rem;
    }

    #watchthevideo .top .title {
        font-size: 2.4rem;
        width: 285px;
    }

    #watchthevideo .top .video-thumb {
        width: 60%;
    }


    #share .share {
        min-height: 50%;
    }

    #share .share p {
        font-size: 1.3rem;
    }

    #share .share .social-media {
        margin-top: 0.7rem;
        margin-bottom: 0.7rem;
    }




  


}

@media (min-width: 576px) {
    .min-height-100vh {
        min-height: 100vh;
    }

    .height-100vh {
        height: 100vh;
    }

    #takethetest .quiz-statement {
        min-height: 70px;
    }

    #takethetest .btn-quiz:active,
    #takethetest .btn-quiz:hover {
        background-color: #000;
        color: #fff;
        -moz-box-shadow: 0px 0px 0px 2px #fff;
        -webkit-box-shadow: 0px 0px 0px 2px #fff;
        box-shadow: 0px 0px 0px 2px #fff;
    }
    .desktop {
        display: block;
    }
    
    .mobile {
        display: none;
    }
}


/* MOBILE */

@media (max-width: 576px) {

  
    :root {
     
        --text-xs: 0.9rem;
        --text-s: 1rem;
        --text-m: 1.1rem;
        --text-ml: 1.3rem;
        --text-l: 1.5rem;
        --text-xl: 1.7rem;
        --text-xxl: 2rem;
      
    }
.desktop {
    display: none;
}

.mobile {
    display: block;
}
    .reverse-mobile {
        flex-direction: column-reverse;
    }

    .order-mobile-1 {
        order: 2;
    }
    .order-mobile-2 {
        order: 2;
    }
    .order-mobile-3 {
        order: 3;
    }
    button,
    .btn {
        font-size: 1rem !important;
        white-space: normal !important;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    section#watchthevideo .section-button {
        align-items: flex-start;
    }

    header {
        padding-top: 5px;
    }

    .header-logos img {
        max-height: 45px;
        max-width: 115px;
    }

section {
    scroll-snap-align: none !important;
    scroll-snap-stop: inherit !important;
        height: auto;
        min-height: 100vh;
        position: relative;
        padding-bottom: 25px;
    }



    section .content {
        position: relative;
        min-height: 100%;
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .height-100vh {
        min-height: 100vh;
    }

    #cookie-message {
        flex-direction: column;
        align-items: center;
    }

    #cookies-container {
        background-color: rgba(0, 0, 0, 0.7);
    }

    #cookies-container .container-fluid {
        padding-left: 7px;
        padding-right: 7px;
    }

    #cookie-message br {
        display: none;
    }

    #cookie-message p {
        font-size: 0.6rem !important;
    }

    #cookie-message .btn {
        padding: 0 5px !important;
    }

    #hcp_confirm button {
        white-space: normal;
        padding: 7px 10px 6px 10px;
    }

   



    section#intro .content .container {
        justify-content: flex-start;
        padding-top: 65px;
    }

    #landing section#intro .content .container {
        padding-top: 65px;
    }

    section#intro .top {
        padding-left: 0;
        padding-top: 0;
    }

    section#intro .top button {
        font-size: 1rem !important;
        margin-bottom: 1rem;
    }

    section#intro .top p {
        font-size: 1.3rem;
        line-height: 1.2;
    }

    section .section-button button {
        padding: 5px 0 5px 0;
        width: 100%;
    }

 

    img.action {
        max-height: 50px;
    }

   

    #intro section.footer {
        height: auto;
    }



    section .section-button a {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
    }

    section .section-button a button {
        width: 100%;
    }


 

    .blue-strip-container {
        top: 70%;
    }

    .blue-strip-container h3 {
        font-size: 1rem;
    }

  

    section#learnmore:before {
        top: -1rem;
        height: 1rem;
        background-position: top;
    }



    #watchthevideo .top .title {
        font-size: 1.5rem;
        line-height: 1.2;
        text-align: center;
        position: relative;
        width: 100%;
        top: 1rem;
        margin-bottom: 1rem;
    }

    #watchthevideo .top .video-thumb {
        width: 100%;
    }

    #watchthevideo .top .video-thumb svg {
        height: 90px;
        width: 90px;
    }

    #watchthevideo .bottom p {
        font-size: 1.3rem;
        line-height: 1.2;
    }

    #watchthevideo .top .title br {
        display: none;
    }

    section#takethetest {
        height: auto;
        padding-top: 30px;
    }


    section#takethetest .content {
        height: auto;
        padding-bottom: 20px;
    }

    #takethetest .content .top h2 {
        font-size: 1.5rem;
    }
    #takethetest #test-progress:before {
        left: 35%;
    }
    #takethetest .content .top p,
    #takethetest .content .bottom p {
        font-size: 1.3rem;
    }

    #takethetest .quiz-statement {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    #takethetest #test-progress {
        padding-top: 1rem;
        margin-bottom: 2rem;
    }

    #takethetest #test-progress:before {
        font-size: 1.2rem;
    }

    #takethetest #test-progress .bar {
        height: 1.5rem;
    }

    #takethetest .btn-quiz {
        font-size: 0.9rem !important;
        transition: 0s 0.5s ease;
    }

    #takethetest .btn-quiz:active {
        background-color: #000;
        color: #fff;
        transition: 0s ease;
    }

    section#watchthevideo {
        padding-top: 15px;
    }

    section#watchthevideo:before {
        height: 2rem;
    }

    section#takethetest:before {
        height: 1rem;
        top: -0.94rem;
    }

    section#takethetest:after {
        height: 1rem;
        background-position: bottom;
        bottom: -0.04rem;
    }

    section#share {
        height: auto;
    }

    #share .share {
        height: auto;
    }

    #share .share p {
        font-size: 1.3rem;
        line-height: 1.2;
    }

    #share .footer {
        height: auto;
    }

    .disclaimer {
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .disclaimer:before,
    .footer:before {
        height: 1rem;
        top: -0.9rem;
        background-size: 100% 100%;
    }

    .footer-content-top {
        flex-direction: column;
        align-items: center;
    }

    .footer .links {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 1rem;
    }

    .footer-content-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-content-top .d-flex.align-items-end {
        flex-direction: column;
        align-items: center !important;
    }

    .footer-content-bottom img {
        margin-bottom: 1.5rem;
    }

    section .section-button.no-button button {
        width: 100%;
    }
.robot {
    max-width: 100px;
    margin: auto;
}

.dialog-box {
    background-image: url(../assets/images/dialog-top.svg);
    padding: 3rem 1rem 2rem 1rem;
}
  


#visit-doctor .dialog-box, #results .dialog-box {
    background-image: url(../assets/images/dialog-bottom.svg);
    padding: 2rem 2rem 4rem 2rem;
}
    

    #signs:before,
    #answers #share:before {
        height: 1rem;
    }



    section .section-button.no-button button {
        background-color: rgba(255, 255, 255, 0) !important;
    }

    #policy {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    #policy .question {
        margin-bottom: 2rem;
    }

    #cookies-container .py-3.d-flex.justify-content-between.align-items-start {
        flex-direction: column;
    }

    #cookies-container.fixed-top {
        top: auto !important;
        bottom: 0 !important;
        z-index: 9999;
    }

    .hulihealth,
    .cliniweb  {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 1rem;
    }

    .hulihealth p,
    .cliniweb p {

        text-align: center !important;
    }


    #do-the-test {
        flex-direction: column;
        min-height: auto;
        width: 90%;
        left: 5%;
        bottom: 15px;
        padding: 10px 20px;
    }

    #do-the-test p {
        width: 100%;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .wrapper input {
        padding: 7px;
    }

    .text-small {
        font-size: 1rem;
    }


    button.cta-test {
        font-size: 1.4rem !important;
    }

    .new-cta {
        margin-bottom: 2rem;
    }

     #symptoms .good {
padding-top: 0;
padding-bottom: 1rem;
    }
}

.not-supported {
    display: none;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .ie-w-100 {
        width: 100%;
    }

    #watchthevideo .content .top {
        max-height: 400px;
    }

    .symptoms li {
        width: 100%;
    }

    body {
        overflow: hidden;
    }

    .not-supported {
        position: fixed;
        top: 0;
        left: 0;
        background-color: black;
        z-index: 999999999;
        width: 100%;
        height: 100%;
        display: flex !important;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .not-supported h1 {
        font-family: 'OCR A Std', monospace;
        font-size: 3rem;
        line-height: 1.2;
        text-transform: uppercase;
        color: #00B6DE;
        margin-bottom: 0.5rem;
        max-width: 90%;
        text-align: center;
    }

    .not-supported p {
        font-size: 2rem;
        line-height: 2.2rem;
        color: #fff;
        font-family: 'Gotham Condensed Book', sans-serif;
        margin-bottom: 1.5rem;
        text-align: center;
        max-width: 90%;
    }


    .not-supported a {
        color: #fff;
    }
}
