.cart_modal {
    top: 50px;
    z-index: 99999;
}

.cart_modal table {
    margin-bottom: 0;
}

.cart_modal .modal-body {
    padding-bottom: 0;
}

.cart_box_item_img {
    display: inline-block;
    width: 90px;
}

.cart_box_item_pro {
    width: 360px;
}

.cart_box_item_info {
    width: 270px;
    padding-left: 10px;
    float: right;
}

.cart_box_item_name {
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.cart_box_item_del:hover {
    cursor: pointer;
}

.cart_box_item_qty {
    text-align: center;
}

.cart_box_item_price,
.cart_box_item_subtotal {
    white-space: nowrap;
    text-align: right;
}

#cart_popup .quantity_box {
    width: 77px;
}

#cart_popup .quantity_box span {
    display: block;
    width: 23px;
    height: 23px;
    line-height: 23px;
    text-align: center;
    border: 1px solid #999;
    float: left;
}

#cart_popup .quantity_box span:hover {
    cursor: pointer;
}

#cart_popup .quantity_box input {
    display: block;
    width: 30px;
    height: 23px;
    line-height: 23px;
    text-align: center;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    border-left: none;
    border-right: none;
    float: left;
}

#cart_popup .quantity_box input::-webkit-outer-spin-button,
#cart_popup .quantity_box input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#cart_popup .quantity_box input[type=number] {
    -moz-appearance: textfield;
}

#cart_popup .cart_btn_continue {
    float: left;
}


/* Chrome, Safari, Edge, Opera */

.cart_order_info input::-webkit-outer-spin-button,
.cart_order_info input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

.cart_order_info input[type=number] {
    -moz-appearance: textfield;
}

.cart_order_pro_item {
    margin-bottom: 15px;
}

.cart_order_pro_item:last-child {
    margin-bottom: 0;
}

.cart_order_pro_item_img {
    width: 60px;
    float: left;
}

.cart_order_pro_item_img img {
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.cart_order_pro_item_name {
    width: calc(100% - 200px);
    padding-left: 15px;
    float: left;
}

.cart_order_pro_item_price {
    width: 140px;
    float: left;
}

.cart_order_pro_item_img {
    position: relative;
}

.cart_order_pro_item_qty {
    display: inline-block;
    position: absolute;
    top: -9px;
    right: -9px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: white;
    background: #145a8d;
}

@media (min-width: 1200px) {
    #cart_popup .modal-dialog {
        width: 750px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    #cart_popup .modal-dialog {
        width: 750px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #cart_popup .modal-dialog {
        width: 750px;
    }
}

@media (max-width: 767px) {
    .cart_box_item_pro {
        width: 260px;
    }
    .cart_box_item_info {
        width: 170px;
    }
}