
.container2 {
    width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
}

.input {
    height: 55px;
    padding: 0 21px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 18px;
    font-family: "Cera Pro";
}
.input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.section-form {
    padding: 200px 0;
    overflow: hidden;
}

.sf-form__row {
    margin-bottom: 20px;
}

.phone-inputbox label {
    left: 80px;
}
.phone-inputbox input {
    padding-left: 80px;
}

.phone-code__wrap {
    display: flex;
}

.flag-select {
    width: 70px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: 1px;
    top: 1px;
    padding: 0 7px 0 15px;
    z-index: 3;
    cursor: pointer;
    border-radius: 8px 0 0 8px;
}
.flag-select:hover {
    background: #f0f0f0;
}
.flag-select:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: #000000 transparent transparent transparent;
}
.flag-select img {
    width: 28px;
    display: block;
    border-radius: 3px;
}

.phone-code__modal {
    width: 570px;
    height: 100vh;
    padding: 70px 80px !important;
    cursor: default !important;
    border-radius: 10px;
    box-shadow: 0 20px 100px rgba(0, 0, 0, 0.2);
}

.country-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.country-list li {
    display: flex;
    align-items: center;
    font-size: 15px;
    margin: 20px 0;
    cursor: pointer;
}
.country-list li img {
    width: 28px;
    display: block;
    margin-right: 20px;
    border-radius: 3px;
}

.phone-code__form .reg-input {
    margin-bottom: 25px;
}

.inputbox {
    position: relative;
}

.sf-form .input {
    height: 50px;
    width: 100%;
}

.reg-modal__title {
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 36px;
}

.textarea {
    height: 150px;
    padding: 21px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 18px;
    font-family: "Cera Pro";
    width: 100%;
    resize: none;
}
.textarea::placeholder {
    color: rgba(0, 0, 0, 0.3);
}
.textarea:focus {
    border-color: #000;
}

.sf-row {
    display: flex;
    justify-content: space-between;
}

.sf-form {
    width: 488px;
}

.sf-text {
    max-width: 488px;
}

.sf-social {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    margin-top: 130px;
}
.sf-social h4 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 30px;
}

.checkbox {
    display: flex;
    align-items: center;
}
.checkbox input {
    display: none;
}
.checkbox input:checked + label {
    background: var(--base-color);
}
.checkbox input:checked + label span {
    transform: translate(22px, 0);
}
.checkbox label {
    display: block;
    min-width: 50px;
    height: 28px;
    background: #EEEEEE;
    border-radius: 30px;
    margin-right: 20px;
    position: relative;
    cursor: pointer;
    transition: all
    ease 0.3s;
}
.checkbox label span {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    margin: 2px;
    transition: all
    ease 0.3s;
    background: #fff;
}
.checkbox span {
    display: block;
    font-size: 16px;
    line-height: 120%;
}
.checkbox span a {
    text-decoration: none;
    color: var(--base-color);
}
.checkbox span a:hover {
    text-decoration: underline;
}

.sf-text h3 {
    font-size: 50px;
    font-weight: normal;
    margin: 0 0 50px;
}
.sf-text p {
    line-height: 150%;
}

.sf-social__row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sf-social__row a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #CDCDCD;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease 0.3s;
}
.sf-social__row a:hover {
    background-color: var(--base-color);
}

.sf-form__checkbox {
    margin: 50px 0;
}

.button2 {
    height: 60px;
    border: none;
    cursor: pointer;
    width: 100%;
    background: var(--base-color);
    color: #fff;
    transition: all ease 0.3s;
    border-radius: 8px;
    font-family: "Cera Pro";
    padding: 0 20px;
    overflow: hidden;
    font-size: 18px;
    font-weight: 500;
    position: relative;
}
.button2:disabled {
    background: #F5F5F5;
    color: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    user-select: none;
}
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fadeIn {
    animation-name: fadeIn;
}

.slideRight {
    animation-name: slideRight;
}

@keyframes slideRight {
    from {
        transform: translate(-10%, 0);
        opacity: 0;
    }
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}
.slideLeft {
    animation-name: slideLeft;
}

@keyframes slideLeft {
    from {
        transform: translate(10%, 0);
        opacity: 0;
    }
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}
.section-text {
    overflow: hidden;
}

.order-modal {
    font-family: "Cera Pro";
}

.order-modal {
    padding: 0 !important;
    min-height: 100%;
}
.order-modal .fancybox-close-small {
    display: none !important;
}

.phone-code-sort {
    height: 50px;
    width: 100%;
}

.order-modal__wrapp {
    min-height: calc(100vh - 12px);
    min-height: calc(100svh - 12px);
    min-height: calc(100dvh - 12px);
    width: 100vw;
    max-width: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
}

