.menu-main {
    width: 1250px;
    z-index: 100;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    background-color: white;
    padding: 0 10px;
    margin: 0 auto;
    border-radius: 0 0 15px 15px;
}
.menu__items {
    height: 46px;
    display: flex;
    flex-direction: row;
}

.menu__item {
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: transparent;
    outline: none;
    border: none;
    margin-left: 45px;
    padding: 0;
    color: #535353;
}
.menu__item:first-child {
    margin-left: 0;
}
.menu__item:hover {
    color: #7B9429;
    .menu__item-icon {
        background-color: #7B9429;
    }
}
.menu__item-icon {
    background-color: #424F4B;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu__item-svg_mobile {
    display: none;
}
.menu__item-text {
    margin-left: 10px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    
}

.region {
    display: flex;
    flex-direction: row;
    max-width: 400px;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    outline: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
}
.region__icon {
    width: 18px;
    height: 18px;
    margin-left: 1px;
    flex-shrink: 0;
}
.region__text {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #7B9429;
    white-space: nowrap;
    margin-left: 9px;
}

/* Мобильные блоки */
.mobile-search-container {
    display: none;
}