@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
    position: relative;
    font-family: var(--ff-inter);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--c-white);
    background-color: var(--c--dark);
    min-width: 320px;
}

main {
    padding-top: 50px;
    padding-bottom: 50px;
    transition: all 0.4s ease-in-out;
}

.hidden {
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    height: 0;
    width: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

.container {
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    max-width: 1170px;
}

/* Reset and base styles  */

* {
    padding: 0px;
    margin: 0px;
    border: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: inherit;
    font-weight: inherit;
}

ul,
ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button,
input[type=submit] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

:root {
    --ff-inter: "Inter", sans-serif;
    --ff-plexSans: "IBM Plex Sans", sans-serif;
    --c-white: #ffffff;
    --c--dark: #000000;
    --c--second-dark: #191919;
    --c-lightgray: #8f8f8f;
    --c-gray: #3c3c3d;
    --c-accent: #ff9d2e;
    --c-accent-hover: #f7a600;
    --c-accent-second: #6bb1ff;
}

.header {
    padding: 15px 0;
}

.header .logo img {
    width: 120px;
    height: auto;
}

@media (max-width: 860px) {
    .header .logo img {
        width: 100px;
    }
}

@media (max-width: 450px) {
    .header .logo img {
        width: 80px;
    }
}

.hero .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 860px) {
    .hero .container {
        grid-template-columns: repeat(1, 1fr);
        gap: 45px;
    }
}

.hero__info {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    order: 1;
}

@media (max-width: 860px) {
    .hero__info {
        order: 2;
    }
}

.hero__img {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    order: 2;
}

@media (max-width: 860px) {
    .hero__img {
        order: 1;
    }
}

@media (max-width: 450px) {
    .hero__img img {
        height: 350px;
    }
}

.hero__title {
    color: var(--c-accent);
    font-family: var(--ff-inter);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

@media (max-width: 860px) {
    .hero__title {
        font-size: 38px;
        margin-bottom: 16px;
    }
}

@media (max-width: 450px) {
    .hero__title {
        font-size: 32px;
    }
}

.hero__subtitle {
    color: var(--c-white);
    font-family: var(--ff-inter);
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 60px;
}

@media (max-width: 860px) {
    .hero__subtitle {
        font-size: 26px;
        margin-bottom: 45px;
    }
}

@media (max-width: 450px) {
    .hero__subtitle {
        font-size: 20px;
    }
}

.info {
    padding-top: 75px;
    padding: 75px 15px 0 15px;
}

@media (max-width: 860px) {
    .info {
        padding: 55px 15px 0 15px;
    }
}

@media (max-width: 450px) {
    .info {
        padding: 35px 15px 0 15px;
    }
}

.info .container {
    padding: 0;
    border-radius: 40px;
    background-color: var(--c--second-dark);
}

@media (max-width: 860px) {
    .info .container {
        border-radius: 30px;
    }
}

@media (max-width: 450px) {
    .info .container {
        border-radius: 20px;
    }
}

.info__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 60px 60px 35px 60px;
}

@media (max-width: 860px) {
    .info__top {
        padding: 40px 40px 25px 40px;
    }
}

@media (max-width: 450px) {
    .info__top {
        padding: 20px 20px 25px 20px;
    }
}

.info__top .teg-wrapper {
    padding-top: 15px;
    margin-bottom: 16px;
}

@media (max-width: 860px) {
    .info__top .teg-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 0;
    }
}

.info__top .teg-wrapper img {
    height: 43px;
}

.info__top .teg {
    max-width: 124px;
    padding: 10px;
    border-radius: 66px;
    border: 1.333px solid var(--c-gray);
    color: var(--c-lightgray);
    font-family: var(--ff-plexSans);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

@media (max-width: 860px) {
    .info__top .teg {
        font-size: 14px;
    }
}

@media (max-width: 450px) {
    .info__top .teg {
        font-size: 12px;
    }
}

.info__top-title {
    color: var(--c-white);
    font-family: var(--ff-inter);
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}

@media (max-width: 860px) {
    .info__top-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
}

@media (max-width: 450px) {
    .info__top-title {
        font-size: 20px;
        margin-bottom: 33px;
    }
}

.info__top-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
}

