.minicart {
    display: block;
    width: 100%;
    height: 100%;
    background: #2929297f;
    position: fixed;
    z-index: 5;
    bottom: 0;
    left: -100%;
    backdrop-filter: blur(4px);
    transition: left 0.4s ease-in-out;
}
.minicart.active {
    left: 0;
    z-index: 51;
}
.minicart-container {
    max-width: 450px;
    width: 100%;
    position: absolute;
    left: -450px;
    top: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 6;
    padding: 1rem;
    padding-bottom: 0;
    border-radius: 0;
    overflow-y: auto;
    color: black;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: 0.8s ease;
}
.minicart.active .minicart-container {
    left: 0;
}
.minicart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.minicart-header b {
    font-size: 16px;
}
.minicart-close.icon-close {
    cursor: pointer;
    color: #fff;
    background: #e66140;
    padding: 12px;
    border-radius: 12px;
    font-size: 16px;
    width: calc(16px + (12px*2));
    height: calc(16px + (12px*2));
}
.minicart-close.icon-close::before {
    font-size: 100%;
    display: block;
}
.minicart-products {
    direction: ltr;
    text-align: left;
    border: 1px solid #f6f6f6;
    padding: 4px;
    background: white;
    border-radius: 20px;
    position: relative;
}
.minicart a.remove {
    position: absolute;
    bottom: 4px;
    right: 8rem;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    color: #888888 !important;
}
.minicart a.remove::before {
    font-size: 100%;
}
.minicart a.remove:hover {
    background: transparent;
    color: #888888 !important;
}
.minicart .product-thumbnail {
    position: relative;
}
.minicart .cart-thumbnail-background {
    width: 90px;
    height: 100px;
    background: #f5f5f5 no-repeat center center;
    background-size: contain;
    background-attachment: scroll;
    background-blend-mode: multiply;
    border-radius: 12px;
    overflow: hidden;
}
.minicart .minicart-quantity {
    position: absolute;
    left: -2rem;
    bottom: 0;
    border-radius: 50%;
    width: 20px;
    box-sizing: border-box;
    height: 20px;
    line-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888888;
    font-size: 12px;
    flex-direction: row;
}
.minicart .woocommerce-cart-item-details-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 8px;
    gap: 12px;
}
.minicart-product-name {
    font-weight: bold;
    font-variation-settings: "wght" 600, "dots" 4;
    font-size: 14px;
    color: #333333;
    line-height: 2;
}
.minicard-products-container {
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    direction: rtl;
    text-align: right;
    gap: 12px;
}
.minicart-price {
    display: flex;
    gap: 8px;
    color: #888888;
    font-weight: 600;
    font-variation-settings: "wght" 600, "dots" 4;
    font-size: 14px;
    line-height: 16px;
}
.minicart-total-price-container{
  border-top: 1px solid #e6e6e6;
  padding-block: 1rem;
  bottom: 0;
  position: sticky;
  left: 1rem;
  right: 1rem;
  background-color: #fff;
}
span.minicart-total-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    align-items: center;
}
.minicart-btn-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    text-align: center;
    gap: 12px;
}
.minicart-btn-container a {
    padding: 12px;
    background: #26313a;
    border-radius: 12px;
    font-size: 14px;
    transition: background-color 0.4s ease;
    color: #f5f5f5;
    width: 100%;
    font-weight: 500;
}
.minicart-btn-container a:hover{
    opacity: 0.9;
}
a.minicart-checkout-btn {
    background: #9afeff;
    color: #26313a;
}
#minicart-loading {
    text-align: center;
    direction: ltr;
}
@media (max-width: 767px) {
    .minicart {
        display: block !important;
        left: -100vw;
        width: 100vw;
        height: 100%;
        right: unset;
        z-index: 4;
        transition: 0.4s ease;
    }
    #minicart.active-fab {
        left: 0;
    }
    .admin-bar #minicart.active-fab {
        height: calc(100% - 46px);
    }
    .minicart-container {
        padding-bottom: calc(32px + calc(24px/2));
        left: 0;
    }
    .minicart-close.icon-close {
        width: calc(13px + (12px * 2));
        height: calc(13px + (12px * 2));
        font-size: 13px;
    }
    .admin-bar .minicart.active {
        margin-top: 46px;
    }
}
@media (min-width: 767px) {
    .admin-bar .minicart.active .minicart-container {
        margin-top: 32px;
    }    
}