/* Стили для счетчика избранного в шапке */
.header-favorites {
    position: relative;
}

.header-favorites .wish_count {
    display: inline-block;
    cursor: pointer;
}

.header-favorites .wish_count .icon {
    display: inline-block;
    position: relative;
}

.header-favorites .wish_count .icon i {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path></svg>') center center no-repeat;
    background-size: contain;
}

.header-favorites .wish_count .count {
    position: absolute;
    top: -10px;
    right: -17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    background-color: #fa6b00;
    color: #fff;
    font-size: 11px;
    line-height: 1;
}

.header-favorites .wish_count:hover .icon i {
    opacity: 0.7;
}

