.catalog__search {
    display: block;
    position: relative
}

@media (max-width: 767px) {
    .catalog__search {
        margin-top: 20px
    }
}

.catalog__search input {
    width: 350px;
    height: 45px;
    padding: 0 15px;
    font-size: 16px;
    font-family: var(--text-font);
    border-radius: 0;
    border: 1px solid var(--gray4)
}

.catalog__search input::-webkit-input-placeholder {
    color: var(--black)
}

.catalog__search input::-moz-placeholder {
    color: var(--black)
}

.catalog__search input:-ms-input-placeholder {
    color: var(--black)
}

.catalog__search input::-ms-input-placeholder {
    color: var(--black)
}

.catalog__search input::placeholder {
    color: var(--black)
}

.catalog__search button {
    padding: 0;
    cursor: pointer;
    position: absolute;
    width: 14px;
    height: 14px;
    border: 0;
    border-radius: 0;
    background: 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    right: 15px;
    top: 18px
}

.catalog__search button svg {
    width: 100%;
    display: block;
}

.shop__filter_select {
	min-width: 190px;
}

.shops .catalog__grid-switcher {
    margin-top: 20px;
}

.shops__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 60px 0
}

.search-shop-popup{
    position: absolute;
    border: 1px solid #c1c1c1;
    background: #ffffff;
    width: 100%;
    flex-direction: column;
}

.search-shop-popup > div {
    width: 100%;
    padding: .8rem 1rem ;
    text-decoration: none;
    cursor: pointer;
    color: var(--black);
    border-bottom: 1px solid var(--gold);
}

.search-shop-popup > div > a {
    text-decoration: none;
    color: var(--black);
}


@media (max-width: 1267px) {
    .shops__controls {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding: 30px 0 0
    }
}

@media (max-width: 767px) {
    .shops__controls {
        margin-bottom: -20px
    }
}

.filter__select-dropdown a.active {
    color: var(--black)
}

a.anchor.unused,
a.anchor.unused:hover {
    color: var(--gray4);
	cursor: default;
}