.order-modal__title {
    margin-bottom: 40px;
    width: 100%;
    max-width: 488px;
    text-align: center;
}
.order-modal__title h3 {
    font-size: 50px;
    font-weight: normal;
    margin: 0 0 15px;
}
.order-modal__title span {
    display: block;
    font-size: 24px;
}

.simplebar-placeholder {
    height: 100vh !important;
}

.order-modal__close {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}
.order-modal__close:hover {
    color: var(--base-color);
}

.main-title__mob {
    display: none;
}

.sm-visible {
    display: none;
}

.button3 {
    height: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 33px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #000;
    border-radius: 8px;
}
.button3:hover {
    background: #000;
    color: #FFF;
}

.s5-btn {
    margin-top: 60px;
}

.icon-apple {
    margin-top: -4px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/svg/apple.svg) no-repeat center;
}

.icon-wa {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/svg/wa.svg) no-repeat center;
}

.icon-tg {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/svg/tg.svg) no-repeat center;
}

.icon-mail {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/svg/mail.svg) no-repeat center;
}

.icon-dzen {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/svg/dzen.svg) no-repeat center;
}

.icon-vk {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/svg/vk.svg) no-repeat center;
}

.icon-yt {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/svg/yt.svg) no-repeat center;
}

.icon-check2 {
    width: 40px;
    height: 40px;
    display: inline-block;
    background: url(../images/svg/check22.svg) no-repeat center;
}

.success-modal__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20vh 0;
}
.success-modal__title h3 {
    font-size: 32px;
    font-weight: normal;
    margin: 20px 0;
}
.success-modal__title span {
    line-height: 140%;
}

.fancybox-slide--html {
    padding: 0 !important;
}


@media (max-width: 1240px) {
    .sf-form {
        width: 50%;
        max-width: 50%;
        padding: 0 20px;
    }
    .sf-text {
        width: 50%;
        max-width: 50%;
        padding: 0 20px;
    }
    .sf-row {
        margin: 0 -20px;
    }
    .order-modal__wrapp .sf-row {
        margin: 0;
        width: 100%;
        max-width: 488px;
    }
    .order-modal__wrapp .sf-form {
        width: 100%;
        max-width: 488px;
        padding: 0;
    }
}
@media (max-width: 992px) {
    .main-form__row {
        flex-wrap: wrap;
        gap: 0;
        margin: 0 -10px;
    }
    .main-form__btn {
        width: 100%;
        flex: 1 1 100%;
        padding: 0 10px;
    }
    .main-form__col {
        flex: 0 0 50%;
        padding: 0 10px;
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {
    .button:disabled {
        background: rgba(0, 0, 0, 0.5);
        color: rgba(255, 255, 255, 0.7);
    }
    .main-form__title,
    .main-form__subtitle {
        display: none;
    }
    .main-form {
        position: absolute;
        bottom: 0;
        padding: 34px 10px;
        border-radius: 0;
        background: transparent;
    }
    .main-form__row {
        flex-direction: column;
    }
    .order-modal__title {
        text-align-last: left;
    }
    .order-modal__title h3 {
        font-size: 32px;
    }
    .order-modal__title span {
        font-size: 14px;
    }
    .section-form {
        padding: 60px 0;
    }
    .sf-row {
        flex-direction: column-reverse;
        margin: 0;
    }
    .sf-form {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    .sf-text {
        padding: 0;
        margin-bottom: 40px;
        width: 100%;
        max-width: 100%;
    }
    .sf-text h3 {
        font-size: 32px;
        font-weight: normal;
        margin-bottom: 30px;
    }
    .sf-text p {
        font-size: 14px;
    }
    .sf-social {
        display: none;
    }
    .s5-btn {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }
    .success-modal__title span {
        font-size: 14px;
    }
}
@media (max-width: 540px) {
    .phone-code__modal {
        padding: 40px 20px !important;
    }
    .order-modal {
        padding: 0 15px !important;
    }
    .button3 {
        height: 55px;
        width: 100%;
        font-size: 16px;
    }
}

.button {
    display: inline-block;
    height: 48px;
    line-height: 48px;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    padding: 0 50px;
    text-align: center;
    border: none;
    transition: all
    ease 0.3s;
}
.button.button-base {
    background: var(--base-color);
    color: #fff;
}
.button.button-base:hover {
    background: var(--hover-color);
}
.button.button-white {
    background: #fff;
    border: 1px solid #DDDDDD;
    color: #000;
    line-height: 44px;
}
.button.button-white:hover {
    border-color: var(--base-color);
    color: var(--base-color);
    background-color: transparent;
}
