

/* Start:/switch/style.css?17696705079496*/
.lz-calc-section {
    padding: 100px 0;
    color: #151416;
    background: #fff;
}
.lz-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.lz-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* --- КОНТРОЛЫ --- */
.lz-controls {
    margin-bottom: 40px;
}
.lz-control-row {
    margin-bottom: 30px;
}
.slider-row {
    margin-bottom: 40px;
}

/* Тоггл Да/Нет */
.lz-toggle-group {
    display: inline-flex;
    gap: 10px;
    background: transparent;
    border: none;
    border-radius: 0;
    margin-left: 20px;
    overflow: visible;
}
.lz-toggle-group input { display: none; }
.lz-toggle-group label {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 34px;
    min-width: 54px;
    padding: 0 15px;

    background: #FFFFFF;
    border: 1px solid #D4DCE7;
    border-radius: 10px;

    color: #151416;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;

    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
    user-select: none;
}
.lz-toggle-group input:checked + label {
    background: #4061A6;
    color: #FFFFFF;
    border-color: #D4DCE7;
}
.lz-toggle-group input:not(:checked) + label {
    border-color: #4061A6;
    color: #4061A6;
}
.lz-control-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lz-label {
    font-size: 16px; color: #6F6F6F;
}

/* Инпуты с ползунками */
.lz-label-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
    color: #6F6F6F;
}
.lz-input-wrap {
    border: 1px solid #DFE5EB;
    border-radius: 8px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    width: 140px;
}
.lz-val-input {
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    color: #151416;
    width: 100%;
    text-align: right;
    margin-right: 5px;
}
.lz-unit { color: #9AA0A6; font-size: 14px; }

/* Стилизация Range Slider */
.lz-range-wrap { width: 100%; position: relative; }
.lz-range-wrap input[type=range] {
    width: 100%;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
}
.lz-range-wrap input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px;
    background: #4061A6;
}
.lz-range-wrap input[type=range]::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #4061A6;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #4061A6;
    -webkit-appearance: none;
    margin-top: -7px; /* центрирование на треке */
}
.lz-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #CED4DA;
    font-size: 12px;
}

/* --- ТАБЛИЦА --- */
.lz-table-wrapper {
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(20, 20, 22, 0.06);
    border: 1px solid #F7F5FA;
    padding: 32px;
    margin-bottom: 30px;
}
.lz-table {
    width: 100%;
    border-collapse: collapse;
}
.lz-table th {
    padding: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 1px solid #F0F0F0;
}
.lz-table th.blue-head {
    background: linear-gradient(90.68deg, #6CBDFF -0.09%, #4061A6 100%);
    color: #fff;
    border-radius: 8px 8px 0 0;
}
.lz-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #F0F0F0;
    font-size: 15px;
}
.lz-table tr:last-child td { border-bottom: none; }
/* Первая колонка */
.lz-table td:first-child {
    font-weight: 500;
    color: #151416;
    width: 40%;
}
/* Колонки с цифрами */
.lz-table td:not(:first-child) {
    text-align: center;
    width: 30%;
    border-left: 1px solid #F0F0F0;
}
/* Голубой фон для СПГ колонки */
.lz-table td:last-child {
    background: #F9FBFF;
}
/* Жирная строка ИТОГО */
.lz-table tr.row-total td {
    font-weight: 700;
    background: #EFF4FA;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.highlight-blue {
    color: #4061A6;
    font-weight: 600;
}

