body {
    --max-width-site: 100% !important;
}

@media (min-width: 2450px) {
    body {
        --max-width-site: 2450px !important;
    }
}

@media (min-width: 3500px) {
    body {
        --max-width-site: 3500px !important;
    }
}

@media (min-width: 4000px) {
    body {
        --max-width-site: 4000px !important;
    }
}

input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

#search-result {
    transition: opacity 0.5s;
}

.search-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100dvh - 196px - var(--heightLogin) - env(safe-area-inset-bottom));
}

.search-filter-box {
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 10px;
}

.search-filter-box > input {
    margin: 0;
    margin-top: 2px;
    margin-bottom: -2px;
}

.search-filters hr {
    margin: 5px -15px;
    border-top: 1px solid #a7a7a70f;
}

.search-filters * {
    font-size: 14px;
}

.search-filters h6 {
    font-size: 16px;
    margin: 0;
    line-height: 1;
}

#search-block-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 159px;
    height: 159px;
    overflow-x: hidden;
}

.search-autocomplete {
    pointer-events: none;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-20px);
    backdrop-filter: blur(10px);
    position: absolute;
    width: 100%;
    left: 0;
    height: auto;
    min-height: 20px;
    top: 40px;
    padding: 5px;
    z-index: 1;
    background: #141414;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0, 0, 0, 1);
    box-shadow: inset 0 0 0 1px #2b2b2b, 0px 20px 20px -10px #00000087;
}

.search-autocomplete > div {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    padding: 9px 12px;
    border-radius: 12px;
    cursor: pointer;
}

.search-autocomplete span {
    font-weight: 700;
}

.search-autocomplete > div:hover,
.search-autocomplete > div:focus {
    background: #ffffff0d;
    outline: none;
}

.search-autocomplete.d-none {
    display: flex !important;
    pointer-events: all;
    opacity: 1;
    filter: none;
    transform: none;
}

.browse-loading-banner {
    height: 150px;
    position: sticky;
    top: 80px;
    z-index: 1;
    margin-bottom: -150px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.browse-loading-banner > div {
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.browse-loading-banner-show > div {
    opacity: 1;
}
