/* Floating cart css for storola themes */
.st-cart-wrapper {
    opacity: .7;
    cursor: pointer;
    position: fixed;
    width: 65px;
    min-height: 75px;
    background: var(--link-hover-color);
    right: 0;
    z-index: 10;
    top: calc(100px + 30%);
    box-shadow: 0 0 16px -1px rgb(0 0 0 / 75%);
    transition: opacity 0.5s ease-in-out;
}

.st-cart-wrapper:hover{
    opacity: 1;
}

.st-cartitem-wrap{
    min-height: 50px;
    background:var(--button-bg-color);
    width: 100%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.st-cartitem-wrap svg{
    fill:white;
    stroke:white;
    margin-top:5px;
}
.st-cartitem-wrap p{
    margin:2px 2px;
    color:white;
    font-size:11px;
    font-weight:700;
    line-height:normal;
}

.st-cart-wrapper .st-total{
    min-height: 20px;
    width: 100%;
    font-weight: 600;
    text-align: center;
    font-size: 13px;
    padding-top: 5px;
    color: white;
}

/* cart menu css */
.cart-topbar{
    width: 100%;
    background: #f4f4f4;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: end;
}

.cart-topbar .cart-dropdown-menu-close{
    position: unset;
}

#cart .dropdown-menu >li:first-child{
    margin-top: 2rem !important;
    max-height: 64% !important;
    height: 64% !important;
}

#cart .dropdown-menu >li:last-child:not(:first-child) p{
    display: flex;
    justify-content: space-between;
}

#cart .dropdown-menu >li:last-child p > a:last-child {
    margin-top: 0px !important;
}

#cart .dropdown-menu >li:last-child p > a, #cart .dropdown-menu >li:last-child p > a:last-child {
    flex: 1;
    margin: 5px !important;
}