/* --- КАРТОЧКИ --- */
.lz-results-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto auto;
    gap: 20px;
}
.lz-card {
    background: #fff;
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.benefit-card {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    border: none;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}
.lz-card-label {
    font-size: 14px; color: #6F6F6F; margin-bottom: 10px;
}
.lz-card-val {
    font-size: 28px; font-weight: 700; color: #151416;
}
.big-red {
    font-size: 48px; color: #E3000F;
}
.text-right { text-align: right; width: 100%; }

/* АДАПТИВ */
@media (max-width: 768px) {
    .lz-control-row.slider-row { flex-direction: column; align-items: flex-start; }
    .lz-input-wrap { margin-top: 10px; }
    .lz-table td, .lz-table th { padding: 10px 5px; font-size: 13px; }
    .lz-results-grid { grid-template-columns: 1fr; }
    .benefit-card { grid-column: 1; grid-row: auto; }
    .big-red { font-size: 36px; text-align: left; }
    .lz-card-label.text-right { text-align: left; }
}

.bg-ellipse {
    position: absolute;
    width: 849px;
    height: 801px;
    right: -171px;
    top: -117px;
    border-radius: 50%;
    z-index: -1;
    background: linear-gradient(180deg, #6CDDFF 0%, #4061A6 100%);
}

#switch {
    background: url(/local/templates/novatek/images/truck-bg.png);
    background-size: auto 675px;
    background-position: calc(100% + 339px) 120px; /* сначала X, потом Y */
    background-repeat: no-repeat;
}

/* Вставьте это ниже вашего текущего CSS */

@media (max-width: 991px) {
    /* 1. Настройка основного контейнера */
    #switch {
        padding-top: 30px !important;
        background-size: 40%;
        background-position: top 30px right !important;

        padding-bottom: 280px !important;
    }
    #switch .section-title, #switch .section-subtitle {
        padding-right:100px;
    }

    /* 2. Усмиряем синий шар, чтобы не ломал верстку */
    .bg-ellipse {
        width: 300px !important;
        height: 300px !important;
        right: -100px !important;
        top: -50px !important;
        opacity: 0.7;
    }

    /* 3. Адаптация типографики (перебиваем инлайн стили) */
    .section-title {
        font-size: 26px !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
        max-width: 100% !important;
    }

    .section-subtitle {
        font-size: 16px !important;
        margin-bottom: 24px !important;
        line-height: 1.4;
    }

    .section-description {
        font-size: 15px !important;
        line-height: 1.5;
    }

    /* 4. Блок с иконкой */
    .section-block-list {
        align-items: flex-start !important; /* Иконка прижата к верху текста */
        margin-bottom: 32px !important;
    }

    /* 5. Кнопка */
    .js-open-modal {
        width: 100%; /* Кнопка на всю ширину */
        justify-content: center;
        margin-bottom: 0 !important; /* Убираем отступ, так как снизу теперь padding блока */
    }

    /* 6. Страховка от горизонтального скролла */
    body, html {
        overflow-x: hidden;
    }
}

/* Контейнер для разделителя */
.wave-divider {
    position: relative;
    width: 100%;
    height: 0; /* Не занимаем места в потоке */
    z-index: 5; /* Слой выше, чем фоны секций */
    display: flex;
    justify-content: center;
}

/* Сама SVG картинка */
.wave-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 190px; /* Базовая высота из SVG (можно менять) */

    /* Сдвигаем волну вверх, чтобы она "села" на границу */
    transform: translateY(-50%);

    /* Делаем так, чтобы клики проходили сквозь волну (если там есть кнопки) */
    pointer-events: none;
}

/* Адаптив для мобильных (чтобы волна не была слишком мелкой) */
@media (max-width: 768px) {
    .wave-svg {
        height: 100px; /* Уменьшаем высоту на телефонах */
        transform: translateY(-50%) scaleX(2); /* Растягиваем немного по ширине, если нужно */
        /* Или просто оставьте height: 100px; без scaleX */
    }

    /* Важно: скрыть горизонтальную прокрутку, если волна вылезет */
    body {
        overflow-x: hidden;
    }
}
/* End */


/* Start:/local/templates/novatek/components/bitrix/news.detail/switch/style.css?177486962911256*/
/* ========================================================
   ОБЩИЕ ФОНЫ И ДЕКОР
   ======================================================== */
.bg-ellipse {
    position: absolute;
    width: 849px;
    height: 801px;
    right: -171px;
    top: -117px;
    border-radius: 50%;
    z-index: -1;
    background: linear-gradient(180deg, #6CDDFF 0%, #4061A6 100%);
}

#switch {
    background: url(/local/templates/novatek/images/truck-bg.png);
    background-size: auto 675px;
    background-position: calc(100% + 339px) 120px; /* сначала X, потом Y */
    background-repeat: no-repeat;
}

/* ========================================================
   1. ТЕКСТОВЫЙ ПРОМО-БЛОК (Верхняя часть)
   ======================================================== */
.lz-promo-section {
    margin-top: 100px;
    padding-top: 40px;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #151416;
}

/* ===== ЗАГОЛОВОК ===== */
.lz-promo-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    color: #151416;
    max-width: 972px;
    margin-bottom: 16px;
}

/* ===== ПОДЗАГОЛОВОК ===== */
.lz-promo-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #151416;
    margin-bottom: 48px;
}

/* ===== ОПИСАНИЕ ===== */
.lz-promo-description {
    max-width: 860px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #151416;
    margin-bottom: 40px;
}

.lz-promo-description b {
    font-weight: 600;
}

.lz-promo-description p {
    margin-bottom: 8px;
}

/* ===== СНОСКА (чуть меньше) ===== */
.lz-promo-footnote {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #151416;
    margin-bottom: 48px;
}

/* ===== БЛОК-ЗАГОЛОВОК ===== */
.lz-promo-block-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #151416;
    margin-bottom: 24px;
}

