.header-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: none;
  z-index: 1090;
  background: var(--color-accent);
  color: var(--color-text-inverse);
  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: 2px;
  left: 50%;
  margin: 0 0 0 1.5rem;
  font-weight: 400;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 18px;
  min-width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 9px;
  background: #e9011a;
  color: #fff;
  font-size: var(--text-xs);
  line-height: 18px;
  justify-content: center;
}

.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;
}

.header-sticky__button_favorites svg {
  width: 2.5rem;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 2;
}

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



