/* checkout */

.checkout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 75px 0 137px;
    min-height: calc(100vh - 162px);
}

.checkout .checkout-container {
    display: -ms-grid;
    display: grid;
    gap: 60px;
    -ms-grid-columns: 2.4fr 60px 1fr;
    grid-template-columns: 2.2fr 1fr;
}

.checkout .checkout-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.checkout .checkout-header h2,
.checkout .checkout__title{
    color: #203251;
    font-size: 20px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 0;
    text-transform: uppercase;
}
.checkout .empty-checkout-text{
    font-size: 17px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: uppercase;
}
.checkout .checkout-count {
    background: #CCD74D;
    color: #203251;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    text-align: center;
    padding: 3px 7px;
}

.checkout .cart-item-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 600px;
    overflow: auto;
    margin-bottom: 34px;
    background: #F0F2F5;
    padding: 49px;
    gap: 20px;
}

.checkout .cart-item {
    background: #F0F2F5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.checkout .cart-item-body {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #ffffff;
    padding: 19px 0 16px 19px;
    gap: 10px;
    border: 1px solid #AAC1E7;
}

.checkout .product-image {
    width: 84px;
    height: auto;
    margin-right: 10px;
}

.checkout .cart-item-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
}

.checkout .cart-item-header {
    margin-bottom: 25px;
}

.checkout .cart-item-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    text-align: left;
    margin-bottom: 9px;
}

.checkout .cart-item .price {
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
}
.checkout .product-details-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 46px;
}
.checkout .product-details {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    letter-spacing: 0.03em;
    gap: 46px;
}

.checkout .product-details span {
    display: block;
}

.checkout .product-details strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.03em;
}

.checkout .quantity-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 45px;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
}

.checkout .quantity-btn {
    background: none;
    cursor: pointer;
    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;
}

.checkout .quantity-input {
    width: 27px;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
}

.checkout .remove-btn-container {
    background: #F0F2F5;
    width: 34px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #AAC1E7;
    border-left: none;
}

.checkout .remove-btn {
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.checkout .total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #203251;
    padding-bottom: 22px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.checkout .total-text {
    font-size: 17px;
    font-weight: 800;
    line-height: 19px;
}

.checkout .total-price {
    font-size: 20px;
    font-weight: 800;
    line-height: 19px;
    text-align: end;
    white-space: nowrap;
}

.checkout .order-form {
    margin-bottom: 60px;
}

.checkout .field-sortable {
    position: relative;
    margin-bottom: 12px;
}

.checkout .field-sortable input {
    width: 100%;
    padding: 17px 19px;
    border: 1px solid #CCD74D;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 54px;
}
.checkout .qc-shipping-address .field-sortable input.ve-input{
    /*height: 36px;*/
    /*border: 1px solid #D9D9D9;*/
    /*color: #203251;*/
}
.checkout .field-sortable div.col-full{
    position: relative;
    margin-top: 10px;
    padding: 0;
}
.checkout .dropdown .dropdown-content .field-sortable div.col-full{
    padding: 0;
}
.checkout .dropdown .dropdown-content .field-sortable label{
    padding: 0;
}
.checkout #page1 .field-sortable div.col-full::before{
    content: none;
}
.checkout .field-sortable div.col-full::before{
    content: '*';
    position: absolute;
    top: 5px;
    right: 25px;
    color: red;
    font-size: 20px;
    z-index: 1;
}

.checkout .required {
    color: red;
    position: absolute;
    right: 10px;
    top: 30px;
    font-size: 20px;
    font-weight: 700;
    line-height: 18px;
}

