.preloader--block {
    height: 2px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.preloader--block:before {
    content: '';
    position: absolute;
    background: #F8A303;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0%;
    transition: 0.3s;
    animation: movePreloader 5s linear infinite;
}

.container-fluid .preloader--block {
    width: 100vw;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: relative;
    left: 50%;
}

.hide_prop {
    display: none;
}

@keyframes movePreloader {
    0% {
        width: 0%
    }

    50% {
        width: 50%
    }

    100% {
        width: 100%
    }
}

/* 20.04.2021 */
.title-search__pre {
    font-weight: 600;
}

.title-search__cat,
.title-search__list {
    overflow: auto;
    max-height: 600px;
}

.title-search__btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.title-search__btns a {
    text-decoration: underline;
    font-size: 14px;
    color: #2D2E29;
    padding-right: 10px;
}

body .res-table tr td:first-child {
    width: 180px;
}

.res-table .search-product-img {
    justify-content: flex-start;
}

.res-table .search-product-img img {
    max-width: 180px;
    max-height: 180px;
    object-fit: contain;
}

@media screen and (max-width: 1200px) {
    body .res-table tr td:first-child {
        width: 120px;
    }
}

.product-img picture {
    max-width: 100%;
    max-height: 100%;
}

/* 21.05.2021 */
.wrapper--main-page .index-complex__bg picture img,
.wrapper--main-page .catalog-inner picture img,
.wrapper--main-page .index-news-slider__img picture img,
.wrapper--catalog .catalog-inner picture img,
.wrapper--collection a.catalog-img picture,
.wrapper--collection a.catalog-img picture img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wrapper--detail .tile-photo__inner picture {
    width: 100%;
    height: 100%;
}

.wrapper--main-page .index-news-slider__img {
    position: relative;
    overflow: hidden;
}

.wrapper--main-page .index-reviews__img__inner picture img,
.wrapper--search .res-table a picture {
    width: 100%;
}

.wrapper--detail .tile-photo__inner picture img {
    width: 100%;
    height: 100%;
}

.top-search {
    height: 37px;
}

.search__close {
    position: absolute;
    top: 50%;
    right: 92px;
    display: none;
    margin: 0;
    padding: 0;
    width: 17px;
    height: 17px;
    color: #808080;
    background-color: transparent;
    border: none;
    transform: translateY(-50%) rotate(45deg);
}

.search__close::before,
.search__close::after {
    position: absolute;

    background-color: currentColor;

    content: '';
}

.search__close::before {
    left: 0;
    top: 8px;

    width: 100%;
    height: 1px;
}

.search__close::after {
    top: 0;
    left: 8px;

    width: 1px;
    height: 100%;

    transform: translate(-50%, 0);
}




.top-search.open .search__close {
    position: relative;
    top: 0;
    left: 0;

    display: block;

    transform: rotate(45deg);
}

.top-search.open form {
    position: absolute;
    top: -17px;
    bottom: -17px;

    display: flex;
    align-items: center;
    padding: 17px 19px;

    border: 2px solid #FFB224;
    border-radius: 2px;
    background-color: #0B0B0B;
}

.top-search.open .top-search__submit,
.top-search.open .search__close {
    flex-shrink: 0;
    margin-left: 16px;
}

.top-search.open .top-search__submit {
    position: static;

    border-radius: 2px;
    order: 1;
}

.top-search.open .top-search__input {
    padding: 0 0 0 32px;
    flex-grow: 1;

    border: none;
}

.top-search__input:-webkit-autofill,
.top-search__input:-webkit-autofill:hover,
.top-search__input:-webkit-autofill:focus,
.top-search__input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #0B0B0B inset !important;
}

input:-webkit-autofill {
    -webkit-text-fill-color: white !important;
    caret-color: white;
}

.top-search.open::before {
    top: 50%;
    left: 19px;
    z-index: 18;

    transform: translateY(-50%);
}

.regions-block {
    position: relative;
}

.regions-block__button {
    position: relative;

    padding: 0 13px 0 21px;
    margin: 0;

    font-size: 17px;
    line-height: 22px;
    font-family: inherit;
    color: #FFFFFF;
    white-space: nowrap;

    border: none;
    background-color: transparent;
}

.regions-block__button .number {
    color: #8d8d8d;
}

.regions-block__button::before {
    position: absolute;
    left: 8px;
    top: 50%;

    width: 8px;
    height: 18px;
    background: url(/local/templates/vizavi/components/bitrix/catalog/main/bitrix/catalog.section/.default/template.php);

    transform: translateY(-50%);
    transition: all 300ms;
    content: '';
}

.regions-block__button::after {
    position: absolute;
    right: 0;
    top: 50%;

    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 3px 0 3px;
    border-color: currentColor transparent transparent transparent;

    transform: translateY(-50%);
    transition: all 300ms;
    content: '';
}

.regions-block__button.open::after {
    transform: translateY(-50%) scale(1, -1);
}

.regions-block__dropdown {
    position: absolute;
    right: -13px;
    left: 0;
    top: 34px;
    z-index: 10;

    height: 0;
    overflow: hidden;

    background-color: white;
    opacity: 0;

    transition: all 300ms;
}

.regions-block__button.open~.regions-block__dropdown {
    opacity: 1;
    overflow: visible;
}

.regions-block__dropdown::before {
    position: absolute;
    right: 13px;
    top: -8px;

    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent white transparent;
    content: '';
}

.regions-block__link {
    display: block;
    padding: 8px 12px 8px 19px;

    font-size: 17px;
    line-height: 22px;
    color: #0B0B0B;

    transition: background-color 300ms, opacity 300ms linear 100ms;
    opacity: 0;
}

.regions-block__button.open~.regions-block__dropdown .regions-block__link {
    opacity: 1;
}

.regions-block__link:hover {
    background-color: #EEEEEE;
}

@media all and (min-width: 600.1px) {
    .regions-block {
        width: 45%;
        max-width: 100px;
        margin-left: 12px;
    }

}

@media all and (max-width: 600px) {
    .regions-block__link {
        display: block;
        padding: 8px 12px 8px 19px;
        background: white;
        font-size: 17px;
        line-height: 22px;
        color: #0B0B0B;

        transition: background-color 300ms, opacity 300ms linear 100ms;
        opacity: 0;
    }

    .regions-block__dropdown {
        position: absolute;
        right: -13px;
        left: 0;
        top: 34px;
        z-index: 100;
        height: 0;
        overflow: hidden;

        background-color: white;
        opacity: 0;

        transition: all 300ms;
    }
}

@media all and (min-width: 1024.1px) {
    .send-project {
        display: flex;
        align-items: center;
    }
}

.topBanner {
    display: block;
    height: 33px;
    padding: 5px 20px;
    font-weight: 600;
    font-size: 15px;
    line-height: 23px;
    text-decoration: none;
    text-align: center;
}

.f-white {
    color: #fff;
}