.btn-back-page {
    margin: auto;
    height: 40px;
    color: #555;
    padding: 0 30px;
    font-weight: normal;
    border-radius: 3px;
    border: 1px solid #eee;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    background: #eee;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
}
.btn-back-page::before {
    content: '\f104';
    margin-right: 5px;
    font-family: 'FontAwesome';
}
.btn-back-page:hover {
    color: #000;
    background: #ccc;
}







@media(max-width: 767px){
    .cart-item-wrap thead {
        display: none;
    }
    .cart-item-wrap tbody td {
        width: 100%;
        display: inline-block;
    }
    .cart-item-wrap tbody  tr.cart-item td > .item-title {
        display: grid;
        grid-template-columns: 80px 1fr;
    }
    .cart-item-wrap tbody tr.cart-item > td:first-child {
        padding: 5px 0;
        margin-top: 10px;
    }
    .cart-item-wrap tbody tr.cart-item > td:not(:first-child) {
        margin-left: 80px;
        text-align: left;
        display: flex;
        align-items: center;
        padding: 5px 0;
    }
    .cart-item-wrap tbody tr.cart-item > td:not(:first-child):before {
        content: attr(data-name);
        width: 74px;
        height: 100%;
        display: inline-block;
        
    }
    .cart-item-wrap tbody tr.cart-item > td.last {
        justify-content: right;
        width: 100%;
        margin: 0;
        padding: 10px;
        margin-top: -30px;
    }
    .cart-item, .cart-item-wrap tfoot td {
        border: none;
    }
    .column-left {
        width: 100%;
        margin-bottom: 15px;
    }
    .column-left .fa-phone {
        width: 100%;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        justify-content: center;
        background: #fff;
        padding: 10px;
    }
    .divtitle {
        margin-bottom: 10px;
    }
    .box .divtitle h4 {
        display: inline-block;
        line-height: 24px;
    }
}