.remove-item-trash:hover {
    transition: all 320ms ease-in-out;
    transform: scale(1.2);
    cursor: pointer;
}

.cart-price {
    padding: 10px 0;
    position: sticky;
    bottom: 0px;
    width: 100%;
}

.cart-price-count {
    text-align: center;
    color: #007fee;
    font-weight: bold;
}

.cart-price-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.btn-main {
    margin: 0 5px;

    font-size: 14px;
    background: #179f39;
    padding: 5px 10px;
    color: #fff;
    border: none;
    outline: none;
    transition: 0.3s all ease-in-out;
    border-radius: 25px;
}

.btn-main:hover {
    background: #0e822b;
    color: #fff;
}

.btn-outline {
    margin: 0 5px;

    font-size: 14px;
    background: transparent;
    padding: 5px 10px;
    color: #333;
    border: 1px solid #666;
    outline: none;
    transition: 0.3s all ease-in-out;
    border-radius: 25px;
}

.btn-outline:hover {
    background: #007fee;
    border: 1px solid #007fee;
    color: #fff;
}

.empty-cart {
    padding: 20px;
}

.empty-cart img {
    max-width: 50%;
    opacity: .5;
}

.empty-cart h6 {
    text-align: center;
    margin: 20px 0;
}

.remove-item-trash:hover {
    transition: all 320ms ease-in-out;
    transform: scale(1.2);
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
    #site_logo {
        height: 70px !important;
    }

    .offcanvas-header {
        margin-top: 85px;
    }
}