.info__top-text p {
    color: var(--c-white);
    font-family: var(--ff-plexSans);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 860px) {
    .info__top-text p {
        font-size: 18px;
        gap: 15px;
    }
}

@media (max-width: 450px) {
    .info__top-text p {
        font-size: 16px;
    }
}

.info__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 2px solid #2a2a2a;
    padding: 20px 60px;
}

@media (max-width: 860px) {
    .info__bottom {
        flex-direction: column;
        padding: 20px 40px;
    }
}

@media (max-width: 450px) {
    .info__bottom {
        padding: 20px 20px;
    }
}

.info__bottom .start-btn {
    max-width: 335px;
}

@media (max-width: 450px) {
    .info__bottom .start-btn {
        max-width: 100%;
    }
}

.info__bottom-text {
    color: var(--c-lightgray);
    font-family: var(--ff-plexSans);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 860px) {
    .info__bottom-text {
        font-size: 14px;
    }
}

@media (max-width: 450px) {
    .info__bottom-text {
        font-size: 12px;
    }
}

.info__bottom-text a {
    color: var(--c-accent-second);
}

.info__bottom-text a:hover {
    text-decoration: underline;
}

@media (min-width: 860px) {
    .desctop-hidden {
        display: none;
    }
}

@media (max-width: 860px) {
    .mobile-hidden {
        display: none;
    }
}

.start-btn {
    display: flex;
    padding: 16px;
    width: 100%;
    max-width: 270px;
    justify-content: center;
    align-items: center;
    border-radius: 18.834px;
    background: var(--c-accent);
    box-shadow: 0 1.345px 26.906px 0 rgba(0, 0, 0, 0.08);
    color: var(--c--second-dark);
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: all 0.2s ease-in-out;
}

.start-btn:hover {
    background: var(--c-accent-hover);
    transform: scale(1.02);
}

.start-btn:active {
    transform: scale(1);
}

@media (max-width: 450px) {
    .start-btn {
        max-width: 100%;
        font-size: 20px;
        padding: 14px;
    }
}

.pass .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

@media (max-width: 860px) {
    .pass .container {
        margin-bottom: 40px;
    }
}

@media (max-width: 450px) {
    .pass .container {
        margin-bottom: 20px;
    }
}

.pass__logo {
    margin-bottom: 20px;
}

.pass__logo img {
    width: 122px;
}

@media (max-width: 860px) {
    .pass__logo img {
        width: 100px;
    }
}

@media (max-width: 450px) {
    .pass__logo img {
        width: 80px;
    }
}

.pass__title {
    max-width: 740px;
    color: var(--c-accent);
    text-align: center;
    font-family: var(--ff-inter);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 16px;
}

@media (max-width: 860px) {
    .pass__title {
        max-width: 650px;
        font-size: 28px;
    }
}

@media (max-width: 450px) {
    .pass__title {
        font-size: 22px;
    }
}

