

/* Start:/local/templates/darsy/components/bitrix/catalog/.default/style.css?1786475549505*/
.filter-loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.filter-loader.active {
    opacity: 1;
    visibility: visible;
}

.filter-loader svg {
    width: 3em;
    height: 3em;
    fill: #032dd3;
}
/* End */


/* Start:/local/templates/darsy/components/bitrix/catalog.smart.filter/.default/style.css?1786475549940*/
.filter-catalog__title {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.filter-catalog__title svg {
    color: #191d92;
    opacity: 0;
}

.filter-catalog__title svg.active {
    opacity: 1;
}

.filter-catalog__range-inner .input-wrapper {
    flex-grow: 1;
}

.noUi-tooltip {
    transition: opacity .2s ease;
}

.filter-catalog__selected-items:has(.tag-catalog) ~ .filter-catalog__items,
.filter-catalog__selected-items:has(.tag-catalog) ~ .filter-catalog__footer {
    display: block !important;
}

.noUi-tooltip {
    opacity: 0;
    visibility: hidden;
}

.noUi-active .noUi-tooltip {
    opacity: 1;
    visibility: visible;
}

.filter-catalog__footer-btn {
    text-align: center;
}

.filter-mobile .filter-mobile__count {
    display: none;
}

.filter-mobile.filter-mobile--has-filters .filter-mobile__count {
    display: block;
}
/* End */


/* Start:/local/components/darsy/page.meta/templates/.default/style.css?17887892006711*/
:root {
    --white: #fff;
    --black: #151515;
    --blue-100: #eff0f7;
    --blue-200: #e2e3f2;
    --blue-300: #9a9abf;
    --blue-500: #2d32d0;
    --orange-500: #f45d2e;
    --gray-200: #94949e;
    --gray-500: #616271;
    --gray-800: #3d3d4f;
    --color-main: var(--black);
    --bg-color-main: var(--blue-100);
    --gap: 20px;
    --gap-minus: -20px;
    --offset: 10px;
    --offset-minus: -10px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Raleway, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-main);
    background-color: var(--bg-color-main);
    padding: 40px 0 80px;
}

.container {
    width: 100%;
    max-width: 1880px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

.section__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section__head {
    margin-bottom: 32px;
}

.section__title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-800);
    letter-spacing: -1px;
}

.section__title--center {
    text-align: center;
}

@media (max-width: 768px) {
    .section__title {
        font-size: 28px;
    }
}

.decor {
    position: relative;
    display: inline-block;
}

.decor--line-8::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background-color: var(--orange-500);
    border-radius: 2px;
}

/* ТЕКСТОВЫЙ БЛОК НА ВСЮ ШИРИНУ КОНТЕЙНЕРА */
.article-fullwidth {
    width: 100%;
}

.article-fullwidth .lead-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: var(--gray-800);
    letter-spacing: -0.25px;
    margin-bottom: 32px;
}

.article-fullwidth h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
    color: var(--gray-800);
    letter-spacing: -0.5px;
    margin: 36px 0 20px;
}

.article-fullwidth p {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.article-fullwidth b,
.article-fullwidth strong {
    font-weight: 700;
    color: var(--gray-800);
}

.article-fullwidth ul {
    padding-left: 28px;
    margin-bottom: 24px;
}

.article-fullwidth ul li {
    position: relative;
    list-style: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.article-fullwidth ul li::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 11px;
    width: 5px;
    height: 5px;
    background-color: var(--orange-500);
    border-radius: 50%;
}

@media (max-width: 1440px) {
    .article-fullwidth .lead-text,
    .article-fullwidth p,
    .article-fullwidth ul li {
        font-size: 14px;
        line-height: 22px;
    }

    .article-fullwidth h2 {
        font-size: 24px;
        line-height: 28px;
    }
}

/* РАННИЙ КАТ */
.seo-cut {
    position: relative;
    width: 100%;
}

.seo-cut__preview {
    position: relative;
}

.seo-cut:not(.is-open) .seo-cut__preview::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(180deg, rgba(239, 240, 247, 0) 0%, var(--bg-color-main) 100%);
    pointer-events: none;
}

.seo-cut__hidden {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-out;
}

.seo-cut.is-open .seo-cut__hidden {
    grid-template-rows: 1fr;
}

.seo-cut__inner {
    overflow: hidden;
}

.seo-cut__action {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    position: relative;
    z-index: 2;
}

.seo-cut__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    background-color: var(--white);
    color: var(--gray-800);
    border: 1px solid var(--blue-200);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.seo-cut__btn:hover {
    border-color: var(--orange-500);
    color: var(--orange-500);
}

.seo-cut__btn svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.seo-cut.is-open .seo-cut__btn svg {
    transform: rotate(180deg);
}

/* FAQ В 2 КОЛОНКИ */
.grid_faq_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 var(--offset-minus);
    /*row-gap: 12px;*/
    justify-content: center;
}

.grid_faq_cell--6 {
    width: calc(50% - var(--gap));
    margin: 0 var(--offset);
}

@media (max-width: 960px) {
    .grid_faq_cell--6 {
        width: calc(100% - var(--gap));
    }
}

.faq {
    background-color: var(--white);
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.faq__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

.faq__name {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: var(--gray-800);
}

@media (max-width: 1440px) {
    .faq__name {
        font-size: 16px;
        line-height: 20px;
    }
}

.faq__arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--blue-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.faq__arrow svg {
    width: 14px;
    height: 14px;
    color: var(--gray-800);
    transition: transform 0.3s ease;
}

.faq__body {
    display: none;
    padding: 0 24px 20px;
}

.faq__content {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--gray-500);
}

@media (max-width: 1440px) {
    .faq__content {
        font-size: 14px;
        line-height: 22px;
    }
}

.faq.active .faq__arrow {
    background-color: var(--blue-500);
}

.faq.active .faq__arrow svg {
    color: var(--white);
    transform: rotate(180deg);
}

.faq.active .faq__body {
    display: block;
}
.delimetr {
    padding-bottom: 50px;
}
.decor--text-9:after {
    margin-left: 160px !important;
}
.decor--line-6:before {
    left: 0px !important;
    width: 300px !important;
}
@media (max-width: 960px) {
    .decor--text-9:after {
        margin-left: 70px !important;
    }
    .decor--line-6:before {
        width: 130px !important;
    }
}
@media (max-width: 1280px) {
    .decor--line-6:before {
        width: 130px !important;
    }
}
@media (max-width: 1440px) {
    .decor--line-6:before {
        width: 230px !important;
    }
}
/* End */
/* /local/templates/darsy/components/bitrix/catalog/.default/style.css?1786475549505 */
/* /local/templates/darsy/components/bitrix/catalog.smart.filter/.default/style.css?1786475549940 */
/* /local/components/darsy/page.meta/templates/.default/style.css?17887892006711 */
