.shopping-cart-holder ::-webkit-scrollbar {
    width: 0.2em;
}

.shopping-cart-holder {
    left: 0;
    top: 100%;
    z-index: 50;
    width: 22vw;
    max-height: 0rem;
    overflow: hidden;
    transition: all ease-in-out 0.4s;
    background: var(--silver5);
    box-shadow: 0 1px rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(4px);
    border-radius: var(--b-radius);
}


body:has(.shopping-cart-holder.active) .dng-main:after {
    opacity: 1;
    z-index: 49;
}

.shopping-cart-holder.active {
    max-height: 30rem;

}

.shopping-cart-holder hr {
    margin: 0;
    padding: 0.5rem
}

.shopping-cart-items {
    max-height: 20rem;
    overflow-y: auto;
    overflow-x: hidden;
    height: 50%;
}

.shopping-cart-recyclebin {
    -webkit-mask: url(icon/RecycleBin.svg) no-repeat 100% 100%;
    mask: url(icon/RecycleBin.svg) no-repeat 100% 100%;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: #f00;
    display: inline-block;
    width: 18px;
    height: 18px;
}

span.counterCardMenu {
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: all linear 0.4s;
}

span.counterCardMenu.active {
    z-index: 2;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    top: -1rem;
    right: -1rem;
    visibility: visible;
    opacity: 1;
    transition: all linear 0.4s;
}

.shopping-cart-list-item-title a {
    white-space: pre-wrap;
}


.cart-book svg {
    width: 1.8rem !important;
    height: 1.8rem !important;
}