.sticky-cart {
    position: fixed;
    right: 10px;
    bottom: 70px;
    width: 50px;
    height: 50px;
    color: var(--white-color);
    text-align: center;
    font-size: 14px;
    line-height: 50px;
    background-color: rgb(37, 125, 62);
    cursor: pointer;
    border-radius: 50%;
}

.sticky-cart .count {
    position: absolute;
    top: -10px;
    right: -4px;
    width: 25px;
    height: 25px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    background-color: var(--white-color);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(37, 125, 62);
    border-image: initial;
    border-radius: 50%;
}

.slide-cart {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    padding: 20px;
    z-index: 999;
    opacity: 0;
    overflow-y: scroll;
    transition: ease all 0.3s;
}

.slide-cart.show {
    left: 0;
    opacity: 1;
}

.close-cart-slide {
    width: 20px;
    height: 20px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    cursor: pointer;
    padding: 6px;
}
