@import url(/assests/css/color.css);
@import url(/assests/css/nav.css);
@import url(/assests/css/style.css);
@import url(/assests/css/footer.css);



/* ========== Checkout ============== */
.checkout {
    margin-top: 5%;
    padding: 0;
}
.from_title {
    font-size: 19px;
    text-align: center;
}
.from_title span {
    font-size: 19px;
    color: var(--primary-color);
    font-family: 'AdorNoirrit' !important;
}
.from-group {
    margin-bottom: 1rem;
}
.from-group label {
    font-size: 15px;
    margin-bottom: 2px;
}
.card_field_control {
    outline: none;
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/* ======== Preview Product ========= */
.checkout_product_preview {
    width: 100%;
}

.product_table {
    width: 100%;
}
.product_table thead,
.product_table tbody tr{
    border-bottom: 1px solid var(--border-color);
}

.product_table th,
.product_table td {
    text-align: center;
    padding: 10px 0;
    
}
.product_remove {
    font-size: 25px;
    color: red !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.product_table .quantity-box.card-qty {
    width: 100% !important;
    justify-content: center;
    margin-bottom: 0;
}
.card_pd_bx {
    display: flex;
    gap: 15px;
    align-items: center;
}
.card_pd_img {
    overflow: hidden;
    padding: 5px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.product_remove img:hover{
    background-color: #495057;
}


.tf_title {
    float: right !important;
    padding-right: 20px;
}



@media screen and (max-width: 768px) {
    .row.container_checkout_row {
        flex-direction: column !important;
    }
    .col-5.container_checkout_col {
        width: 100% !important;
    }
    .from_title {
        font-size: 13px;
        text-align: center;
    }
    .from_title span {
        font-size: 13px;
        color: var(--primary-color);
    }
    .checkout {
        margin-top: 25%;
        padding: 0;
    }
    .col-7.container_checkout_col {
        width: 100%;
        margin-top: 8%;
    }
    .pd_img {
      height: 40px !important;
    
    }
    
    .minus, .plus{
        font-size: 15px;
    }
    .qty-num {
        border: 0;
        text-align: center;
        width: 27%;
        background: transparent;
        color: var(--black);
        padding: 5px 0;
        outline: none;
        font-weight: 100 !important;
        font-size: 14px;
    }
    .product_link_title {
        font-size: 13px;
        color: #000;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        text-align: left;
    }
    
    .pd_price,
    .pd_variation {
        font-size: 14px;
        font-weight: 400;
    }
    .pd_subtotal_price {
        font-size: 14px;
        font-weight: 400;
        float: right;
    }
    .pd_price.sub-total,
    .pd_price.total,
    .pd_price_shipping {
        display: block;
        font-weight: 700;
        font-size: 14px;
        float: right;
    }
    .product_table .quantity-box.card-qty{
        position: relative;
    }
    .product_table .quantity-box.card-qty .minus {
        position: absolute;
        left: 0;
    }
    .product_table .quantity-box.card-qty .plus {
        position: absolute;
        right: 0;
    }
    
}

@media screen and (max-width: 992px) {
    .from_title {
        font-size: 15px;
        text-align: center;
    }
    .from_title span {
        font-size: 15px;
        color: var(--primary-color);
        font-family: 'Hind Siliguri', sans-serif !important;
    }
    .pd_img {
        height: 50px;
    }
}






















