.header-bar__logo {
    padding-bottom: 27.155172413793103%;
    width: 100%;
    transition: all ease .24s;
}

.header-bar__logo:hover {
    opacity: .72;
}

.header-bar {
    position: sticky;
    top: 0;
    background-color: white;
    border-bottom: 1px solid rgb(20 20 43 / 12%);
    z-index: 9;
    height: 7rem;
}

.header-bar {}

.header-bar__wrap {}


.header-bar__logo-wrap {}


.header-bar__logo {}

.header-bar__search {
    flex: 1;
    position: relative;
    margin-left: 2rem;
}

.header-bar__catalog-btn {
    position: absolute;
    left: .5rem;
    padding: 0 1.25rem;
    width: 11.75rem;
    justify-content: flex-start;
    border-radius: .375rem;
    z-index: 2;
}

.header-bar__catalog-btn-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.header-bar__catalog-btn-label {
    font-size: 1.0625rem;
    font-weight: 600;
}

.header-bar__catalog-btn-arrow {
    width: .6rem;
    height: .6rem;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    position: absolute;
    right: 1.25rem;
    margin-top: -.5rem;
    opacity: .32;
}

.header-bar__search-input {
    height: 4.5rem;
    border-radius: .75rem !important;
    padding-left: 13.5rem !important;
    padding-right: 5rem !important;
}

.header-bar__search-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 4.5rem;
    height: 4.5rem;
    border: 0;
    background-color: transparent;
    background-size: 1.75rem;
    transition: all ease .24s;
    cursor: pointer;
}

.header-bar__nav {}

.header-bar__nav-btn:hover {}

.header-bar__nav-btn:hover .header-bar__nav-btn-count {
    box-shadow: 0 0 0 0.15rem var(--color__fill-4-h);
}

.header-bar__nav-btn {
    padding: 0;
    height: 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: .675rem;
    padding-top: .75rem;
    font-weight: 600 !important;
    border-radius: .75rem;
    color: var(--color__dark) !important;
}


.header-bar__nav-btn-icon {
    width: 2rem;
    height: 1.75rem;
    background-size: auto 100%;
    position: relative;
}


.header-bar__nav-btn-count {
    transition: all ease .24s;
    width: 1rem;
    height: 1rem;
    position: absolute;
    right: -.25rem;
    top: -.125rem;
    background-color: var(--color__fill-1);
    border-radius: 100%;
    font-size: .75rem;
    line-height: 1.125rem;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    color: white;
    font-weight: bold;
    box-shadow: 0 0 0 .15rem var(--color__fill-4);
}

.header-bar__nav-btn-label {}

.header-bar__nav-btn-icon.--fave {
    background-size: auto 90%;
}

.header-bar__search-btn:hover {
    opacity: .4;
}

.header-bar.is-open {
    z-index: 102;
}

.header-bar__wrap.--mob {
    display: none;
}

@media screen and (max-width:991px) {
    .header-bar__wrap.--desk {
        display: none;
    }

    .header-bar__wrap.--mob {
        display: flex;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .header-bar {
        height: unset;
    }

    .header-bar__burger {
        position: relative;
        flex-shrink: 0;
        height: 40px;
        /* height: 2.5rem; */
        cursor: pointer;
        transition: all .3s ease;
    }

    .header-bar__burger-thumb {
        width: 100%;
        height: 2.5px;
        background-color: var(--color__dark);
        width: 24px;
        margin: 6px 0;
        transform-origin: left center;
        transition: .3s;
    }

    .header-bar__burger:hover {
        opacity: 0.72;
        transition: all .3s ease;
    }

    .header-bar__burger.is-active .header-bar__burger-thumb:nth-child(2) {
        display: none;
    }

    .header-bar__burger.is-active .header-bar__burger-thumb:first-child {
        transform: rotate(45deg);
        /* transform-origin: left center; */
        transform-origin: 8px 3px;
    }

    .header-bar__burger.is-active .header-bar__burger-thumb:last-child {
        transform: rotate(-45deg);
        /* transform-origin: left center; */
        transform-origin: 6px -1px;
    }

    .header-bar__wrap.--mob .header-bar__logo-wrap {
        width: 154px;
        position: relative;
        top: -2px;
        right: -8px;
    }

    .header-bar__col {
        gap: 16px;
        /* gap: 1rem; */
    }

    .header-bar__btn {
        height: 40px;
        transition: all .3s ease;
    }

    .header-bar__btn:hover {
        transition: all .3s ease;
        opacity: 0.72;
    }

    .header-bar__btn.--search .header-bar__btn-thumb {
        width: 1.7rem;
        height: 1.7rem;
    }

    .header-bar__btn.--callback .header-bar__btn-thumb {
        height: 2rem;
        width: 2rem;
    }

    .header-bar__btn.--basket .header-bar__btn-thumb {
        height: 1.85rem;
        width: 1.8rem;
    }

    .header-bar {
        border-bottom: 1px solid rgba(20, 20, 43, 0.12);
        z-index: 10;
    }

}