/* ===== СПИСОК ===== */
.lz-promo-list-wrap {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 48px;
}

.lz-promo-list-icon {
    flex-shrink: 0;
}

.lz-promo-list-items {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #151416;
}

.lz-promo-list-item:not(:last-child) {
    margin-bottom: 16px;
}

/* ===== КНОПКА ===== */
.lz-promo-btn {
    background: #E40046;
    border: none;
    border-radius: 1000px;
    padding: 12px 24px;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.lz-promo-btn:hover {
    background: #c3003a;
    transform: translateY(-2px);
}

.lz-promo-btn::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 15px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.lz-promo-btn:hover::after {
    transform: rotate(45deg) translate(3px, -3px);
}

/* ========================================================
   2. КАЛЬКУЛЯТОР ЛИЗИНГА (Нижняя часть)
   ======================================================== */
.lz-calc-section {
    padding: 100px 0;
    color: #151416;
    background: #fff;
}
.lz-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.lz-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* --- КОНТРОЛЫ КАЛЬКУЛЯТОРА --- */
.lz-controls {
    margin-bottom: 40px;
}
.lz-control-row {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slider-row {
    margin-bottom: 40px;
}

/* Тоггл Да/Нет */
.lz-toggle-group {
    display: inline-flex;
    gap: 10px;
    background: transparent;
    border: none;
    border-radius: 0;
    margin-left: 20px;
    overflow: visible;
}
.lz-toggle-group input { display: none; }
.lz-toggle-group label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    min-width: 54px;
    padding: 0 15px;
    background: #FFFFFF;
    border: 1px solid #D4DCE7;
    border-radius: 10px;
    color: #151416;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
    user-select: none;
}
.lz-toggle-group input:checked + label {
    background: #4061A6;
    color: #FFFFFF;
    border-color: #D4DCE7;
}
.lz-toggle-group input:not(:checked) + label {
    border-color: #4061A6;
    color: #4061A6;
}

.lz-label {
    font-size: 16px; color: #6F6F6F;
}

/* Инпуты с ползунками */
.lz-label-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
    color: #6F6F6F;
}
.lz-input-wrap {
    border: 1px solid #DFE5EB;
    border-radius: 8px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    width: 140px;
}
.lz-val-input {
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    color: #151416;
    width: 100%;
    text-align: right;
    margin-right: 5px;
}
.lz-unit { color: #9AA0A6; font-size: 14px; }

/* Стилизация Range Slider */
.lz-range-wrap { width: 100%; position: relative; }
.lz-range-wrap input[type=range] {
    width: 100%;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
}
.lz-range-wrap input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px;
    background: #4061A6;
}
.lz-range-wrap input[type=range]::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #4061A6;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #4061A6;
    -webkit-appearance: none;
    margin-top: -7px;
}
.lz-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #CED4DA;
    font-size: 12px;
}

/* --- ТАБЛИЦА КАЛЬКУЛЯТОРА --- */
.lz-table-wrapper {
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(20, 20, 22, 0.06);
    border: 1px solid #F7F5FA;
    padding: 32px;
    margin-bottom: 30px;
}
.lz-table {
    width: 100%;
    border-collapse: collapse;
}
.lz-table th {
    padding: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 1px solid #F0F0F0;
}
.lz-table th.blue-head {
    background: linear-gradient(90.68deg, #6CBDFF -0.09%, #4061A6 100%);
    color: #fff;
    border-radius: 8px 8px 0 0;
}
.lz-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #F0F0F0;
    font-size: 15px;
}
.lz-table tr:last-child td { border-bottom: none; }
.lz-table td:first-child {
    font-weight: 500;
    color: #151416;
    width: 40%;
}
.lz-table td:not(:first-child) {
    text-align: center;
    width: 30%;
    border-left: 1px solid #F0F0F0;
}
.lz-table td:last-child {
    background: #F9FBFF;
}
.lz-table tr.row-total td {
    font-weight: 700;
    background: #EFF4FA;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.highlight-blue {
    color: #4061A6;
    font-weight: 600;
}

/* --- КАРТОЧКИ ИТОГОВ --- */
.lz-results-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto auto;
    gap: 20px;
}
.lz-card {
    background: #fff;
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.benefit-card {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    border: none;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}
.lz-card-label {
    font-size: 14px; color: #6F6F6F; margin-bottom: 10px;
}
.lz-card-val {
    font-size: 28px; font-weight: 700; color: #151416;
}
.lz-card-notice {
    font-size: 14px; font-weight: 350; color: #6F6F6F; margin-top:10px;
}
.big-red {
    font-size: 48px; color: #E3000F;
}
.text-right { text-align: right; width: 100%; }


/* ========================================================
   3. ВОЛНА ДЕКОРА
   ======================================================== */
.wave-divider {
    position: relative;
    width: 100%;
    height: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
}
.wave-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 190px;
    transform: translateY(-50%);
    pointer-events: none;
}


