* {
    margin: 0;
    box-sizing: border-box;
    
}
:root {
    --main-color: #e83e31;
}
.relative{
    position: relative;
}
html{font-size: 15px;}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-start {
    justify-content: flex-start;
}
.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: flex-start;
}

.flex-wrap {
    flex-wrap: wrap;
}

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.d-inline {
    display: inline;
}
.product-dtl .card{
    border-radius: 12px;
    margin-bottom: 12px;
}
.product-dtl{
    margin-bottom: 12px;
    background-color: white;
    opacity: 9;
    font-family: 'Roboto', sans-serif;
}
.product-dtl .list-merchant{
    padding: 10px;
}
.product-dtl .list-merchant a{
    border-radius: 6px;
    color: #6e6c6c;
}

.product-dtl .delivery_data{
    width: 50%;
    padding: 10px;
    
}
.product-dtl .delivery_data h5{
    font-weight: bold;
    color: var(--main-color);
    font-family: 'Roboto', sans-serif;

}
.product-dtl .delivery_data .delivery-name{
    font-weight: bold;
    padding: 6px 0px;
    font-family: 'Roboto', sans-serif;
}  
.product-dtl .delivery_data .address-para{
    font-size: 15px;
    color: rgb(75, 75, 75);
    font-family: 'Roboto', sans-serif !important;
}
.product-dtl .delivery_data .address-para .no{
    font-weight: bold;
    margin-right: 8px;
    font-family: 'Roboto', sans-serif;
}

.item-data{
    padding: 10px;
}
.cart-summary {
    margin-left: 10px;
    font-family: 'Roboto', sans-serif;
}

.cart-summary span:nth-child(1) {
    color: #23B99A;
    font-size: 16px;

}

.cart-summary span:nth-child(2) {
    font-size: 12px;
    color: grey;
}
.cart_qty_1 .product-qty{
    font-weight: bold;
    color: grey;
}
.cart_qty_1 .product-qty span{
    padding-left: 6px;
    font-weight: 500;
}
.cart_qty_1 {
    padding-right: 14px;
}

.cart_qty_1 .rupees {
    padding-top: 7px;
    font-size: 14px;
}

.cart_qty_1 .rupees span:last-child {
    color: grey;
    padding-left: 10px;
}

.cart_qty_1 .offer span:first-child {
    color: red;
    padding-right: 10px;
}
.c_a_r_d{
    padding: 8px;
}
.c_a_r_d .card-header{
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: #e83e31;
    margin-bottom: 4px;
}
.c_a_r_d table tr th{
    vertical-align: text-top;
}
.c_a_r_d table tr th,
.c_a_r_d table tr td{
    border: none;
    padding: 4px 0px;
    font-family: 'Roboto', sans-serif;
}
.c_a_r_d table tr td{
    color: grey;
    padding: 0px 4px;
}
.your-experience{
    padding: 10px;
}
.your-experience .rate-heading{
    font-weight: bold;
}
.your-experience .rate_experince{
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
}
.your-experience .rate_experince span i{
    font-size: 14px;
    margin-right: 6px;
}
.order_details_table .total-item{
    width: 100%;
}
.order_details_table .total-item tr{
    border: 2px solid grey;
} 
.order_details_table .total-item tr th{
    padding: 8px 0px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}
.order_details_table .total-item tr td{
    padding: 8px 8px;
    width: 50%;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}
.order_details_table .total-item tr td:first-child{
    font-weight: bold;
    border-right: 2px solid grey;
}
.order_details_table .total-item tr td:last-child{
    text-align: right;
}
.expected_delivery{
    color: #0CB1F2 !important;
}
@media (max-width: 992px){
    .item-data .cart_qty_1{
        margin-left: auto;
        width: 73%;
     }
}
@media (max-width: 768px){
    .item-data .cart_qty_1{
        margin-left: auto;
        width: 80%;
     }
}
@media (max-width: 468px) {
    html{font-size: 10px;}
    .product-dtl .delivery_data{
        width: 100%;
    }
    .item-data .cart_qty_1{
       margin-left: auto;
       width: 75%;
    }
}
@media (max-width: 375px){
    .item-data .cart_qty_1{
        margin-left: auto;
        width: 90%;
     }
}
@media (max-width: 268px){
    .summary{
        width: 100%;
    }
    .item-data .cart_qty_1{
        text-align: left;
     }
}