/* stylelint-disable unit-no-unknown */
/* stylelint-disable declaration-block-no-duplicate-properties */
/* stylelint-disable order/properties-order */
/* stylelint-disable at-rule-empty-line-before */
/* stylelint-disable rule-empty-line-before */

@font-face {
    font-weight: 400;
    font-family: 'Montserrat';
    font-style: normal;
    font-display: swap;
    src: url('../../fonts/Montserrat400.woff2') format('woff2');
}

@font-face {
    font-weight: 600;
    font-family: 'Montserrat';
    font-style: normal;
    font-display: swap;
    src: url('../../fonts/Montserrat600.woff2') format('woff2');
}

@font-face {
    font-weight: 700;
    font-family: 'Montserrat';
    font-style: normal;
    font-display: swap;
    src: url('../../fonts/Montserrat700.woff2') format('woff2');
}

body {
    margin: 0;
    padding: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.iq_modal-overlay * {
    box-sizing: border-box;
}

.iq_modal-overlay {
    font-family: 'Montserrat', sans-serif;
    min-width: 100vw;
    min-height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    background-color: #fff;
    font-style: normal;
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@supports (max-height: 100dvh) {
    .iq_modal-overlay {
        min-height: 100dvh;
        max-height: 100dvh;
    }
}

.iq_modal-overlay--active {
    z-index: 1000000000;
    display: flex;
    animation: fadeIn 0.4s ease forwards;
    position: fixed;
}

.iq_modal {
    max-height: 100vh;
    max-width: 832px;
    background: white;
    border-radius: 10px;
    overflow: auto;
}
@supports (max-height: 100dvh) {
    .iq_modal {
        max-height: 100dvh;
    }
}

.iq_modal-logo {
    min-width: 85px;
    max-width: 85px;
    min-height: 22px;
    max-height: 22px;
    top: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 365px) {
    .iq_modal-logo {
        top: 24px;
    }
}
@media (orientation: landscape) and (max-height: 640px) {
    .iq_modal-logo {
        position: relative;
        top: 0;
        margin-top: 28px;
    }
}

.iq_modal-body {
    padding: 24px 32px;
    max-width: 832px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

@media (max-width: 768px) {
    .iq_modal-body {
        padding: 24px 20px;
    }
}

@media (max-width: 365px) {
    .iq_modal-body {
        padding: 20px 16px;
    }
}

.iq_modal-body__title {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 56px;
    line-height: 110%;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .iq_modal-body__title {
        font-size: 40px;
    }
}

@media (max-width: 365px) {
    .iq_modal-body__title {
        font-size: 28px;
        margin-bottom: 32px;
    }
}

.iq_modal-body__texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 100%;
    margin-bottom: 40px;
}

@media (max-width: 365px) {
    .iq_modal-body__texts {
        margin-bottom: 32px;
        gap: 20px;
    }
}

.iq_modal-body__text {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-size: 22px;
    font-weight: 400;
    line-height: 135%;
}

@media (max-width: 768px) {
    .iq_modal-body__text {
        font-size: 20px;
    }
}
@media (max-width: 365px) {
    .iq_modal-body__text {
        font-size: 16px;
    }
}

.iq_modal-body__text-link {
    color: #3145ff;
    text-decoration-line: none;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 1.5px;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.iq_modal-body__button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
    width: 100%;
    border-radius: 13px;
    background: #3145ff;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 165%;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .iq_modal-body__button {
        font-size: 20px;
    }
}

@media (max-width: 365px) {
    .iq_modal-body__button {
        font-size: 16px;
    }
}

.iq_modal-body__button-text {
    font-family: 'Montserrat', sans-serif;
}

.iq_modal-body__button-icon {
    min-width: 28px;
    max-width: 28px;
    min-height: 28px;
    max-height: 28px;
}

@media (max-width: 365px) {
    .iq_modal-body__button-icon {
        min-width: 24px;
        max-width: 24px;
        min-height: 24px;
        max-height: 24px;
    }
}
