.block-search-wrapper,
.block-search-wrapper * {
    box-sizing: border-box;
}

.block-search-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1540px;
    min-height: 90px;
    margin: 50px auto 0px;
    /* background: linear-gradient(90deg, rgba(12, 23, 9, 0.45) 0%, #1D3A14 26.44%, #1D3A14 69.71%, rgba(12, 23, 9, 0.45) 100%); */
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
}

.block-search {
    display: none;
    flex-direction: row;
    align-items: center;
    max-width: 1540px;
    padding: 24px 30px;
    margin: 0 auto;
    flex-direction: column;
}

.be-container {
    width: 100%;
}

.block-search__inner {
    display: flex;
    width: 100%;
    gap: 10px;
}

.block-search__controls {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    /* width: 100%; */
    /* max-width: 400px; */
    padding: 1px;
    /* margin: 0 8px 0 0; */
    /* margin: 0 0 18px 0; */
    width: auto;
}

@media screen and (min-width: 768px) and (max-width: 1590px) {
    .block-search__inner {
        flex-direction: column;
    }
}

.block-search__control {
    position: relative;
    width: 100%;
}

.block-search__control:after {
    content: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyNCcgaGVpZ2h0PScyNCcgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGZpbGw9IiM5MWQxN2QiIGQ9Ik0xMiAxNi41bC03LTdMNi41IDhsNS41IDUuNUwxNy41IDggMTkgOS41eiI+PC9wYXRoPgo8L3N2Zz4=');
    position: absolute;
    top: 9px;
    right: 6px;
    z-index: 1;
    width: 24px;
    height: 24px;
    opacity: 0.88;
}

.block-search__control:hover:after {
    opacity: 1;
}

.block-search__label {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 12px;
    height: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #ccc;
}

.block-search__select {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 42px;
    padding: 12px 30px 0 12px;
    font-family: 'Poppins', sans-serif;
    text-overflow: ellipsis;
    font-weight: 500;
    font-size: 13.5px;
    line-height: 30px;
    color: #ffffff;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: 0 -1px 0 0 hsla(0, 0%, 100%, 0), 0 1px 0 0 #d6d6d6, inset 0 0 0 0 rgba(0, 0, 0, .08), 0 0 0 1px hsla(0, 0%, 100%, 0);
    appearance: none;
}

.block-search__select:focus-visible {
    outline: none;
}

.block-search__select:hover {
    cursor: pointer;
}

.block-search__select option {
    color: #3d3d3d;
}

/* @media screen and (max-width: 1400px) {
    .block-search {
        flex-direction: column;
    }

    .block-search__controls {
        max-width: none;
        margin: 0 0 18px 0;
    }
} */

@media screen and (max-width: 987px) {
    .block-search__controls {
        gap: 18px;
    }
}

@media screen and (max-width: 415px) {
    .block-search__controls {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .block-search-wrapper {
        display: none;
    }
}