@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

#app {
    min-height: 100vh;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

#app::after {
    content: "";
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: -1;
}

#app__wrapper {
    width: 100%;
    height: 100%;
}

#lead--form {
    display: none;
    flex-direction: column;
    gap: 30px;
    margin: 57px 0 90px;
}

.container {
    margin: 0 auto;
    padding: 0 18px;
    max-width: 900px;
}

.transparent {
    background-color: transparent !important;
    border-radius: 0 !important;
}

.main {
    position: relative;
    padding-top: 64px;
    min-height: 100vh;
    background: #fff;
}

.quiz {
    padding: 0 8px;
    /* display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; */
    height: auto;
    width: 100%;
    overflow: hidden;
    transition: height 0.3s ease;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid rgba(78, 169, 255, 0.20);
    background: #0081FB;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
    padding: 19px 0;
    z-index: 10;
}

.header .container {
    max-width: 1200px;
}

.header__logo {
    margin-left: 18px;
}

.header__info {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Quiz */


#start--quiz:active {
    transform: translateY(2px);
    box-shadow: none;
}

#start--quiz._active {
    transform: translateY(2px);
    box-shadow: none;
}

.quiz__content {
    margin: 57px 0 90px;
    display: flex;
    flex-direction: column;
    background: transparent;
}

.question__subtitle,
.question__title {
    font-size: 1.5rem;
    color: #4a4a4a;
    text-align: left;
    text-wrap: balance;
    font-style: normal;
    font-weight: 900;
}

.quiz__logo {
    position: relative;
    padding: 14px 24px;
    overflow: hidden;
}

.quiz__logo::after,
.lead__logo::after {
    display: block;
    content: '';
    width: 137px;
    height: 137px;
    position: absolute;
    top: -100px;
    right: -50px;
    border-radius: 900px;
    opacity: 0.6;
    background: radial-gradient(50% 50% at 50% 50%, #6AECD5 0%, #28C3CD 100%);
    filter: blur(60px);
}

.quiz__logo::before,
.lead__logo::before {
    display: block;
    content: '';
    width: 196px;
    height: 196px;
    position: absolute;
    top: 0;
    left: -70px;
    border-radius: 900px;
    opacity: 0.3;
    background: radial-gradient(50% 50% at 50% 50%, #6A77EC 0%, #71289E 100%);
    filter: blur(60px);
}

.quiz__text {
    padding: 16px 28px;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    border-radius: 0px 0px 4px 4px;
    background: #FFF;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.08), 0px 0px 8px 0px rgba(0, 0, 0, 0.04);
}

.quiz__text p {
    color: #65676B;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.quiz__text p:first-child {
    color: #65676B;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 24px;
}

.quiz__answers {
    margin: 10px 0 40px;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

.quiz__question {
    color: #303030;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    margin-top: 80px;
}

.question__img {
    width: 100%;
    max-width: 60rem;
    border-radius: 16px;
}

.answer__button {
    position: relative;
    min-height: 3rem;
    padding: 16px 40px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #65676B;
    text-align: left;
    font-weight: 400;
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.08), 0px 0px 8px 0px rgba(0, 0, 0, 0.04);
}

.answer__button::after {
    display: block;
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    background: url("?32e86d4f9a=assets/img/button-bg.svg&f=1") center / cover no-repeat;
}

.answer__button.active::after {
    background: url("?32e86d4f9a=assets/img/button-active.svg&f=1") center / cover no-repeat;
}

.answer__button:active {
    border-bottom-width: 2px;
    transform: translateY(2px);
}

.next-button {
    display: block;
    height: 40px;
    max-width: 110px;
    width: 100%;
    margin-left: auto;
    border-radius: 4px;
    background: #0081FB;
    border: none;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.08), 0px 0px 8px 0px rgba(0, 0, 0, 0.04);
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
}

.next-button:disabled {
    background: #D4D4D4;
}

.answer__button._checked {
    border: 2px linear-gradient(180deg, #ffc800 0%, #d9aa03 100%) solid;
}

.answer__button:disabled {
    cursor: not-allowed;
}

.register-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.register-wrap__video {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.video__title {
    margin-top: 16px;
    color: #65676B;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-wrap {
    border-radius: 2px;
    background: #FFF;
    box-shadow: 0px 0.831px 16.615px 0px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 500px;
    padding: 40px 30px;
    margin: 0 auto;
}

.lead__logo {
    position: relative;
    padding: 14px 24px;
    overflow: hidden;
}

.lead__text {
    padding: 16px 24px;
    border-radius: 0px 0px 4px 4px;
    background: #FFF;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.08), 0px 0px 8px 0px rgba(0, 0, 0, 0.04);
}

.lead__title {
    margin-top: 15px;
    color: #65676B;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.lead__subtitle {
    margin-top: 20px;
    color: #65676B;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.question__subtitle-form {
    color: #4a4a4a;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    margin-top: 10px;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 33px 0;
}

.footer-date {
    text-align: center;
    color: #6A6A6A;
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
}

#year {
    padding-left: 10px;
}

/* keyFrames */

/* fadeIn */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

/* fadeOut */

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fade-out {
    animation: fadeOut 1s ease-in;
}

/* HTML: <div class="loader"></div> */
.loading-state {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #0081FB;
    --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

.loading-wrap {
    box-shadow: 0px 2px 6px #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100px;
    width: 100px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
}

@keyframes l3 {
    to {
        transform: rotate(1turn);
    }
}

@media (min-width: 850px) {
    .answer__button {
        font-size: 20px;
    }

    .quiz__question {
        font-size: 30px;
    }

    .register-wrap {
        flex-direction: row;
        column-gap: 60px;
    }

    .lead__title {
        font-size: 26px;
    }

    .lead__subtitle {
        font-size: 16px;
    }
}