.bottom-icons-panel {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0px;
  background: #fff;
  background: var(--card_bg_black);
  box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.1);
  z-index: 997;
  padding-bottom: calc(env(safe-area-inset-bottom) - 22px);
}
.bottom-icons-panel__content {
  display: flex; /*justify-content: space-between;*/
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: auto;
}
.bottom-icons-panel__content-link {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  min-width: 75px;
  max-width: 200px;
  height: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0px 3px 2px;
}
.bottom-icons-panel__content-link--active .bottom-icons-panel__content-text {
  color: #9e9e9e;
  color: var(--theme-base-color);
}
.bottom-icons-panel__content-link--active svg path {
  fill: #9e9e9e;
  fill: var(--theme-base-color);
}
.bottom-icons-panel__content-text {
  align-self: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bottom-icons-panel__content-link--display--block {
  display: block;
}
.bottom-icons-panel__content-link--with-counter{
  gap: 5px 0;
}
.bottom-icons-panel__content-picture-wrapper {
  position: relative;
}
.bottom-icons-panel__content-picture-wrapper--mb-3 {
  margin-bottom: 2px;
  margin-top: 4px;
}
.bottom-icons-panel__content-picture-wrapper img.bottom-icons-panel__content-picture{
  max-height: 22px;
  max-width: 40px;
}

.bottom-icons-panel__content::-webkit-scrollbar {
  -webkit-appearance: none;
}

.bottom-icons-panel__content::-webkit-scrollbar:vertical {
  width: 6px;
}

.bottom-icons-panel__content::-webkit-scrollbar:horizontal {
  height: 6px;
}

.bottom-icons-panel__content::-webkit-scrollbar-thumb {
  background-color: rgba(153, 153, 153, 1);
  background: var(--gray_bg_black);
  border-radius: 10px;
  border: 2px solid #ffffff;
  border-color: var(--black_bg_black);
}

.bottom-icons-panel__content::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #ffffff;
  background: none;
}

.bottom-icons-panel .header-cart__count,
.bottom-icons-panel .icon-count{
  top: 8px;
}

@media (min-width: 992px) {
  .bottom-icons-panel {
    display: none;
  }
}
@media (max-width: 991px) {
  .bottom-icons-panel_y .footer {
    padding-bottom: 62px;
  }
}
