:root {
    --blue: #025c72;
    --dark-blue: #002231;
    --yellow: #fbc447;
    --violet: #a05eb5;
    --red: #bd2026;
    --gray: #d9dee0;
    --light-blue: #0399a6;
    --light-gray: #dce1e3;
    --lighter-gray: #edf0f1;
    --medium-gray: #dbe0e2;
    --dark-gray: #a6b2b7;
    --gray-shadow: rgba(0, 0, 0, 0.25);
    --gradient: linear-gradient(30deg, rgba(0, 152, 165, 1) 0%, rgba(160, 94, 181, 1) 50%, rgba(190, 15, 15, 1) 94%);
    --gradient-reverse: linear-gradient(30deg, rgba(190, 15, 15, 1) 0%, rgba(160, 94, 181, 1) 50%,  rgba(0, 152, 165, 1) 94%);
    --default-margin: 2%;
    --default-border-radius: 0.5vw;
    --puzzle-width: 140%;
    --plyr-color-main: #a05eb5;
}

html {
    font-size: 62.5%;
}

* {
    font-size: 1.7rem;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    background-color: #fff;
    width: 1280px; /* mandatory for iframe adapting */
    height: 720px; /* mandatory for iframe adapting */
}

.carousel-item {
    position: relative;
}

.carousel-item a {
    position: absolute;
    border-radius: 50%;
    background: transparent;
}

.home_next {
    top: 78.5%;
    left: 72.9%;
    width: 25.7%;
    height: 14%;
    border-radius: 0px !important;
}

.prev {
    top: 90%;
    left: 2%;
    width: 2.8%;
    height: 5%;
}

.home {
    top: 90%;
    left: 7.1%;
    width: 2.8%;
    height: 5%;
}

.next {
    top: 89.2%;
    left: 92.4%;
    width: 4.7%;
    height: 8%;
}

.correct-answer {
    position: absolute;
    width: 32%;
    left: 50%;
    translate: -50% 0;
    top:32%;
    animation: pulse 0.6s ease infinite alternate;
}

.multiple-choice-msg {
    position: absolute;
    width: 30%;
    left: 50%;
    translate: -50% 0;
    top:36%;
    animation: pulse 0.6s ease infinite alternate;
}

.check-correct {
    position: absolute;
    width: 32%;
    height: auto;
    left: 52.7%;
    top: 89.1%;
}

.wrong-answer {
    background: #ff0026 !important;
    color: #fff !important;
    border-color: #fff !important;
    position: relative;
}

