.header-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: -ms-flexbox;
    display: none;
    z-index: 1090;
    background: var(--accent-color);
    color: var(--secondary-text-color);
    padding: 0 0 var(--safe-area-inset-bottom);
    transition: transform 0.25s;
    transform: translate(0, 100%);
}
.sticky-always-open .header-sticky,
.sticky-open .header-sticky {
    transform: translate(0, 0%);
}

.header-sticky__button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 6.5rem;
    text-decoration: none;
    color: inherit;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    white-space: nowrap;
}

.header-sticy__text {
    display: block;
    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 400;
}

.header-sticky__counter {
    position: absolute;
    top: 0;
    left: 50%;
    margin: 0 0 0 1.5rem;
    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 700;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 50%;
    height: 50%;
}

.header-sticky__button svg {
    width: 2rem;
    height: 2rem;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    fill: currentColor;
    fill-rule: evenodd;
}
.header-sticky__button_compare svg,
.header-sticky__button_account svg {
    width: 2.5rem;
}

@media (max-width: 1200px) {
    .header-sticky {
        display: flex;
    }
}