:root {}

#checkout-form {
    padding: 50px 0;
}

#checkout-form h2 {
    color: #1d2229;
}

#checkout-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#checkout-form .input_line {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    /* flex-wrap: wrap; */
}

#checkout-form input {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    padding: 0 10px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    outline: none;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.input_wrapper {
    width: 100%;
    position: relative;
}

.input_wrapper div.error {
    position: absolute;
    top: 0;
    color: red;
    font-size: 12px;
    left: 0;
    translate: 0 -100%;
}

#checkout-form input.error {
    border-color: red;
}

#checkout-form button {
    border: none;
    background-color: var(--bgcolor);
    border-radius: 5px;
    padding: 10px 20px;
    border: 2px solid var(--bgcolor);
    transition: .4s;
    color: var(--whitec);
}

#checkout-form button[data-disabled="true"] {
    opacity: 0.6;
    pointer-events: none;
    cursor: no-drop;
}

#checkout-form button:hover {
    background-color: var(--bghovercolor);
    color: var(--whitec);
}

#checkout-form button.checkout-prev {
    border: none;
    color: red;
}


#checkout-form .step {
    display: none;
}

#checkout-form .step-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#checkout-form .field-error {
    border: 1px solid red;
}

.form_content-right .pri_item {
    /* padding: 30px 25px 30px 25px; */
}

.form_content-right .pri_item .pri_active ul.pricing_part {
    /* padding: 15px 20px 10px 20px; */
}

.form_content-right .pri_item .pri_active ul.pricing_part li {
    font-size: 14px;
    margin-bottom: 0px;
}

.form_content-right .pri_active {
    margin: 0;
}

.modal_inner {
    max-width: 998px;
    width: 100%;
    margin: 0 auto;
}

.modal_order-block {
    top: 0;
    left: 0;
    position: fixed;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: -1;
    background-color: #fff;
    pointer-events: none;
    opacity: 0;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    padding-top: 10%;
    overflow-y: auto;
}

.modal_order-block.active {
    z-index: 9999999;
    pointer-events: all;
    opacity: 1;
}

.modal_close {
    position: fixed;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 4.s;
    -webkit-transition: 4.s;
    -moz-transition: 4.s;
    -ms-transition: 4.s;
    -o-transition: 4.s;
}

.modal_close span {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 20px;
    height: 2px;
    border-radius: 10px;
    background-color: black;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.modal_close span:first-child {
    rotate: 45deg;
}

.modal_close span:last-child {
    rotate: -45deg;
}

.modal_close:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: white;
}

.spinner.is-loading {
    display: flex;
}

.spinner_block {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 9px solid;
    border-color: #dbdcef;
    border-right-color: #474bff;
    animation: spinner-d3wgkg 1s infinite linear;
}


@keyframes spinner-d3wgkg {
    to {
        transform: rotate(1turn);
    }
}

.form_content-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
}

.form_content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.checkout_btns {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.billing_payment-methods h4 {
    color: #1d2229;
    padding-left: 10px;
    font-size: 24px;
}

.billing_payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.billing_payment-methods .section_title_right {
    border-right: none;
    border-left: 2px solid var(--bgcolor);
    text-align: left;
}

#checkout-form .billing_payment-methods_btns input {
    width: 20px;
    height: 20px;
}

#checkout-form .billing_payment-methods_btns label span {
    color: var(--bgcolor);
    font-size: 24px;
    font-weight: bold;
}

#checkout-form .billing_payment-methods_btns .label_line,
#checkout-form .billing_payment-methods_btns label {
    display: flex;
    align-items: center;
    gap: 10px;
}

#checkout-form .billing_payment-methods_btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

#checkout-form .billing_payment-forms button {
    width: fit-content;
}



div#checkout-form .billing_form.instalments .billing_payment-methods_btns label.label_monobank,
div#checkout-form .billing_form.instalments .billing_payment-methods_btns label.label_liqpay {
    flex-direction: column;
    align-items: flex-start;
}

.label_desc li,
.label_desc p {
    font-size: 14px;
    color: #1d2229;
}

.label_desc ul,
.label_desc p {
    margin-bottom: 5px;
}

.label_desc-content ul {
    list-style: decimal;
}

.label_desc-input i {
    color: red;
    font-size: 12px;
}

.block_range p {
    font-size: 16px;
}

.block_range em {
    font-style: normal;
    padding-left: 3px;
}

.noUi-base,
.noUi-connects {
    height: 10px;
}

.noUi-target {
    height: 10px;
    border-radius: 5px;
}

.noUi-horizontal .noUi-handle {
    border-radius: 50%;
    top: -11px;
    width: 30px;
    height: 30px;

    &::before,
    &::after {
        content: none;
    }
}

.noUi-pips-horizontal {
    height: 50px;
}

.noUi-value,
.noUi-value-sub {
    font-size: 16px;
    color: #1d2229;
}

.block_range-input {
    margin: 20px 0 50px 0;
}

.noUi-touch-area {
    border-radius: 50%;
}

.noUi-marker-horizontal.noUi-marker-large,
.noUi-marker-horizontal.noUi-marker-sub {
    height: 10px;
}

#checkout-form .billing_payment-methods_btns .label_desc-input input {
    width: 100%;
}

.promocode_form {
    gap: 10px;

    & p {
        color: var(--bgcolor);
        margin: 0;
        font-size: 14px;
    }
}

.promocode_form label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

#checkout-form form.promocode_form {
    gap: 10px;

    & input {
        height: 48px;
    }
}

.promo_status {
    display: none;
    color: red;
    font-size: 12px;
    position: absolute;
}

.promo_status.active {
    display: block;
}

.btn_promocode {
    position: relative;
}

.spinner_block-wrap {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--bgcolor);
}

.spinner_block-wrap.is-loading {
    display: flex;
}

.spinner_button {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

@media (max-width: 768px) {
    .form_content {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .form_content-left {
        width: 90%;
    }

    .modal_order-block .modal_inner {
        height: 100%;
    }

    #checkout-form .billing_payment-monobank,
    #checkout-form .billing_payment-liqpay {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 475px) {
    #checkout-form .input_line {
        flex-direction: column;
    }
}