.bottom-icons-panel {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0px;
    background: #E3E2DF;
    box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.1);
    z-index: 992;
    padding-bottom: calc(env(safe-area-inset-bottom) - 22px);
}

.bottom-icons-panel__content {
    display: flex;
    width: 100%;
    overflow-x: auto;
    justify-content: space-between;
    -webkit-overflow-scrolling: auto;
    padding: 11px 0;
}

.bottom-icons-panel__content-link {
    display: flex;
    flex: 1 1 20%;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 50px;
}

.bottom-icons-panel__content-link:not(:last-child) {
    border-right: 1px solid #FFF;
}

.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,
.bottom-icons-panel__content-link--active svg use {
    fill: #9e9e9e;
    fill: var(--theme-base-color);
}

.bottom-icons-panel__content-text {
    color: #373435;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.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 {
    align-items: flex-end;
    display: flex;
    margin: 0px;
    position: relative;
}

.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: auto;
    bottom: 0; */
    top: 0;
    bottom: auto;
    right: 0;
}

@media (min-width: 767px) {
    .bottom-icons-panel {
        display: none;
    }
}

@media (max-width: 767px) {
    .bottom-icons-panel_y .footer {
        padding-bottom: 67px;
    }
}

@media (max-width: 450px) {
    .bottom-icons-panel__content-text {
        font-size: 10px;
    }
}