.intl-tel-input {
    display: none;
}
.form__item {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 30px 20px;
}

.preloader {
    display: none;
    background: white;
    position: absolute;
    top: 0%;
    bottom: 0;
    left: 0%;
    right: 0;
    z-index: 9995;
    background-image: url(../images/preloader.gif);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    opacity: 0.5;
    border-radius: 10px;
}

.form__title {
    font-weight: 700;
    font-size: 45px;
    line-height: 50px;
    text-align: center;
    color: #0F1719;

    margin-bottom: 25px;
}

.form__input-wrapper {
    width: 100%;
    position: relative;
}

.form__input {
    font-size: 16px;
    line-height: 20px;
    color: #0F1719;
    width: 100%;
    background: #F5F5F5;
    border-radius: 3px;
    padding: 13px 15px;
    padding-right: 40px !important;
}

.form__input.valid {
    background: rgba(0, 255, 100, 0.75);
    background-repeat: no-repeat;
    background-image: url(../images/valid-input.png);
    background-position: 95% !important;
    padding-right: 60px !important;
}

.form__input.error {
    background: rgba(255, 0, 0, 0.75);
    background-repeat: no-repeat;
    background-image: url(../images/error-input.png);
    background-position: 95% !important;
    padding-right: 60px !important;
}

label.error {
    position: absolute;
    z-index: 2;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(255, 0, 0, 0.75);
    border-radius: 7px;
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    color: rgba(255, 0, 0, 0.75);
    padding: 7px;
}

/* label.error::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border-radius: 2px;
    transform: translateZ(-1px) rotate(45deg);
    top: -10px;
    left: 18px;
    transform-style: preserve-3d;
    border-top: 2px solid rgba(255, 0, 0, 0.75);
    border-left: 2px solid rgba(255, 0, 0, 0.75);
} */

.form__input::placeholder {
    font-size: 16px;
    line-height: 20px;
    color: #0F1719;
}

.form__submit {
    margin-bottom: 20px;
}

.checkbox-svg {
    margin-bottom: 0 !important;
}

.checkbox-svg label.checked-svg {
    width: 15.9px !important;
    height: 15.9px !important;
}

.privacy-checkbox {
    padding-left: 10px !important;
    font-size: 12px !important;
    line-height: 15px !important;
    color: #000 !important;
}

.privacy-checkbox a {
    text-decoration: underline;
}

@media (max-width: 740px) {
    .form__item {
        width: 340px;
    }

    .form__title {
        font-size: 35px;
        line-height: 40px;
    }
}

@media (max-width: 460px) {
    .form__item {
        max-width: 460px;
        width: 100%;
    }
}