body.noscroll{
    overflow: hidden;
}
.overlay-popup{
    opacity: 0;
    position: fixed;
    transition:all 0.6s, display 0s;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    display: none;
}
.overlay-popup.open-overlay{
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 999;
    opacity: 1;
    display: block;
}

.basket {
    opacity: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    right: 0px;
    top: 50%;
    z-index: 100;
    width: 60px;
    height: fit-content;
    padding: 15px 0;
    background: #eee;
    border-radius: 4px 0 0 4px;
    color: #000;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(100%);
}

.basket.active {
    opacity: 1;
    transform: translateX(0);
}

.basket .basket__count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #CD2122;
    color: #fff;
    border-radius: 50%;
    line-height: 20px;
    font-size: 12px;
    font-weight: 600;
}

.basket .fa {
    transition: color .3s ease-in-out;
}

.basket:hover .fa {
    color: #545454;
}