.pass__subtitle {
    color: var(--c-white);
    font-family: var(--ff-inter);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media (max-width: 860px) {
    .pass__subtitle {
        font-size: 25px;
    }
}

@media (max-width: 450px) {
    .pass__subtitle {
        font-size: 20px;
    }
}

.quiz__wrapper {
    padding: 0 15px;
}

.quiz__wrapper .container {
    position: relative;
    padding: 0 15px;
    height: 605px;
    margin-bottom: 40px;
}

@media (max-width: 860px) {
    .quiz__wrapper .container {
        margin-bottom: 30px;
    }
}

@media (max-width: 450px) {
    .quiz__wrapper .container {
        margin-bottom: 20px;
    }
}

.quiz__wrapper .container--last {
    position: relative;
    height: auto;
}

.quiz {
    width: 100%;
    max-width: 630px;
    height: 605px;
    margin: 0 auto;
    margin-bottom: 40px;
    padding: 30px 40px;
    border-radius: 24px;
    background-color: var(--c--second-dark);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
    z-index: 0;
}

.quiz--active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.quiz--hidden {
    transform: translateX(-50%) translateY(-40px);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.quiz--last {
    position: relative;
    height: auto;
    margin: 0;
}

@media (max-width: 860px) {
    .quiz {
        padding: 25px 30px;
    }
}

@media (max-width: 450px) {
    .quiz {
        padding: 20px;
    }
}

.quiz__number {
    color: var(--c-white);
    font-family: var(--ff-inter);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px;
}

@media (max-width: 860px) {
    .quiz__number {
        font-size: 24px;
    }
}

@media (max-width: 450px) {
    .quiz__number {
        font-size: 20px;
    }
}

.quiz__number--last {
    text-align: center;
}

.quiz__question {
    color: var(--c-white);
    font-family: var(--ff-inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
}

@media (max-width: 860px) {
    .quiz__question {
        font-size: 18px;
        margin-bottom: 23px;
    }
}

@media (max-width: 450px) {
    .quiz__question {
        font-size: 16px;
        margin-bottom: 16px;
    }
}

.quiz__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.quiz__item {
    border-radius: 4px;
    background: var(--c-accent);
    text-align: center;
    width: 100%;
    padding: 23px;
    color: #15192a;
    font-family: var(--ff-inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

@media (max-width: 860px) {
    .quiz__item {
        font-size: 17px;
        padding: 18px 20px;
    }
}

@media (max-width: 450px) {
    .quiz__item {
        font-size: 14px;
        padding: 15px 20px;
    }
}

.quiz__item:hover {
    background: var(--c-accent-hover);
    transform: scale(1.02);
}

.quiz__item:active {
    transform: scale(1);
}

.protection {
    background-color: #373737;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    border-radius: 10px;
    margin-top: 24px;
}

@media (max-width: 860px) {
    .protection {
        padding: 20px;
        margin-top: 22px;
    }
}

.protection__img {
    width: 48px;
}

@media (max-width: 860px) {
    .protection__img {
        width: 39px;
    }
}

@media (max-width: 450px) {
    .protection__img {
        width: 30px;
    }
}

.protection__title {
    color: var(--c-white);
    font-family: var(--ff-inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 8px;
}

@media (max-width: 860px) {
    .protection__title {
        font-size: 18px;
    }
}

@media (max-width: 450px) {
    .protection__title {
        font-size: 16px;
    }
}

.protection__text {
    color: var(--c-white);
    font-family: var(--ff-inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 860px) {
    .protection__text {
        font-size: 13px;
    }
}

@media (max-width: 450px) {
    .protection__text {
        font-size: 12px;
    }
}

.footer {
    padding: 0 15px;
}

.footer .container {
    background-color: var(--c--second-dark);
    padding: 40px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 860px) {
    .footer .container {
        flex-direction: column;
        padding: 30px;
        gap: 15px;
    }
}

@media (max-width: 450px) {
    .footer .container {
        padding: 20px;
    }
}

.footer__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

@media (max-width: 560px) {
    .footer__list {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
}

.footer__link {
    gap: 10px;
    color: var(--c-white);
    text-align: center;
    font-family: var(--ff-inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 450px) {
    .footer__link {
        font-size: 14px;
    }
}

.footer__link:hover {
    color: var(--c-white) !important;
    text-decoration: underline !important;
}

.footer__copiright {
    color: var(--c-white);
    text-align: center;
    font-family: var(--ff-inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 450px) {
    .footer__copiright {
        font-size: 14px;
    }
}

/*# sourceMappingURL=main.css.map */

/*Popup form*/

.RForm input:not([type="tel"],
[type="checkbox"]) {
    -webkit-appearance: none;
    box-sizing: border-box;
    font-size: 16px;
    height: 60px;
    line-height: 1.33;
    outline: none;
    padding: 0 20px;
    width: 100%;
    color: #d9d9d9;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    background-color: transparent;
    margin-bottom: 16px;
    font-family: var(--ff-inter), Arial, sans-serif;
}

.selected-country {
    display: flex;
    width: fit-content;
}

.RForm .popUp-form-register-phone-wrap {
    display: flex;
    align-items: center;
    -webkit-appearance: none;
    box-sizing: border-box;
    font-size: 16px;
    height: 60px;
    line-height: 1.33;
    margin: 0;
    outline: none;
    padding: 0 20px;
    width: 100%;
    color: #d9d9d9;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    background-color: transparent;
    font-family: var(--ff-inter), Arial, sans-serif;
}

.RForm button {
    color: white;
    background: linear-gradient(94.61deg, #FFFFFF -1.02%, #B19DFF -1%, #001AFF 163.94%, #226DE6 164.44%);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    outline: none;
    width: 100%;
    -webkit-appearance: none;
    border: 0;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    height: 60px;
    margin: 16px 0;
    padding-left: 60px;
    padding-right: 60px;
    text-align: center;
    white-space: nowrap;
    font-family: var(--ff-inter), Arial, sans-serif;
}

.RForm input[type="tel"] {
    background: transparent;
    border: none;
    font-size: 16px;
    margin-left: 5px;
    font-family: var(--ff-inter), Arial, sans-serif;
    width: 100%;
    outline: none;
    height: 100%;
    color: white;
}

.RForm a {
    color: #78B5FF;
    text-decoration: none
}

.RForm .checkbox-terms {
    color: #d9d9d9;
    font-family: var(--ff-inter), Arial, sans-serif;
}

.popUp-form-register-phone-wrap.select-drop-menu-hidden .custom-select-wrap {
    max-height: 0;
    transition: all .4s ease-in-out;
}

.popUp-form-register-phone-wrap.select-drop-menu-hidden .selected-country-arrow {
    transition: all .4s ease-in-out;
}

.popUp-form-register-phone-wrap.select-drop-menu-show .custom-select-wrap {
    max-height: 200px;
    transition: all .4s ease-in-out;
}

.popUp-form-register-phone-wrap {
    position: relative;
}

.popUp-form-register-phone-wrap.select-drop-menu-show .selected-country-arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    transition: all .4s ease-in-out;
}

.popUp-form-register-phone-wrap .custom-select-wrap {
    background-color: #141414;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    max-height: 300px;
    overflow-y: scroll;
    position: absolute;
    top: 120%;
    width: 100%;
    z-index: 3;
    left: 0;
}

#privacyPolicy-error+.checkbox-terms,
#privacyPolicy-error+.checkbox-terms a {
    color: red;
}

label.submit-btn-error {
    color: red;
    top: -3px;
    position: relative;
}

.custom-countryElem {
    align-items: center;
    display: flex;
    padding: 15px;
    color: #fff;
}

.custom-countryElem img {
    height: 18px;
    margin-right: 12px;
    width: 24px;
}

.selected-country-arrow svg {
    outline: none;
}

.selected-country-flag,
.selected-country-arrow {
    display: flex;
}

#email-error,
#fullname-error,
#popUp-register-phone-error {
    position: absolute;
    bottom: 0;
    left: 0;
    color: red;
    font-size: 12px;
}

#popUp-register-phone-error {
    bottom: -16px;
}

.input-wrap {
    position: relative;
}

/*End popup form*/

/* === SMS form integration ============================================== */

/* --- Preloader: show via .show() (display:block → flex centered) ------- */
#preloader[style*="block"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* --- Popups: dark theme over addelements.css defaults ------------------ */
.popup {
    background: rgba(0, 0, 0, 0.75);
}

.popup_content {
    background: var(--c--second-dark);
    border: 1px solid var(--c-gray);
    color: var(--c-white);
    font-family: var(--ff-inter);
    max-width: 460px;
    width: 90%;
    padding: 36px 32px 40px;
}

.popup * {
    font-family: var(--ff-inter) !important;
}

.popup h3 {
    color: var(--c-white);
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 16px;
    text-align: center;
}

.popup p {
    color: var(--c-lightgray);
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 22px;
}

.popup p #currPhone {
    color: var(--c-white);
    font-weight: 600;
}

.popup label.jhuy {
    display: block;
    margin-bottom: 24px;
    position: relative;
}

.popup .t-input,
.popup input[type="text"],
.popup input[type="tel"] {
    background: var(--c--dark);
    border: 1px solid var(--c-gray);
    border-radius: 12px;
    color: var(--c-white);
    padding: 14px 18px;
    font-size: 16px;
    width: 100%;
}

.popup .t-input:focus {
    border-color: var(--c-accent);
}

.popup .t-input::placeholder {
    color: var(--c-lightgray);
}

.popup .t-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px;
    border-radius: 18.834px;
    background: var(--c-accent);
    color: var(--c-white);
    font-weight: 600;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.popup .t-submit:hover {
    background: var(--c-accent-hover);
    transform: scale(1.02);
}

.popup .flex_uh {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.popup .change_phone {
    color: var(--c-accent-second);
    cursor: pointer;
    text-align: center;
    font-size: 15px;
    text-decoration: underline;
}

.popup .change_phone:hover {
    color: var(--c-accent);
}

.popup .close_popup {
    top: 18px;
    right: 18px;
}

.popup .close_popup svg rect {
    fill: var(--c-lightgray);
    transition: 0.2s;
}

.popup .close_popup:hover svg rect {
    fill: var(--c-white);
}

@media (max-width: 575px) {
    .popup_content {
        padding: 60px 24px 40px;
    }
    .popup h3 {
        font-size: 22px;
    }
}

/* --- intlTelInput dropdown (dark theme) -------------------------------- */
.iti {
    width: 100%;
}

.iti__country-list {
    background: var(--c--second-dark);
    border: 1px solid var(--c-gray);
    color: var(--c-white);
}

.iti__country:hover,
.iti__country.iti__highlight {
    background: var(--c-gray);
}

.iti__country-name,
.iti__dial-code {
    color: var(--c-white);
}

.iti__divider {
    border-bottom-color: var(--c-gray);
}

/* §8.3: padding-left under flag inside popup */
.popup_sms_change .iti .t-input,
.popup_sms_change .iti input[type="tel"] {
    padding-left: 64px !important;
}

/* --- Validation errors: readable placeholder + popup-specific positioning */
input.error::placeholder {
    color: #d85030;
    opacity: 0.6;
}

.popup_sms #codeError,
.popup_sms_change #phoneConfirm-error {
    position: relative !important;
    margin: 6px 0 0 0 !important;
    font-size: 12px;
    color: #ef4444;
    background: transparent !important;
    left: auto;
    bottom: auto;
}

/* Единое позиционирование ошибок — под инпутом, одинаково для всех полей */
.RForm #name-error,
.RForm #email-error {
    position: absolute !important;
    top: 100% !important;
    bottom: auto !important;
    left: 16px !important;
    /* -16px компенсирует margin-bottom инпута, который входит в высоту .input-wrap */
    margin: -12px 0 0 0 !important;
    font-size: 12px !important;
    color: #ef4444 !important;
    background: transparent !important;
    font-family: var(--ff-inter), Arial, sans-serif !important;
}

.iti #phone-error,
.iti #phoneConfirm-error {
    position: absolute !important;
    top: 100% !important;
    bottom: auto !important;
    left: 16px !important;
    margin: 4px 0 0 0 !important;
    font-size: 12px !important;
    color: #ef4444 !important;
    background: transparent !important;
    font-family: var(--ff-inter), Arial, sans-serif !important;
}

/* Запас под текст ошибки чтобы не перекрывал следующий инпут */
.RForm .input-wrap {
    margin-bottom: 20px;
}

/* --- Main form phone: intlTelInput wrapper = same look as other inputs - */
.RForm .iti {
    -webkit-appearance: none;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: 60px;
    width: 100%;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    background-color: transparent;
    margin-bottom: 16px;
}

.RForm .iti input[type="tel"] {
    border: none;
    background: transparent;
    margin-left: 0;
    height: 100%;
    padding: 0 20px 0 64px;
    width: 100%;
    color: #d9d9d9;
    font-size: 16px;
    outline: none;
    font-family: var(--ff-inter), Arial, sans-serif;
}

/* === End SMS form integration ========================================== */