.empty-cart-message {
    font-weight: 600;
    font-size: 1.1em;
    text-align: center;

}

.empty-cart-message i {
    margin-bottom: 30px;
    font-size: 2.5em;
}

.cart-title {
    text-align: center;
    font-size: 1.2em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: 15px;
}

.separator {
    width: 30px;
    height: 4px;
    margin: 0 auto -2px;
    transform: skew(-15deg);
    background: #65c8c7;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
}

.cart-content-scrollable {
    padding: 30px 15px 0px 15px;
}

.product_row {
    margin: 0 0 15px 0;
    border-bottom: 1px dotted rgba(0, 0, 0, .4);
    min-height: 64px;
}

.cart-content-scrollable:nth-last-of-type(.product_row) {
    border-bottom: none;
}

.product_row .col-6 {
    padding-top: 15px;
}

.product_row p.product {
    margin: 0;
    font-weight: 600;
    text-transform: capitalize;
    font-size: .9em;
    max-width: 90%;
}


.cart-content-scrollable .performance_details {
    font-size: .8em;
    margin: 0;
    font-weight: 600;
    max-width: 90%;
}

.cart-content-scrollable .performance_details span {
    font-weight: 400;
}

.cart-content-scrollable .performance_details i {
    margin-right: 5px;
}


.product_row span.x-svg {
    fill: #2C325F;
    height: auto;
    width: 35px;
    transition: all .4s;
    margin-right: 7px;
    padding-right: 7px;
    display: block;
    border-right: 1px solid #d5d5d5;
}

.product_row p.qty,
.product_row p.price {
    font-size: 1em;
    margin: 0;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.product_row p.qty {
    position: absolute;
    margin-top: -35px;
    margin-left: 18px;
    font-size: .7em;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #333;
    color: #65c8c7;
    justify-content: center;
    font-weight: 600;
}

.product_row p.qty .fas {
    transform: rotate(-45deg);
    margin-right: 5px;
    font-size: .6em;
}

.product_row p.price {
    font-weight: 700;
    min-width: 65px;
}

.product_row p.price.price_discounted {
    color: #666;
    font-weight: 500;
    min-width: 65px;
    text-decoration: line-through;
}

.product_row p.price span {
    font-weight: 400;
    font-size: .7em;
    position: absolute;
    top: 10px;
}

.remove-item-btn {
    border: 1px solid #d5d5d5;
    border-radius: 50px;
    width: 25px;
    height: 25px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8em;
    cursor: pointer;
    transition: all .4s;
}

.remove-item-btn:hover {
    border: 1px solid #333;
    background: #333;
    color: #65c8c7;
}

.total {
    background: #65c8c7;
    color: #fff;
    font-weight: 600;
}

.total .col:last-of-type {
    padding: 0;
}

.checkout .total .col:last-of-type {
    display: none;
    align-items: center;
    justify-content: flex-end;
    padding: 0 15px;
    background: #000;
}

.total .col:last-of-type .btn {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.total p {
    margin: 15px 0 15px 0;
}

.total .taxes {
    display: block;
    font-weight: 400;
    font-size: .8em;
}

.total .currency {
    font-weight: 400;
    font-size: .8em;
}

.total_container {
    display: flex;
    align-items: center;
}

.total_container .total_values {
    margin-left: 5px;
    margin-right: 5px;
}

@media only screen
and (min-device-width: 320px)
and (max-device-width: 1023px)
and (orientation: portrait) {
    .cart.on {
        background: #fff;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, .28);
        padding-top: 30px;
        position: fixed;
        bottom: 75px;
        left: 7px;
        width: calc(100% - 15px);
    }

    .total.container {
        position: fixed;
        bottom: 0;
        left: 0;
        max-width: 100% !important;
        width: 100%;
    }

    .cart-toggler {
        position: absolute;
        top: 7px;
        right: 7px;
    }

    .checkout .total .col:last-of-type {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 0;
        background: #000;
    }
}
