.informer-cart {
    display: none;
    position: fixed;
    right: 10px;
    top: 100px;
    z-index: 40;
}
.informer-cart.active {
    display: block;
}

.informer-cart__price {
    background: #292929;
    border-radius: 3px;
    box-sizing: border-box;
    color: #fff;
    font-size: 15px;
    opacity: 0;
    padding: 9px 13px;
    pointer-events: none;
    position: absolute;
    right: 110%;
    top: 50%;
    -webkit-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%);
    transition: all .3s linear;
    white-space: nowrap;

    font-family: 'Oswald';
    font-weight: 700;

    display: none;
}
.informer-cart__price:after {
    border: 10px solid transparent;
    border-left-color: #292929;
    content: "";
    height: 0;
    position: absolute;
    right: -17px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0;
}
.informer-cart:hover .informer-cart__price {
    opacity: 1;
    right: 130%;
}

.informer-cart__icon {
    background-color: rgba(255, 255, 255, .8);
    border-radius: 50px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
    cursor: pointer;
    height: 80px;
    overflow: hidden;
    position: relative;
    transition: all .2s ease-in-out;
    height: 60px;
        width: 60px;
}
.informer-cart__icon:hover {
    background-color: #EFEFEF;
}
.informer-cart__icon svg {
    height: 100%;
    padding: 12px 6px 14px 15px;
    width: 100%;
    fill: #5b5b5b;
}
.informer-cart__count {
    background-color: #e61919;
    bottom: -6px;
    font-size: 14px;
    height: 24px;
    line-height: 24px;
    min-width: 24px;
    right: -6px;
    border-radius: 30px;
    box-sizing: border-box;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    padding: 0 5px;
    position: absolute;
    text-align: center;
    width: auto;
}