/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600;700&display=swap");
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.quiz-modal__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 9999999;
}
.quiz-modal__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 900;
}
.quiz-modal__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 50px;
    z-index: 1000;
    background: #2768b3;

    border-radius: 10px;

    overflow-y: scroll;
}
.quiz-modal__content p,
.quiz-modal__content a,
.quiz-modal__content li {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: justify;
    color: #ffffff;
}
.quiz-modal__content a {
    text-decoration: underline;
}
.quiz-modal__content ul {
    list-style-type: none;
}
.quiz-modal__content ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
}
.quiz-modal__content ul li::before {
    content: url(./images/listArrow.svg);
    position: absolute;
    left: 0;
    top: -12px;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}
.quiz-modal__content p.info {
    font-family: "Montserrat", sans-serif;

    font-weight: 300;
    font-size: 21px;
    line-height: 26px;

    color: #0e0a0a;
}
.quiz-modal__content img {
    max-width: 100%;
    max-height: 100%;
}
.quiz-modal__content--header {
    padding: 60px 42px 0 42px;
    width: 100%;
}
.quiz-modal__content--header .quiz-heading {
    margin-bottom: 0;
}
.quiz-modal__content--header + .quiz-modal__content--left,
.quiz-modal__content--header
    + .quiz-modal__content--left
    + .quiz-modal__content--right {
    padding-top: 0;
}
.quiz-modal__content--left {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50%;
    padding: 60px 42px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    height: 100%;
}
.quiz-modal__content--left-scroll {
    overflow-y: scroll;
}
/* .quiz-modal__content--left::-webkit-scrollbar {
    display: none;
}

.quiz-modal__content--left {
    -ms-overflow-style: none; 
    scrollbar-width: none; 
} */
.quiz-modal__content--left-block {
    display: block;
    overflow-y: scroll;
}