.wrong-answer::after {
    position: absolute;
    content: '';
    background-image: url(../images/wrong-answer.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 12%;
    top: 0;
    right: 0;
    transform: translate(40%, -40%);
    aspect-ratio: 1;
}

.right_answer {
    position: relative;
}

.right_answer.show-check::after {
    position: absolute;
    content: '';
    background-image: url(../images/correct-check.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 12%;
    top: 0;
    right: 0;
    transform: translate(40%, -40%);
    aspect-ratio: 1;
}

.area_1 {
    top: 3%;
    left: 59.5%;
    width: 8%;
    border-radius: 0% !important;
    height: 5%;
}

.area_2 {
    top: 3%;
    left: 69.9%;
    width: 8%;
    border-radius: 0% !important;
    height: 5%;
}

.area_3 {
    top: 3%;
    left: 80.2%;
    width: 8%;
    border-radius: 0% !important;
    height: 5%;
}

.area_4 {
    top: 3%;
    left: 90.6%;
    width: 8%;
    border-radius: 0% !important;
    height: 5%;
}

.answer_button_1 {
    top: 40.8%;
    left: 18.7%;
    width: 29.8%;
    height: 9.2%;
}

.answer_button_2 {
    top: 40.8%;
    left: 51.5%;
    width: 29.8%;
    height: 9.2%;
}

.answer_button_3 {
    top: 54.8%;
    left: 18.7%;
    width: 29.8%;
    height: 9.2%;
}

.answer_button_4 {
    top: 54.8%;
    left: 51.5%;
    width: 29.8%;
    height: 9.2%;
}

.answer_button_5 {
    top: 68.8%;
    left: 35.1%;
    width: 29.8%;
    height: 9.2%;
}

.answer_button_6 {
    border-radius: 0% !important;
    top: 74.2%;
    left: 53.9%;
    width: 24.5%;
    height: 8%;
}

.answer_2_button_1 {
    top: 44.2%;
    left: 20.2%;
    width: 27.2%;
    height: 8.4%;
}

.answer_2_button_2 {
    top: 44.2%;
    left: 52.6%;
    width: 27.2%;
    height: 8.4%;
}

.answer_2_button_3 {
    top: 57.5%;
    left: 20.2%;
    width: 27.2%;
    height: 8.4%;
}

.answer_2_button_4 {
    top: 57.5%;
    left: 52.6%;
    width: 27.2%;
    height: 8.4%;
}

.answer_2_button_5 {
    top: 71.2%;
    left: 20.2%;
    width: 27.2%;
    height: 8.4%;
}

.answer_2_button_6 {
    top: 71.2%;
    left: 52.6%;
    width: 27.2%;
    height: 8.4%;
}

.answer_button {
    background: linear-gradient(white 0 0) padding-box, var(--gradient) border-box;
    padding: 2px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #1c345a;
    text-decoration: none;
    position: absolute;
    cursor: pointer;
    padding-top: 10px;
    transition: 0.5s;
    border-radius: 45px !important;
    border: 2px solid transparent;
}


.answer_button:hover {
    color: rgba(190, 15, 15, 1);
    background: linear-gradient(rgb(216, 216, 216) 0 0) padding-box, var(--gradient) border-box;
}

/* .active_button[data-correct="true"] {
    color: rgba(190, 15, 15, 1);
    background: linear-gradient(rgb(216, 216, 216) 0 0) padding-box, var(--gradient) border-box;
} */


/* .active_button {
    color: rgba(190, 15, 15, 1);
    background: linear-gradient(rgb(216, 216, 216) 0 0) padding-box, var(--gradient) border-box;
}

.confirmed_answer_button {
    color: rgba(190, 15, 15, 1);
    background: linear-gradient(rgb(216, 216, 216) 0 0) padding-box, var(--gradient) border-box;
}
*/

.unset_hover:hover {
    color: #1c345a;
    background: linear-gradient(white 0 0) padding-box, var(--gradient) border-box;
}

.confirmed_answer_button:hover {
    color: rgba(190, 15, 15, 1);
    background: linear-gradient(rgb(216, 216, 216) 0 0) padding-box, var(--gradient) border-box;
}

.right_answer {
    color: #fff;
    border: 2px solid white;
    background: var(--gradient);
}

.right_answer:hover {
    color: #fff;
    border: 2px solid white;
    background: var(--gradient);
}

.not_clickable {
    cursor: default;
}

.toggle_next {
    top: 88.6%;
    height: 9%;
    width: 170px !important;
    right: 2.1rem;
}

.disabled_next {
    position: absolute;
    background-image: url("../images/continue_d.png");
    background-size: cover;
    left: unset;
}

.enabled_next {
    position: absolute;
    background-image: url("../images/continue.png");
    background-size: cover;
    left: unset;
    cursor: pointer;
}

.carousel .carousel-item {
    transition-duration: 0.2s;
}

.bouncing_next {
    top: 88.6%;
    height: 9%;
    width: 170px;
    right: 2.1rem;
    /*animation: pulse 0.8s 3.6 ease-in-out alternate;*/
    animation: pulse 0.6s ease infinite alternate;
    
}
@keyframes pulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

.shaking_next {
    animation: shake 1s ease;
}
@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-7px);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translateX(7px);
    }
}

.home_bouncing_next {
    top: 79%;
    height: 13.2%;
    width: 95px !important;
    right: 3.6rem;
    animation: pulse 0.6s ease infinite alternate;
    border: 0px;
    position: absolute;
    background-image: url("../images/home_next.png");
    background-size: cover;
    left: unset;
    cursor: pointer;
}

.bouncing_during_diagnosis_next {
    top: 64%;
    height: 9.3%;
    width: 416.3px !important;
    left: 12.3%;
    animation: pulse 0.6s ease infinite alternate;
    border: 0px;
    position: absolute;
    background-image: url(../images/during_diagnosis.png);
    background-size: cover;
    right: unset;
    cursor: pointer;
}

.bouncing_during_treatment_next {
    top: 64.1%;
    height: 9.2%;
    width: 410.7px !important;
    left: 12.6%;
    animation: pulse 0.6s ease infinite alternate;
    border: 0px;
    position: absolute;
    background-image: url(../images/during_treatment.png);
    background-size: cover;
    right: unset;
    cursor: pointer;
}

#confirm_modal {
    max-width: 80% !important;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9999;
    padding: 2rem;
    padding-left: 4rem;
    padding-right: 4rem;
}

.modal-body {
}

.modal-body p {
    font-size: 2rem !important;
    font-weight: 800;
    color: #fff;
}

.modal_button {
    background: linear-gradient(white 0 0) padding-box, var(--gradient-reverse) border-box;
    padding: 50px 20px 5px 20px;
    text-align: center;
    cursor: pointer;
    padding-top: 5px;
    transition: 0.5s;
    border-radius: 45px !important;
    border: 2px solid transparent;
}

.modal_button p {
    font-size: 2.3rem;
    font-weight: bold;
    text-decoration: none;
    margin: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;    
}



.modal_button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.modal_button:hover {
    color: #1c345a;
    background: linear-gradient(rgba(216,216,216,1) 0 0) padding-box, var(--gradient-reverse) border-box;;
}

#close_modal {
    margin-left: 1rem;
}

.modal-footer {
    border-top: 0;
    margin-top: 1rem;
    display: block;
}

#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(28, 52, 90, 0.7);
    z-index: 2;
}
