.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1040;
    display: none;
}

.cart-drawer.open {
    right: 0;
}

.cart-overlay.show {
    display: block;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    line-height: 1;
    padding: 0;
    text-align: center;
}

/* 
#cartDrawer {
    position: relative;
} */

#cartLoader {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.7);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

#cartLoader>.spinner-border {
    color: #584b36 !important;

}