.small-cart {
    box-shadow: 0 2px 8px rgba(121, 122, 121, 0.16);
    border-radius: 5px 0 0 5px;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 15px 15px 15px 40px;
    background-size: 16px;
    background: #EFF4F7 url("image/cart.svg") no-repeat 15px 16px;
    opacity: 1;
    transition: opacity .2s ease;
    color: #797A79;
    z-index: 1;
}

.small-cart.inactive{
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 600px) {
    .small-cart {
        display: none;
    }
}