.custom-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.custom-loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: custom-spin 1s linear infinite;
}
@keyframes custom-spin {
    to { transform: rotate(360deg); }
}

@keyframes kf-rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes kf-fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes kf-FadeInLoader {
    from {
        opacity: 0
    }

    to {
        opacity: .8
    }
}

.blockOverlay {
    z-index: 1000;
    position: absolute;
    top: 0;
    left: 0;
    cursor: default;
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;
    padding: 0;
    animation: kf-FadeInLoader .6s ease forwards;
}

.blockOverlay:after {
    position: absolute;
    top: calc(50% - 13px);
    left: calc(50% - 13px);
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(0, 0, 0, 0);
    border-left-color: #242424;
    border-radius: 50%;
    vertical-align: middle;
    animation: kf-rotate 450ms infinite linear
}

.loader-overlay {
    z-index: 340;
    animation: kf-fadeIn .6s ease both;
    background-color: rgba(255, 255, 255, 0.6);
}

.loader-overlay:not(.loading) {
    display: none;
}


.b-loading:after {
    position: absolute;
    top: calc(50% - 13px);
    left: calc(50% - 13px);
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(0, 0, 0, 0);
    border-left-color: #242424;
    border-radius: 50%;
    vertical-align: middle;
    animation: kf-rotate 450ms infinite linear
}

.b-loading {
    position: relative;
    opacity: .6;
    cursor: default;
    pointer-events: none;
}


@media (min-width: 992px) {
    .right .cart-list-body .cart-list-item .image{
        width:  calc(15% - 20px);
    }
    .right .cart-list-body .cart-list-item{
        padding-left: 15%;
    }

    .privacy-policy-button{
        padding-right: 30px;
    }
}
.left .payment-method .content{
    overflow-wrap: break-word;
}

.left .inner-content label .required{
    color: red;
}

main .cart-total .table>tbody>tr>td:last-child{
    white-space: nowrap;
}
main .cart-total .coupon-block .coupon-list{
    gap: 20px;
}
main .cart-total .coupon-block .coupon-list li label{
    cursor: pointer;
}


main .cart-total .coupon-block {
    position: relative;
}
main .cart-total .coupon-block .coupon-list {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-height: 320px;
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 12px;
    z-index: 999;
}

main .cart-total .coupon-block .coupon-list li label {
    display: flex;
    gap: 15px
}

main .cart-total .coupon-block .coupon-list li label .content {
    margin-top: -6px;
    font-size: .875rem
}

.right .cart-list-body .cart-list-item {
    min-height: 120px;
}

@media (min-width: 576px) {
    #privacy-policy-Modal .modal-dialog {
        max-width: 700px;
    }

    #shipping-content-Modal .modal-dialog {
        max-width: 700px;
    }
}

#privacy-policy-Modal .modal-dialog-scrollable .modal-body,
#shipping-content-Modal .modal-dialog-scrollable .modal-body{
    line-height: 2;
}
#shipping-method-section .list-time .radio_name{
    font-size: .85rem;
}

#shipping-content-Modal .modal-dialog-scrollable .modal-body hr{
    margin: 10px 0;
}

#cart-section tr.available_points td:last-child{
    font-size: 1.2rem;
    color: #c3040c;
}

main .cart-list-body .cart-list-item .options>a{
    background-color: #f1f1f1;
}
main .cart-total .table .btn-checkout{
    background-color: #fd306a;
}
main .cart-list-body .cart-list-item .quantity input{
    width: 36px;
    padding: .5rem;
    text-align: center;
}