.show_pop {
    cursor: pointer;
}
.pop {
    overflow-y: auto;
    height: 0;
    opacity: 0;
    z-index: -2;
    position: fixed;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(244, 246, 251, 0.8);
    -webkit-transition: 0.4s, height 0s 0.5s;
    -o-transition: 0.4s, height 0s 0.5s;
    transition: 0.4s, height 0s 0.5s;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.pop.active {
    height: 100vh;
    opacity: 1;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
    z-index: 200;
}
.pop__inner {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    position: relative;
    margin: auto;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    padding: 48px 24px 30px 48px;
    background: #ffffff;
    -webkit-box-shadow: 0px 5px 26.6px rgba(228, 228, 228, 0.5);
    box-shadow: 0px 5px 26.6px rgba(228, 228, 228, 0.5);
    position: relative;
    z-index: 50;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    max-height: calc(100vh - 24px);
}
.close_pop {
    cursor: pointer;
}
.pop__bg {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.close-pop {
    position: absolute;
    width: 28px;
    height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    top: 6px;
    right: 6px;
    border-radius: 5px;
    background: #ECF1F7;
}
.close-pop path {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.close-pop:hover path {
    fill: #ffffff;
}
.close-pop:hover {
    background: #0063FA;
}

.steps-form-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}
.steps-form-head:before {
    content: "";
    z-index: 1;
    position: absolute;
    top: 15px;
    left: 40px;
    width: calc(100% - 80px);
    height: 1px;
    background: #EBEFF4;
}
.steps-form-head-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 5;
}
.steps-form-head-item__title {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    font-size: 14px;
    font-weight: bold;
    color: #64748B;
    background: #ECF1F7;
    line-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 4px;
}
.steps-form-head-item.active .steps-form-head-item__title {
    background: -webkit-gradient(linear, left top, right top, from(#9BFC8B), color-stop(49.48%, #58F987), to(#C9FFB6));
    background: -o-linear-gradient(left, #9BFC8B 0%, #58F987 49.48%, #C9FFB6 100%);
    background: linear-gradient(90deg, #9BFC8B 0%, #58F987 49.48%, #C9FFB6 100%);
    color: #ffffff;
}
.steps-form-head-item__description {
    font-size: 12px;
    color: #7E838C;
}
.steps-form-head-item * {
    position: relative;
    z-index: 5;
}
.steps-form-head-item:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 70%;
    height: 100%;
    left: 15%;
    top: 0;
    background: #ffffff;
}
.pop__content {
    overflow: auto;
    width: 100%;
}

.steps-form-body-item {
    display: none;
    padding-right: 6px;
}
.steps-form-body-item.active {
    display: block;
}
.pop__title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #061A29;
}

.tarif-selector {
    border-radius: 5px;
    padding: 10px;
    background: url(/images/bg_card_sales2.jpg) 10% center no-repeat;
    background-size: cover;
    margin-bottom: 16px;
}
.tarif-selector-params-item {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
}
.tarif-selector-params-item__title {
    color: #828790;
}
.tarif-selector-params-item__description {
    font-weight: 500;
}
.tarif-selector-params {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}
.tarif-selector-inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
}
.chbx label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    position: relative;
}
.chbx input {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.chbx__icon {
    width: 26px;
    height: 26px;
    position: relative;
    border: 1px solid #C1C1C1;
    border-radius: 5px;
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
}
.tarif-selector-inputs .chbx__icon {
    border-color: #0063fa;
}
.pop-input label:hover .chbx__icon {
    border-color: #0063fa;
}
.chbx__icon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/images/check.svg) center no-repeat;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    opacity: 0;
}
.chbx input:checked+.chbx__icon:before {
    opacity: 1;
}
.chbx input:checked+.chbx__icon {
    border-color: #0063fa;
}
.chbx__text {
    font-size: 14px;
    line-height: 120%;
    font-weight: 500;
    width: calc(100% - 36px);
}

.tarif-selector-price__title {
    font-size: 14px;
    color: #828790;
    line-height: 100%;
    padding-top: 8px;
}
.tarif-selector-price__description {
    font-size: 22px;
    font-weight: 500;
}
.tarif-selector-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    margin-top: 12px;
}

.pop-input-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}
.pop-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    gap: 6px;
}
.pop-input label {
    font-size: 14px;
    font-weight: 500;
}
.pop-input label span {
    color: #0063FA;
}
.pop-input input {
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 8px 12px;
    border: 1px solid #D8E0E9;
    background: #ECF1F7;
    border-radius: 5px;
    font-size: 14px;
    height: 40px;
    line-height: 100%;
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
    width: 100%;
}
.pop-input input:hover {
    border-color: #0063fa;
}
.pop-input__message {
    display: none;
}
.pop-input-check {
    margin-top: 10px;
}
.pop-input label span {
    display: none;
}
.pop-input.required label span {
    display: inline;
}