.checkout .checkbox-group {
    margin: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.checkout .checkbox-group label {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
}

.checkout .field-sortable label {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
}
.checkout .field-sortable label.col-full.ve-label{
    padding: 0;
}
.checkout .field-sortable label span qc_raw{
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
}
.checkout .cart-product-color {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.checkout .color-circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
    -webkit-transition: border-color 0.3s, -webkit-transform 0.2s;
    transition: border-color 0.3s, -webkit-transform 0.2s;
    -o-transition: border-color 0.3s, transform 0.2s;
    transition: border-color 0.3s, transform 0.2s;
    transition: border-color 0.3s, transform 0.2s, -webkit-transform 0.2s;
}


.checkout .delivery-window {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 87px;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
}
.checkout .delivery-window>div {
    flex: 1;
}
.checkout .delivery-section {
    width: 376px;
    padding: 40px 0 0;
}

.checkout .payment-section {
    background: #F0F2F5;
    padding: 40px 40px 65px;
    max-width: 506px;
 /*    width: 506px; */
}

.checkout .payment-section .checkout-header {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.checkout .nova-poshta-logo {
    margin-left: auto;
}

.checkout .nova-poshta-logo img {
    width: 100px;
}

.checkout .dropdown{
    width: 100%;
    padding: 10px 0;
    margin-bottom: 20px;
    border-radius: 5px;
}
.dropdown-content .item{
    padding: 0;
}

.checkout .delivery-options label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    color: #203251 !important;
}

.checkout .delivery-options input {
    margin-right: 10px;
}

.checkout .delivery-options-item {
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
    text-align: left;
}

.checkout .delivery-window .price {
    color: #2D7AFF;
    font-size: 13px;
    font-weight: 600;
    line-height: 16px;
    text-align: left;
    margin-left: 30px;
}

.checkout .apple-pay {
    width: 100%;
    padding: 15px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}

.checkout .alternative {
    text-align: center;
    color: #969696;
    padding: 23px 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
}

.checkout .card-payment {
    margin-bottom: 58px;
}

.checkout .card-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 16px;
}

.checkout .card-icons-title span {
    font-size: 13px;
    font-weight: 700;
    line-height: 16px;
    text-align: left;
    color: #969696;
}

.checkout .card-payment label {
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
}

.checkout .card-inputs input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.checkout .card-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    padding-top: 20px;
}

.checkout .pay-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
}

.checkout .back-to-checkout {
    position: absolute;
}

.checkout .mob-next-step {
    display: none;
    margin: 0 auto;
}
.qc  .process{
    display: none;
}
.qc.edit .process{
    display: block;
}
.step.qc-payment{
    display: none;
}
.ve-radio {
    padding-left: 2.7em !important;
    margin-bottom: 0px !important;
    height: 30px;
}

.ve-radio::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 29px;
    height: 29px;
    border: 1px solid #203251;
    background: white;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.ve-radio--selected::before {
    border-color: #CCD74D;
    background: #CCD74D;
}

.ve-radio--selected::after {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid #CCD74D;
    border-width: 0 2px 2px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.qc .checkout .ve-radio--selected {
    color: #203251!important;
}
.qc.qc .ve-checkbox.ve-checkbox [type=checkbox]:checked + i:before{
    border: 1px solid #CCD74D !important;
    background-color: #CCD74D !important;
}
#d_quickcheckout .ve-checkbox i:after, #d_quickcheckout .ve-checkbox i:before{
    border-radius: 0;
}
#d_quickcheckout .ve-checkbox i:after{
    border-color: #CCD74D;
}
.qc.qc .ve-checkbox i:before{
    border: 1px solid #203251;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 21px;
    height: 21px;
}
.qc.qc .ve-checkbox i:after{
    width: 1em;
    height: 1em;
}

