/* стили поля выбора города --> */
#scroll-top-button {
    position: fixed;
    width: 50px;
    height: 50px;
    background: #fbb822;
    bottom: 30px;
    left: 30px;
    z-index: 99999;
    opacity: 0.5;
    transition: all 0.5s;
    cursor: pointer;
}

#scroll-top-button:hover {
    opacity: 1;
}

#scroll-top-button:after {
    content: 'expand_less';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: opacity .3s linear;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Material Symbols Outlined';
    font-size: 48px;
    color: white;
}

.select-city {
    min-width: 170px;
    position: relative;
    user-select: none;
    z-index: 5001;
}

.select-city__input {
    min-height: 31px;
    display: flex;
    align-items: center;
    /* gap: 4px; */
}

.select-city__input > svg {
    fill: #4261e4;
    width: 16px;
    height: 16px;
}

.select-city__button.active {
    width: 130px;
}

.select-city__button_link {
    color: #4261e4;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    padding: 0 10px;
    display: flex;
    padding-left: 4px;
}

.header__middle .select-city__input > svg {
margin-bottom: 1px;
}

.header__middle__inner .header-contacts-item-text {
    font-weight: 600;
}

.header-search-form svg {
    color: #8c8c8c;
}

.header-search-form svg {
    height: 100%;
}

.header__middle .select-city__button_link {
    font-size: 18px;
    font-weight: 400;
    color: #000;
}

.header__middle .select-city__input {
    min-height: 16px;
}

.select-city__button.active {
    display: block;
    color: #4261e4;
}

.select-city__button {
    display: block;
    width: 100%;
    font-size: 16px;
    padding: 5px 10px !important;
    margin: 0 !important;
    border: none;
    background: none;
    display: none;
    height: unset !important;
    border-radius: 0;
}

.select-city__list.hide {
    display: none;
}

.select-city__list {
    display: flex;
    flex-direction: column;
    padding: 5px !important;
    margin: 0;
    position: absolute;
    width: 120%;
    max-height: 180px;
    overflow-y: scroll;
    top: calc(24px + 15px);
    background: white;
    -webkit-box-shadow: 0px 2px 8px 0px rgb(34 60 80 / 25%);
    -moz-box-shadow: 0px 2px 8px 0px rgba(34, 60, 80, 0.25);
    box-shadow: 0px 2px 8px 0px rgb(34 60 80 / 25%);
}

.select-city__link {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 14px;
    padding: 5px 10px;
}

.select-city__item {
    list-style-type: none;
}

.select-scroll, .catalog-sidebar-menu-subcategories {
    overflow-y: scroll;
}

.select-city {
    width: unset;
}

.header__middle .select-city__link {
    color: #000;
}

.header-right {
    display: flex;
    justify-content: right;
}

.header-right > * {
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.select-city__button_link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 8px;
    right: -8px;
    border: 5px solid #4261e4;
      border-right-color: rgb(66, 97, 228);
      border-bottom-color: rgb(66, 97, 228);
      border-bottom-style: solid;
      border-bottom-width: 5px;
      border-left-color: rgb(66, 97, 228);
    border-bottom: none;
    border-left-color: transparent;
    border-right-color: transparent;
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .header-middle .container {
        margin: 0 50px !important;
    }

    .header__middle__inner .input__inner {
        width: 300px;
    }
}

.select-city__item.hidden {
    display: none;
}

.header__middle__inner .select-city__button.active {
    color: #000;
}

.select-city__list.hidden {
    display: none;
}

.select-city__item a:hover {
background-color: lightgrey;
}

.select-scroll::-webkit-scrollbar, .catalog-sidebar-menu-subcategories::-webkit-scrollbar {
    width: 5px;
}

.select-scroll::-webkit-scrollbar-thumb, .catalog-sidebar-menu-subcategories::-webkit-scrollbar-thumb {
    background: #0d6efd;
}

.select-scroll::-webkit-scrollbar-track, .catalog-sidebar-menu-subcategories::-webkit-scrollbar-track {
    border-radius: 0 4px 4px 0;
    background-color: #f9f9fb;
}
.select-city__button_link.hide{
    display: none;
}
.select-city__button:focus{
    border-bottom: 1px #4261e4 solid;
    outline: none
}
.select-city__button:focus-visible{
    outline: none
}
.select-city_mobil{
    display: none
}
@media screen and (max-width: 992px) {
    .select-city_desctop{
        display: none
    }
    .select-city_mobil{
        display: block
    }
}
/* <-- стили поля выбора города */