#floating-cart {
    position: fixed;
    right: 0px;
    top: 50%;
    background: #ffffff;
    border-radius: 3px;
    opacity: 0;  /* начинаем с прозрачного элемента */
    transition: opacity 2s ease-in-out;
    display: flex;
    flex-direction: column;
}

#floating-cart > a > i {
    color: #ffffff;
    padding: 10px 10px;
    background: #607D8B;
    font-size: 22px;
}

#floating-cart > span {
    color: #000;
    font-size: 16px;
    display: block;
    background: #00BCD4;
    width: 100%;
    color: #ffffff;
    text-align: center;
    padding: 10px 10px;
    box-sizing: border-box;
}

#cart-count {
    font-size: 20px;
}

#floating-cart i.fa-shopping-cart {
    font-size: 21px;
    /* margin-right: 10px; */
}

.notification{
position: fixed;
right: 20px;
top: 20px;
color: #fff;
padding: 15px;
border-radius: 5px;
z-index: 9999;
display: none;
}