.checkout .radio-input-item{
    margin-bottom: 17px;
}
.qc.qc .qc-row{
    margin-right: 0px;
    margin-left: 0px;
}
.checkout .qc-payment-method .ve-radio{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.checkout .ve-checkbox{
    padding-left: 30px;
}

.qc-spinner.checkout{
    min-height: 50px;
    position: relative;
    padding: 60px;
}
.empty-checkout{
    padding: 100px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -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;
    gap: 20px;
    margin-bottom: 78px;
}
.empty-checkout__wrapper .continue-shopping{
    display: block!important;
    width: 304px;
    margin: 0 auto;
}

#payment_address_shipping_address{
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: #203251;
}
#shipping_method_list .radio-input-item label {
    height: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
    gap: 10px;
    padding-left: 0!important;
    padding: 0;
    row-gap: 24px;
}
#shipping_method_list .radio-input-item label .require{
    display: none;
}
#shipping_method_list .field-sortable{
    width: 100%;
    margin-bottom: 0;
}
#shipping_method_list .ve-radio::before,
#shipping_method_list .ve-radio::after{
    top: 10px;
}
.checkout #shipping_method_list .field-sortable div.col-full{
    padding: 0;
}
#shipping_method_list .custom-field__shipping_address_address_1 label{
    font-size: 15px;
    font-weight: 600;
    line-height: 19px;
    text-transform: lowercase;
    padding-bottom: 13px;
}
#shipping_method_list .session__add_custom-dropdown label{
    border-bottom: 1px solid #D9D9D9;
}
#shipping_method_list .session__add_custom-dropdown label::before {
    position: absolute;
    content: url(../media/arrow-down.svg);
    top: -6px;
    right: 0;
    cursor: pointer;
}
#shipping_method_list .custom-field__shipping_address_address_1.active label{
    border-bottom: none;
}
#shipping_method_list .custom-field__shipping_address_address_1.active label::before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
#shipping_method_list .session__add_custom-dropdown > div.col-full{
    display: none;
}
#shipping_method_list .session__add_custom-dropdown.active > .col-full{
    display: block;
}
#shipping_method_list .custom-field__shipping_address_address_1 div.col-full::before{
    content: none;
}
.checkout #shipping_method_list .session__custom-street label{
    padding-bottom: 0;
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    text-transform: capitalize;
}
.checkout #shipping_method_list .session__custom-street input{
    padding: 17px 19px;
    border: 1px solid #CCD74D;
    height: 54px;
}
.checkout #shipping_method_list .session__custom-street input::placeholder{
    opacity: 0;
}
.checkout .cart-section{
    margin-bottom: 96px;
}
/* .checkout .qc-shipping-method{
    max-width: 370px;
} */
.checkout .qc-shipping-method .dropdown{
    margin-bottom: 40px;
}
.checkout .dropdown-address li{
    padding: 9px 0;
}
.checkout .dropdown-address li a{
    color: #203251!important;
    font-size: 12px;
    font-weight: 400;
    line-height: 19px;
}
.checkout .dropdown-address{
    overflow: auto;
    height: max-content;
}
.checkout .ve-text-danger{
    padding: 5px;
}
.checkout #shipping_address_address_1{
    width: 100%;
    padding: 17px 19px;
    border: 1px solid #CCD74D;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 54px;
}
.checkout #shipping_address_address_1:focus{
    border-color: #648bfd;
    outline: none;
    box-shadow: inset 0 0 0 0 transparent, 0 0 0 1px #648bfd, 0 1px 3px 0 #e6ebf1;
    box-sizing: border-box;
}
.checkout .delivery-item-name-container{
    padding-left: 48px;
}

.checkout .delivery-free-text{
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    padding-top: 8px;
    width: 100%;
}
.checkout .mob-step-three-btn{
    display: none;
}
.checkout .dropdown-header:after {
    /*top: 5px;*/
}
.checkout .dropdown.open .dropdown-content{
    padding: 0;
}
#shipping_address_zone_id{
    height: 54px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #CCD74D;
}

.checkout .qc-select-placeholder{
    font-size: 12px;
    line-height: 20px;
    font-weight: 300;
    color: #757587;
    font-family: 'RF Dewi Extended', sans-serif;
    height: 54px;
    padding: 17px 19px;
}
form.col-full{
    padding: 0;
}
/*#page0 .button-container{*/
/*    display: none;*/
/*}*/
/*#page0.active .button-container{*/
/*    display: flex;*/
/*}*/
.next-step-two-mobile-btn{
    display: none;
}
@media(max-width: 1280px) {
    .checkout .checkout-container {
        gap: 20px;
        -ms-grid-columns: 2fr 20px 1fr;
        grid-template-columns: 2fr 1fr;
    }

    .checkout .cart-item-container {
        padding: 24px;
    }

    .checkout .delivery-window {
        gap: 40px;
    }
}