/* ========================================================
   4. АДАПТИВ (ПЛАНШЕТЫ И ТЕЛЕФОНЫ)
   ======================================================== */
@media (max-width: 991px) {
    /* Настройка основного контейнера промо */
    #switch {
        padding-top: 30px;
        background-size: 40%;
        background-position: top 30px right;
        padding-bottom: 280px;
    }

    .lz-promo-title, .lz-promo-subtitle {
        padding-right: 100px;
    }

    /* Усмиряем синий шар */
    .bg-ellipse {
        width: 300px;
        height: 300px;
        right: -100px;
        top: -50px;
        opacity: 0.7;
    }

    /* Адаптация типографики (теперь без !important) */
    .lz-promo-title {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 16px;
        max-width: 100%;
    }

    .lz-promo-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.4;
    }

    .lz-promo-description {
        font-size: 15px;
        line-height: 1.5;
    }

    /* Блок с иконкой */
    .lz-promo-list-wrap {
        align-items: flex-start; /* Иконка прижата к верху текста */
        margin-bottom: 32px;
    }

    /* Кнопка */
    .lz-promo-btn {
        width: 100%;
        justify-content: center;
    }

    body, html {
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    /* Калькулятор */
    .lz-control-row.slider-row { flex-direction: column; align-items: flex-start; }
    .lz-input-wrap { margin-top: 10px; }
    .lz-table td, .lz-table th { padding: 10px 5px; font-size: 13px; }
    .lz-results-grid { grid-template-columns: 1fr; }
    .benefit-card { grid-column: 1; grid-row: auto; }
    .big-red { font-size: 36px; text-align: left; }
    .lz-card-label.text-right { text-align: left; }

    /* Волна */
    .wave-svg {
        height: 100px;
        transform: translateY(-50%) scaleX(2);
    }
}
/* End */


/* Start:/local/templates/novatek/components/custom/feedback.ajax/.default/style.css?17695847584076*/
/* --- ОСНОВНЫЕ СТИЛИ МОДАЛКИ --- */
.modal-overlay {
    display: none; /* JS переключит это на flex */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-window {
    background: white;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-family: 'Arial', sans-serif;

    /* Добавлено для мобильных: если форма высокая, появится скролл */
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    line-height: 1; /* Чтобы крестик был ровным */
    z-index: 10;
}
.close-modal:hover {
    color: #000;
}

/* Поля ввода */
.form-input-wide {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #C4C4C4;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    margin-top: 5px;
    outline: none; /* Убираем синюю обводку браузера */
}
.form-input-wide:focus {
    border-color: #4061A6; /* Подсветка при вводе */
}
.form-input-wide.error {
    border-color: red;
    background: #fff0f0;
}
.full-width {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
}
.form-btn-submit {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border-radius: 25px;
    background: #4061A6;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}
.form-btn-submit:hover {
    background: #304d8a;
}
.form-btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* --- КАСТОМНЫЙ ЧЕКБОКС --- */

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    position: relative;
}

/* 1. Скрываем стандартный */
.checkbox-group input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* 2. Стилизуем label (контейнер текста и квадрата) */
.checkbox-group label {
    font-size: 14px;
    color: #6F6F6F;
    cursor: pointer;
    line-height: 1.4;
    user-select: none;
    position: relative;
    /* Важно: отступ задаем label, а не span, чтобы вся строка была ровной */
    padding-left: 32px;
    display: inline-block;
}

/* Сбрасываем лишние отступы у span, если они остались в html/php */
.checkbox-group label span {
    padding-left: 0 !important;
    display: inline;
}

/* 3. Рисуем квадрат */
.checkbox-group label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

/* 4. Состояние ВЫБРАН */
.checkbox-group input:checked + label::before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 5L4.5 8.5L11 1' stroke='%23E3000F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    border-color: #D9D9D9;
}

/* 5. Состояние ОШИБКИ */
.checkbox-group input.error + label::before {
    border-color: #E3000F;
    box-shadow: 0 0 0 1px #E3000F;
}

/* Ховер */
.checkbox-group label:hover::before {
    border-color: #B0B0B0;
}
/* End */
/* /switch/style.css?17696705079496 */
/* /local/templates/novatek/components/bitrix/news.detail/switch/style.css?177486962911256 */
/* /local/templates/novatek/components/custom/feedback.ajax/.default/style.css?17695847584076 */