.quiz-modal__content--right {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50%;
    padding: 60px 42px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 100%;
}
.quiz-modal__content--right-pb0 {
    padding-bottom: 0;
}
.quiz-modal__content--left a,
.quiz-modal__content--right a {
    color: #ffffff;
}
.quiz-modal__content--left a:hover,
.quiz-modal__content--right a:hover {
    text-decoration: underline !important;
    color: #ffffff !important;
}
.quiz-modal__line-break {
    opacity: 0;
}
.quiz-mobile {
    display: block;
}
.quiz-desktop {
    display: none;
}
@media screen and (min-width: 992px) {
    .quiz-modal__content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .quiz-modal__content--left.quiz-content--top,
    .quiz-modal__content--right.quiz-content--top {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        height: unset;
    }
    .quiz-mobile {
        display: none;
    }
    .quiz-desktop {
        display: block;
    }
}
.quiz-modal__content--left.quiz-image-wrapper {
    padding: 0;
}
@media screen and (max-width: 992px) {
    .quiz-modal__content--header {
        padding-left: 12px;
        padding-right: 12px;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .quiz-modal__content--left.quiz-content--top.quiz-content--minus-order {
        -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
        order: -2;
    }
    .quiz-modal__line-break {
        display: none;
    }
    .quiz-modal__content {
        margin: 40px 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .quiz-modal__content--left {
        width: 100%;
        height: unset;
        padding: 56px 12px;
        border-radius: 0;
        min-height: -webkit-fit-content;
        min-height: -moz-fit-content;
        min-height: fit-content;
    }
    .quiz-modal__content--left.no-padding-y--mobile {
        padding-bottom: 0;
    }

    .quiz-modal__content--left.quiz-image-wrapper img {
        width: 100%;
    }
    .quiz-modal__content--left img {
        margin: auto;
    }
    .quiz-modal__content--right {
        width: 100%;
        height: unset;
        padding: 56px 12px;
        border-radius: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        min-height: -webkit-fit-content;
        min-height: -moz-fit-content;
        min-height: fit-content;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .quiz-modal__content--right.no-padding-y--mobile {
        padding-top: 0;
    }
    .quiz-modal__content--right img {
        width: 50%;
        margin: auto;
    }
    .quiz-modal__content--left.quiz-content--top {
        padding-bottom: 0;
    }
}
.quiz-modal__content--right ul {
    z-index: 10;
}
.quiz-modal--lightBG {
    background: #f9f9f9;
}
/* Buttons */
.quiz-modal__btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;

    border-radius: 35px;
    outline: none;
    border: none;

    height: 82px;
    padding: 0 34px;

    cursor: pointer;
}
.quiz-modal__btn--dark {
    background: #1181ff;
    color: #ffffff;
    -webkit-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
}
.quiz-modal__btn--dark:hover {
    opacity: 0.8;
}
.quiz-modal__btn--light {
    background: #ffffff;
    color: #1181ff;
    -webkit-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
}
.quiz-modal__btn--light:hover {
    opacity: 0.8;
    background-color: lightblue;
}
.quiz-modal__btn--transparent {
    color: #1181ff;
    background-color: transparent;
    -webkit-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    margin-left: 16px;
}
.quiz-modal__btn--transparent:hover {
    background-color: lightblue;
    opacity: 0.8;
}
.quiz-modal__btn--arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 24px;
}
.quiz-modal__btn--arrow img {
    display: block;
    margin-left: 40px;
}
.quiz-modal__btn--selection {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    background-color: transparent;
    font-family: "Montserrat", sans-serif;

    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    text-transform: none;
    color: #000000;
    border-bottom: 1px solid #000000;
    text-align: left;
    border-radius: 0;
    width: 100%;
    padding: 0 48px;
}

.quiz-modal__btn--selection:hover::after {
    opacity: 1;
}
.quiz-modal__btn--selection:hover img {
    -webkit-transform: translateY(-50%) scale(1.5);
    -ms-transform: translateY(-50%) scale(1.5);
    transform: translateY(-50%) scale(1.5);
}
.quiz-modal__btn--selection::after {
    content: "";
    position: absolute;
    left: 0;
    top: 5%;
    width: 100%;
    height: 90%;
    background: rgba(17, 129, 255, 0.5);
    border-radius: 10px;
    opacity: 0;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.quiz-modal__btn--selection i {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;

    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    /* identical to box height */

    color: #000000;
}
.quiz-modal__btn--selection img {
    position: absolute;
    right: 6px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
.quiz-modal__btn--close {
    position: absolute;
    top: 100px;
    right: 100px;
    z-index: 2000;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
}
.quiz-modal__btn--close:hover {
    opacity: 0.7;
}
.quiz-modal__btn--bottomRight {
    position: absolute;
    bottom: 42px;
    right: 42px;
    z-index: 50;
}

@media screen and (max-width: 992px) {
    .quiz-modal__btn {
        height: 60px;
        font-size: 15px;
        line-height: 18px;
    }
    .quiz-modal__btn--selection {
        height: unset;
        min-height: 84px;
        padding: 0 32px;
    }
    .quiz-modal__btn--selection img {
        width: 28px;
    }
    .quiz-modal__btn--close {
        top: 60px;
        right: 36px;
    }
    .quiz-modal__btn--bottomRight {
        position: unset;
        margin-left: auto;
        margin-top: 32px;
    }
    .quiz-modal__btn--transparent {
        margin-left: 4px;
    }
    /* .quiz-modal__close--black {
        display: none !important;
    }
    .quiz-modal__close--white {
        display: block !important;
    } */
}
.quiz-modal__privacy-text {
    display: block;
    font-family: "Montserrat", sans-serif;

    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: #1181ff;
    margin-bottom: 32px;
}
.quiz-modal__privacy-text a {
    font-family: "Montserrat", sans-serif;

    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: #1181ff !important;
    text-decoration: underline;
}
/* Form */
.quiz-form__wrapper {
    border-radius: 10px;
    width: 100%;
    padding: 60px 42px;
    height: 100%;
    min-height: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    overflow: hidden;
}
.quiz-form__wrapper form {
    position: relative;
    z-index: 10;
}
.quiz-form__wrapper form + p {
    display: block;
    margin-top: 16px;
}
.quiz-form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.quiz-form__col {
    width: 50%;
    margin-bottom: 30px;
}
.quiz-form__col:nth-child(odd) {
    padding-right: 10px;
}
.quiz-form__col:nth-child(even) {
    padding-left: 10px;
}
.quiz-form__row label {
    display: block;
    font-family: "Montserrat", sans-serif;

    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;

    color: #000000;
}
.quiz-form__row input {
    border: none !important;
    outline: none;
    background-color: transparent;

    border-bottom: 1px solid #000000 !important;
    width: 100%;

    padding: 20px !important;
}
.quiz-form__row input.quiz-input-invalid {
    border-color: red !important;
}
.quiz-form__row input::-webkit-input-placeholder {
    font-family: "Montserrat", sans-serif;

    font-weight: 300;
    font-size: 18px;
    line-height: 22px;

    color: #000000;
}
.quiz-form__row input::-moz-placeholder {
    font-family: "Montserrat", sans-serif;

    font-weight: 300;
    font-size: 18px;
    line-height: 22px;

    color: #000000;
}
.quiz-form__row input:-ms-input-placeholder {
    font-family: "Montserrat", sans-serif;

    font-weight: 300;
    font-size: 18px;
    line-height: 22px;

    color: #000000;
}
.quiz-form__row input::-ms-input-placeholder {
    font-family: "Montserrat", sans-serif;

    font-weight: 300;
    font-size: 18px;
    line-height: 22px;

    color: #000000;
}
.quiz-form__row input,
.quiz-form__row input::placeholder {
    font-family: "Montserrat", sans-serif;

    font-weight: 300;
    font-size: 18px;
    line-height: 22px;

    color: #000000;
}
.quiz-form__row + span {
    display: block;
    font-family: "Montserrat", sans-serif;

    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
}
.quiz-heading {
    font-family: "Montserrat", sans-serif;

    font-weight: 600;
    font-size: 33px;
    line-height: 40px;
    color: #ffffff;
    margin-bottom: 32px;
}
.quiz-heading.mb {
    margin-bottom: 32px;
}
@media screen and (max-width: 992px) {
    .quiz-form__row.buttons {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .quiz-form__row.buttons button {
        width: 50%;
        padding-left: 2px;
        padding-right: 2px;
    }
    .quiz-form__col {
        width: 100%;
    }

    .quiz-heading {
        font-weight: 600;
        font-size: 23px;
        line-height: 28px;
        margin-bottom: 8px;
    }
    .quiz-heading + form {
        margin-top: 16px;
    }
    .quiz-form__wrapper {
        padding: 20px 12px;
        overflow-y: scroll;
    }
    .quiz-form__row input {
        padding-left: 0 !important;
        padding-right: 0 !important;
        font-size: 16px;
        line-height: 20px;
        padding-top: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .quiz-form__row label {
        font-size: 16px;
        line-height: 20px;
    }
    .quiz-form__col:nth-child(odd) {
        padding-right: 0;
    }
    .quiz-form__col:nth-child(even) {
        padding-left: 0;
    }
}
.quiz-modal--lightBG .quiz-heading {
    color: #000000;
}
.quiz-subheading {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
}
.quiz-modal--lightBG p,
.quiz-modal--lightBG a {
    color: #000000;
}
.quiz-image--bottom-middle {
    position: absolute;
    left: 15%;
    bottom: 0;
}
@media screen and (max-width: 992px) {
    .quiz-image--bottom-middle {
        display: none;
    }
}
.quiz-image--bottom-right {
    position: absolute;
    right: 70%;
    bottom: 0;
}
.quiz-image__form--bottom-right {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 1;
}
.quiz-image__form--mobile {
    display: none;
}
.quiz-image--mobile {
    display: none;
}
.quiz-image--desktop {
    display: none;
}
@media screen and (min-width: 992px) {
    .quiz-image--desktop {
        display: block;
    }
    .quiz-modal__image--right-bottom {
        position: absolute;
        bottom: 0;
        right: 30%;
    }
}
.quiz-modal__pt-0 {
    padding-top: 0;
}
@media screen and (min-width: 992px) {
    .quiz-modal__pxy-0 {
        padding: 0;
    }
}

@media screen and (max-width: 992px) {
    .quiz-modal__pt-0 .quiz-modal__btn {
        margin-top: 0;
    }
    .quiz-image__form--bottom-right {
        display: none;
    }
    .quiz-image__form--mobile {
        display: block;
        height: 400px;
        margin: auto;
        padding-bottom: 50px;
        margin-top: -20px;
        margin-left: -12px;
        min-width: calc(100% + 48px);
    }
    .quiz-image--mobile {
        display: block;
    }
    .quiz-image--mobile.mb {
        margin-bottom: 4rem;
        margin-left: -12px;
        min-width: calc(100% + 24px);
        margin-top: -56px;
    }
    .quiz-image--mobile.mb.quiz-image--half-width {
        margin: 0 auto;
        width: 50%;
        min-width: unset;
        margin-bottom: 48px;
    }
}
.quiz__scroll-container {
    height: 200px;
    overflow-y: scroll;
    padding: 14px 18px;
    border: 1px solid #000000;
    border-radius: 0px 0px 7px 7px;
}
@media screen and (max-width: 576px) {
    .quiz__scroll-container {
        padding-bottom: 82px;
    }
}
@media screen and (min-width: 992px) and (max-width: 1280px) {
    .quiz__scroll-container {
        height: 125px;
    }
    .quiz--smaller-pt {
        padding-top: 0;
    }
}
@media screen and (min-width: 1920px) {
    .quiz__scroll-container {
        height: 300px;
    }
}
.quiz__scroll-container button,
.quiz__scroll-container a {
    -webkit-transition: 0.25 ease-in-out;
    -o-transition: 0.25 ease-in-out;
    transition: 0.25 ease-in-out;
}
.quiz__scroll-container button:hover,
.quiz__scroll-container a:hover {
    color: #2768b3 !important;
}
@media screen and (max-width: 992px) {
    .quiz__scroll-container {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        overflow-y: unset;
    }
}
.quiz__scroll-container::-webkit-scrollbar {
    width: 2px;
}

.quiz__scroll-container::-webkit-scrollbar-track {
    border-radius: 10px;
}

.quiz__scroll-container::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #000000;
}
.quiz__scroll-container-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.quiz__scroll-container-header img {
    cursor: pointer;
    margin-left: unset;
    margin-right: unset;
}
.quiz__scroll-container button {
    display: block;

    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    /* identical to box height */

    color: #000000;

    width: 100%;
    background-color: transparent;
    outline: none;
    border: none;
    margin-bottom: 0.5rem;
    text-align: left;
    padding: 0.5rem 0;
    cursor: pointer;
}
.quiz__scroll-container div {
    margin-bottom: 1.5rem;
}
.quiz__scroll-container p {
    margin-bottom: 0.75rem;
}

.quiz__scroll-container a {
    display: block;
    text-decoration: none;
    margin-bottom: 0;
}
.quiz__arrow {
    margin-bottom: 8px !important;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    width: unset !important;
}
.quiz__arrow.up {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.fade-leave-active,
.fade-enter-active {
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
.fade-enter {
    opacity: 0;
}
.fade-leave-to {
    opacity: 0;
}