@media(max-width: 1024px) {
    .checkout .product-details {
        gap: 5px;
    }

    .checkout .payment-section {
        max-width: 100%;
        width: 100%;
    }

    .checkout .delivery-window {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .checkout .delivery-section {
        width: 100%;
    }
    .checkout .product-details-container{
        gap: 20px;
    }
    .checkout .quantity-controls{
        margin-right: 20px;
    }
    .checkout .checkout-container{
        -ms-grid-columns: 1.5fr 1fr;
        grid-template-columns: 1.5fr 1fr;
    }
    .checkout .qc-shipping-method{
        max-width: 100%;
    }
}

@media(max-width: 768px) {
    .checkout .cart-item-container {
        padding: 0;
        background: none;
    }

    .checkout {
        padding: 26px 30px 52px;
    }

    .checkout .checkout-container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .checkout .container-fluid{
        padding: 0;
    }

    .checkout .product-details {
        gap: 5px;
    }

    .checkout .checkout-header {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 49px;
    }

    .checkout .cart-item {
        padding: 0;
    }

    .checkout .cart-item-body {
        padding: 13px 0 13px 13px;
    }

    .checkout .quantity-controls {
        -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
        margin-right: 10px;
    }

    .checkout .product-image {
        width: 70px;
        height: 70px;
    }

    .checkout .cart-item-title {
        font-size: 12px;
        font-weight: 600;
        line-height: 16px;
        text-align: left;
    }

    .checkout .cart-item .price {
        font-size: 14px;
        font-weight: 400;
        line-height: 16px;
        text-align: left;
    }

    .checkout.step-two .order-form.hidden {
        display: block !important;
    }

    .checkout.step-two .payment-section {
        display: none;
    }

    .checkout.step-two .mob-next-step {
        display: block;
    }
    .breadcrumb{
        margin-bottom: 20px;
    }
    .checkout .payment-section{
        background: none;
        padding: 0 0 80px;
    }
    .checkout .delivery-options-item{
        font-size: 14px;
        font-weight: 600;
        line-height: 18px;
    }
    #page0 #page0_row0_col1{
        display: none;
    }
    .checkout .delivery-window .price{
        margin-left: 0;
    }
    .checkout .step-two #page0{
        display: block;
    }
    .checkout .step-two #page0_row0_col0{
        display: none;
    }
    .checkout .step-two #page0_row0_col1{
        display: block!important;
    }
    .checkout .step-two #page0_row0_col1_itemt32wd30{
        display: none;
    }
    .checkout .step-two #page1_row1_col2 .checkout-header{
        display: none;
    }
    .checkout .step-two #page1_row1_col3{
        display: none;
    }
    .checkout .step-two .step-two-btn{
        /*display: block;*/
        /*margin: 0 auto;*/
    }

    .checkout .step-three #page1_row1_col2{
        display: none;
    }
    .checkout .checkout-header h2, .checkout .checkout__title{
        font-size: 17px;
        font-weight: 700;
        line-height: 19px;
        letter-spacing: 0.02em;
        text-align: center;
    }
    .checkout .checkout-count{
        display: none;
    }
    .checkout .qc-checkout-product .cart-item-container{
        margin-bottom: 40px;
        min-height: 214px;
    }
    .checkout .cart-section{
        margin-bottom: 45px;
    }
    .checkout #page0_row0_col1 .checkout-header{
        margin-bottom: 22px;
    }
    .checkout .total{
        padding-bottom: 19px;
        margin-bottom: 31px;
    }

    .checkout .next-step-two-mobile-btn{
        display: flex;
    }
    /* */

    .checkout #page0.active .mob-step-two-btn{
        display: none;
    }
    .checkout .step-two #page0 .button-container{
        display: none;
    }
    .checkout .step-two #page1{
        display: block;
    }
    .checkout .step-two #page1 .mob-step-two-btn{
        display: none;
    }
    .checkout .step-two #page1 .next-step-two-mobile-btn{
        display: none;
    }
 

       .pages.clearfix .next-step-three-mobile-btn {
        display: none;
    }

    .pages.clearfix.step-two .next-step-three-mobile-btn {
        display: flex;
    }

}


.ve-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#shipping_method_list .session__add_custom-dropdown.active>.col-full {
    display: block;
}

.qc-error-field {
    background-color: #fee2e1;
}