.pop-input.error .pop-input__message {
    display: block;
}
.pop-input .pop-input__message {
    position: absolute;
    left: 0;
    bottom: -14px;
    color: #ff0000;
    font-size: 12px;
    line-height: 100%;
}
.pop-input.error input {
    border-color: #ff0000;
}
.pop-requirements .chbx__text {
    font-size: 12px;
    color: #5A5A5A;
    font-weight: normal;
}
.pop-requirements .chbx__text a {
    color: #0063fa;
}
.pop-requirements .pop-input label {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.pop-requirements .pop-input label .chbx__icon {
    margin-top: 3px;
}
.pop-requirements {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 18px;
}
.pop-input.required.error .chbx__icon {
    border-color: #ff0000;
}
.pop-input label .chbx__text span {
    display: block;
    font-weight: normal;
    color: #64748B;
}

.step-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    margin-top: 16px;
}
.step-btn {
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    min-height: 44px;
    text-align: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    line-height: 100%;
    background: #0063FA;
    color: #ffffff;
    font-weight: 500;
}
.step-btn.step-btn_gray {
    color: #1E293B;
    background: #ECF1F7;
}
.step-btn:hover {
    background-color: var(--bg-hover-card);
    color: var(--text-blue);
}



.steps-form-passport__head {
    background: #F1F5F9;
    border-radius: 5px;
    padding: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.steps-form-passport__item {
    cursor: pointer;
    width: calc(50% - 2px);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 16px;
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
}
.steps-form-passport__item:hover {
    background: #d4e6fa;
}
.steps-form-passport__item.active {
    background: #0063FA;
    color: #ffffff;
}
.steps-form-passport {
    margin-bottom: 16px;
}


.pop-input-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
}
.pop-input-row .pop-input {
    width: calc(50% - 8px);
}
.upload-form {
    font-family: sans-serif;
    max-width: 340px;
}
.upload-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 14px;
    color: #1d1d1d;
}
.upload-title {
    font-weight: 600;
    margin-bottom: 3px;
}
.req {
    color: #e00;
}
.upload-subtitle {
    font-size: 12px;
    color: #1E293B;
    margin-bottom: 4px;
}
.upload-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    background: #D9E7FA;
    padding: 12px 14px;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
}
.upload-box:hover {
    background: #d4e6fa;
}
.upload-icon {
    font-size: 18px;
}

.upload-box input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.upload-info {
    margin-top: 6px;
    font-size: 12px;
    color: #64748B;
}
.upload-icon {
    width: 15px;
    height: 15px;
    position: absolute;
    left: 10px;
    top: 12px;
}
.upload-text {
    font-weight: 500;
}
.upload-box:hover {
    background: rgba(193, 218, 255, 1);
    color: #0063fa;
}
.upload-box .upload-icon path {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.upload-box:hover .upload-icon path {
    fill: #0063fa;
}
.upload-input-parent {
    border-radius: 5px;
    padding: 4px;
    background: #F8FAFC;
}
.pop-input.hidden {
    display: none;
}

.steps-form-passport__body {
    margin-top: 16px;
}
.steps-form-passport__body-item {
    display: none;
}
.steps-form-passport__body-item.active {
    display: block;
}
.pop-input__description {
    font-size: 14px;
    color: #929EAE;
    line-height: 110%;
}
.step-privacy {
    font-size: 12px;
    line-height: 110%;
    color: #929EAE;
    margin-top: 16px;
}
.step-privacy a {
    color: #0063fa;
}

.send_step_form {
    position: relative;
    overflow: hidden;
}
.step-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
.send_step_form_preloader {
    display: none;
    position: absolute;
    right: 0;
    gap: 3px;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #0063fa;
}
.step-btn.disabled .send_step_form_preloader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.send_step_form_preloader i {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    -webkit-animation: blink 0.8s infinite alternate;
    animation: blink 0.8s infinite alternate;
}
.send_step_form_preloader i:nth-child(2) { -webkit-animation-delay: .2s; animation-delay: .2s; }
.send_step_form_preloader i:nth-child(3) { -webkit-animation-delay: .4s; animation-delay: .4s; }
@-webkit-keyframes blink {
    0% { opacity: .2; -webkit-transform: scale(.8); transform: scale(.8); }
    100% { opacity: 1; -webkit-transform: scale(1.3); transform: scale(1.3); }
}
@keyframes blink {
    0% { opacity: .2; -webkit-transform: scale(.8); transform: scale(.8); }
    100% { opacity: 1; -webkit-transform: scale(1.3); transform: scale(1.3); }
}

.form-mess {
    text-align: center;
    padding-right: 20px;
}
.form-mess__text {
    font-size: 16px;
    max-width: 392px;
    margin: 32px auto;
}
.form-mess__text b {
    font-weight: 500;
}
.form-mess.form-mess_error {
    color: #ff0000;
}
.close-pop * {
    pointer-events: none;
}

@media(max-width: 480px){
    .pop__inner {
        padding: 48px 17px 60px 17px;
    }
    .pop-input .pop-input__message {
        font-size: 10px;
    }

    .form-mess {
        padding: 0;
    }

}