/* ===== Тёмная тема ZingerLogistic: ручная база =====
   Ниже к этому файлу подклеивается сгенерированная часть (gen_dark2.py).
   Правки вносить СЮДА или в генератор, но не в готовый dark-theme.css. */

/* ---------------------------------------------- переключатель темы ------ */
/* Три состояния: авто (как в системе) · светлая · тёмная.
   Текущее состояние лежит в data-zl-theme на <html>, его ставит
   ранний скрипт в <head> ещё до отрисовки — поэтому мигания нет. */

.zl__theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    padding: 0;
    margin-left: 10px;
    border: 1px solid #d9dde3;
    border-radius: 50%;
    background: #ffffff;
    color: #464a53;
    cursor: pointer;
    vertical-align: middle;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.zl__theme-toggle:hover { border-color: #31d4d3; }
.zl__theme-toggle:focus { outline: none; }
/* Клавиатурный фокус обязан быть виден (WCAG 2.4.7).
   :focus-visible срабатывает только при навигации с клавиатуры. */
.zl__theme-toggle:focus-visible {
    outline: 2px solid #11b4b3;
    outline-offset: 2px;
}
.zl__theme-toggle--mobile { margin: 0 12px 0 0; }
.zl__theme-toggle svg { width: 17px; height: 17px; display: none; }

/* Какая иконка видна в каком состоянии */
html[data-zl-theme="auto"]  .zl__theme-ico-auto,
html[data-zl-theme="light"] .zl__theme-ico-sun,
html[data-zl-theme="dark"]  .zl__theme-ico-moon,
html:not([data-zl-theme])   .zl__theme-ico-auto { display: block; }

/* Мобильная шапка: логотип, кнопка темы и бургер в одну строку.
   Исходная картинка логотипа шире своей колонки (284px в 240px),
   поэтому без ограничения она уезжает под кнопку. */
@media (max-width: 767px) {
    .zl__mobile-on .zl__header-logo img {
        max-width: 100%;
        height: auto;
    }
    .zl__header .zl__theme-toggle { display: none !important; }
}
.zl__mobile-menu-btn { margin-left: 12px; }

/* Кнопка на экране входа: у него своя вёрстка без общей шапки */
.zl__welcome { position: relative; }
.zl__welcome-theme-toggle {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    margin: 0;
}

/* -------------------------------------------------- базовые поверхности - */

html.zl-dark body {
    background-color: #000000;
    color: #b8bcc4;
}

/* Переключатель в тёмной теме */
html.zl-dark .zl__theme-toggle {
    background: #16181c;
    border-color: #3a3d44;
    color: #e5e7eb;
}
html.zl-dark .zl__theme-toggle:hover { border-color: #31d4d3; }

/* Инлайн-SVG в шапке (иконка профиля, выход) */
html.zl-dark svg path[fill="#464A53"] { fill: #c7cbd1; }
html.zl-dark svg path[fill="black"] { fill: #c7cbd1; }

/* Логотип отрисован тёмным по прозрачному фону: на чёрном не виден.
   Инвертируем только его, остальные картинки не трогаем. */
html.zl-dark .zl__header-logo img,
html.zl-dark .zl__welcome-logo-img,
html.zl-dark .zl__footer-logo img { filter: brightness(0) invert(1); }

/* --------------------------------- крупные блоки, которые генератор ---- */
/* ---------------------------------- не покрывает структурно ------------ */

/* Основная контентная панель: полупрозрачная, лежит поверх фона страницы */
html.zl-dark .zl__page-content {
    background: rgba(15, 16, 19, 0.92);
    color: #c7cbd1;
}
html.zl-dark .zl__page-content p,
html.zl-dark .zl__page-content li { color: #c7cbd1; }
html.zl-dark .zl__page-content h1,
html.zl-dark .zl__page-content h2,
html.zl-dark .zl__page-content h3,
html.zl-dark .zl__page-content h4,
html.zl-dark .zl__page-content strong,
html.zl-dark .zl__page-content b { color: #f3f4f6; }
html.zl-dark .zl__page-content a { color: #31d4d3; }

/* Таблицы в контенте (тарифы, страхование): рамки и зебра */
html.zl-dark .zl__page-content table,
html.zl-dark .wp-block-table table { border-color: #26282e; }
/* Цвет текста ячеек НЕ задаём глобально: часть таблиц приносит собственный
   светлый фон из CSS внутри страницы, и светлый текст на нём исчезал бы.
   Фон и текст таких таблиц перекрашивает генератор — им скармливается
   и внутристраничный CSS (content.css). Здесь только рамки. */
html.zl-dark .zl__page-content table td,
html.zl-dark .zl__page-content table th,
html.zl-dark .wp-block-table td,
html.zl-dark .wp-block-table th {
    border-color: #26282e;
}
html.zl-dark .wp-block-table tbody tr:nth-child(even) { background: #101114; }

/* Поля ввода без объявленного фона: белый им даёт сам браузер, в исходном
   CSS его нет, поэтому генератор о нём знать не может. Закрываем вручную.
   Специфичность низкая — именные правила темы ниже по файлу перебьют. */
html.zl-dark input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="submit"]):not([type="button"]),
html.zl-dark select,
html.zl-dark textarea {
    background-color: #16181c;
    color: #e5e7eb;
    border-color: #3a3d44;
}
html.zl-dark input::placeholder,
html.zl-dark textarea::placeholder { color: #8b919b; }
html.zl-dark input:-webkit-autofill {
    -webkit-text-fill-color: #e5e7eb;
    -webkit-box-shadow: 0 0 0 1000px #16181c inset;
}

/* Ссылки без класса наследуют синий Bootstrap — на чёрном он не читается */
html.zl-dark a:not([class]) { color: #31d4d3; }

/* Активная вкладка на экране входа: возвращаем фирменную бирюзу,
   которую перекрыло общее правило .nav-tabs ниже */
html.zl-dark .zl__welcome-nav-tabs .zl__welcome-nav-link.active {
    background: #31d4d3;
    border-color: #31d4d3;
    color: #464a53;
}


/* Блоки на фирменном бирюзовом фоне: текст обязан остаться тёмным.
   Фон объявлен у предка, в селекторе самого текста его нет, поэтому
   генератор такую связь увидеть не может. */
html.zl-dark .zl__home-balance,
html.zl-dark .zl__home-balance .zl__balance-h1,
html.zl-dark .zl__home-balance p { color: #464a53; }

/* Заголовок города в блоке офисов раскрашен инлайном (#414141 прямо
   в разметке) — перебить это можно только важностью. */
html.zl-dark .zl__homeoffice-title[style] { color: #e5e7eb !important; }

/* ------------------------------------------------- Bootstrap 4 --------- */

html.zl-dark .bg-white { background-color: #0f1013 !important; }
html.zl-dark .bg-light { background-color: #16181c !important; }
html.zl-dark .text-dark { color: #f3f4f6 !important; }
html.zl-dark .text-muted { color: #9ca3af !important; }
html.zl-dark .border,
html.zl-dark .border-top,
html.zl-dark .border-bottom,
html.zl-dark .border-left,
html.zl-dark .border-right,
html.zl-dark .border-light { border-color: #26282e !important; }
html.zl-dark .card,
html.zl-dark .modal-content,
html.zl-dark .dropdown-menu,
html.zl-dark .list-group-item,
html.zl-dark .popover,
html.zl-dark .toast {
    background-color: #0f1013;
    color: #e5e7eb;
    border-color: #26282e;
}
html.zl-dark .dropdown-item { color: #e5e7eb; }
html.zl-dark .dropdown-item:hover,
html.zl-dark .dropdown-item:focus { background-color: #16181c; color: #ffffff; }
html.zl-dark .dropdown-divider { border-top-color: #26282e; }
html.zl-dark .form-control,
html.zl-dark .custom-select,
html.zl-dark .custom-file-label {
    background-color: #0f1013;
    border-color: #3a3d44;
    color: #e5e7eb;
}
html.zl-dark .form-control:focus { background-color: #0f1013; color: #e5e7eb; }
html.zl-dark .form-control::placeholder { color: #8b919b; }
html.zl-dark .input-group-text { background-color: #16181c; border-color: #3a3d44; color: #e5e7eb; }
html.zl-dark .table { color: #e5e7eb; }
html.zl-dark .table thead th,
html.zl-dark .table td,
html.zl-dark .table th { border-color: #26282e; }
html.zl-dark .table-striped tbody tr:nth-of-type(odd) { background-color: #101114; }
html.zl-dark .table-hover tbody tr:hover { background-color: #16181c; }
html.zl-dark .btn-light { background-color: #16181c; border-color: #3a3d44; color: #e5e7eb; }
html.zl-dark .btn-outline-dark { border-color: #9ca3af; color: #e5e7eb; }
html.zl-dark .badge-light { background-color: #16181c; color: #e5e7eb; }
html.zl-dark .close { color: #e5e7eb; text-shadow: none; }
html.zl-dark .close:hover { color: #ffffff; }
html.zl-dark hr { border-top-color: #26282e; }
html.zl-dark .pagination .page-link { background-color: #0f1013; border-color: #26282e; color: #31d4d3; }
html.zl-dark .pagination .page-item.disabled .page-link { background-color: #0f1013; border-color: #26282e; color: #8b919b; }
html.zl-dark .page-item.active .page-link { background-color: #31d4d3; border-color: #31d4d3; color: #000000; }
html.zl-dark .modal-header,
html.zl-dark .modal-footer { border-color: #26282e; }
html.zl-dark .jumbotron { background-color: #16181c; }
html.zl-dark .nav-tabs { border-bottom-color: #26282e; }
/* Цвет активной вкладки не задаём: у темы своя активная вкладка на бирюзе
   (экран входа), и одинаковая специфичность делала бы исход случайным. */
html.zl-dark .nav-tabs .nav-link.active {
    background-color: #000000;
    border-color: #26282e #26282e #000000;
}
html.zl-dark .navbar-light .navbar-nav .nav-link { color: #c7cbd1; }
html.zl-dark .alert { color: #e5e7eb; border-color: #3a3d44; }

/* ------------------------------------------------- jQuery UI ----------- */

html.zl-dark .ui-widget-content,
html.zl-dark .ui-datepicker {
    background: #0f1013;
    border-color: #26282e;
    color: #e5e7eb;
}
html.zl-dark .ui-datepicker .ui-datepicker-header { background: #16181c; border-color: #26282e; color: #e5e7eb; }
html.zl-dark .ui-datepicker table { background: #0f1013; }
html.zl-dark .ui-datepicker .ui-state-default { background: #16181c; color: #e5e7eb; border-color: #26282e; }
html.zl-dark .ui-datepicker .ui-state-active { background: #31d4d3; color: #000000; border-color: #31d4d3; }
html.zl-dark .ui-datepicker .ui-state-hover { background: #26282e; color: #ffffff; }
html.zl-dark .ui-datepicker .ui-datepicker-prev,
html.zl-dark .ui-datepicker .ui-datepicker-next { color: #e5e7eb; }

/* ------------------------------------------------- прочее -------------- */

html.zl-dark ::selection { background: rgba(49, 212, 211, 0.4); color: #ffffff; }

/* Сторонние виджеты рисуют свою светлую подложку поверх страницы.
   Полностью перекрасить их нельзя, но вспышку белым приглушаем. */
html.zl-dark .b24-widget-button-popup,
html.zl-dark .b24-crm-button-popup { background-color: #0f1013 !important; }
/* Внутри виджета свои тёмные цвета текста — на затемнённой подложке
   они сливались бы с фоном, поэтому перекрашиваем и потомков. */
html.zl-dark .b24-widget-button-popup *,
html.zl-dark .b24-crm-button-popup * { color: #e5e7eb !important; }

/* Печать: документы из кабинета печатаются на белой бумаге независимо
   от выбранной на экране темы — иначе уходит чёрная заливка. */
@media print {
    html.zl-dark,
    html.zl-dark body {
        background: #ffffff !important;
        color: #000000 !important;
    }
    html.zl-dark * {
        background-color: transparent !important;
        color: #000000 !important;
        border-color: #999999 !important;
    }
    html.zl-dark .zl__header-logo img,
    html.zl-dark .zl__welcome-logo-img,
    html.zl-dark .zl__footer-logo img { filter: none !important; }
    .zl__theme-toggle { display: none !important; }
}

/* ===== Ниже — сгенерированная часть (gen_dark2.py). Руками не править:
   правки вносятся в dark-base.css или в сам генератор. ===== */

/* --- источник: style.css --- */
html.zl-dark .zl__h1{color:#e5e7eb}html.zl-dark .zl__btn-turquoise.zl__btn-load:hover,html.zl-dark .zl__btn-turquoise{background:#31D4D3;color:#464a53}html.zl-dark .zl__btn-turquoise:hover{background:#11B4B3;color:#33363d}html.zl-dark .zl__btn-mauve.zl__btn-load:hover,html.zl-dark .zl__btn-mauve{background:#AD85A9;color:#22242a}html.zl-dark .zl__btn-mauve:hover{background:#945D8E;color:#000000}html.zl-dark .zl__btn-mauve-clear{background:rgba(15,16,19,0)}html.zl-dark .zl__btn-mauve-clear:hover{background:#945D8E;color:#000000}html.zl-dark .zl__btn-turquoise-clear{background:rgba(15,16,19,0)}html.zl-dark .zl__btn-turquoise-clear:hover{background:#31D4D3;color:#464a53}html.zl-dark .zl__scrollbar{scrollbar-color:#AD85A9 #26282e}html.zl-dark .zl__scrollbar::-webkit-scrollbar-thumb{background:#AD85A9;color:#22242a}html.zl-dark .zl__scrollbar::-webkit-scrollbar-thumb:hover{background:#AD85A9;color:#22242a}html.zl-dark .zl__scrollbar::-webkit-scrollbar-track{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__input-range{border-color:#26282e}html.zl-dark .zl__input-range input[type="text"]{background:rgba(27,30,36,0)}html.zl-dark .zl__input-range input[type="range"]{background:rgba(27,30,36,0)}html.zl-dark .zl__input-switch{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__input-switch-text{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__input-switch-minus,html.zl-dark .zl__input-switch-plus{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__checkbox-icon{background-color:#0f1013;color:#c7cbd1}html.zl-dark .zl__radio-icon{border-color:#26282e}html.zl-dark .zl__radio-input:checked+.zl__radio-icon{border-color:#26282e}html.zl-dark input[type=range]::-webkit-slider-runnable-track{background:#AD85A9;color:#22242a}html.zl-dark input[type=range]::-webkit-slider-thumb{background:#0f1013;color:#c7cbd1}html.zl-dark input[type=range]:focus::-webkit-slider-runnable-track{background:#AD85A9;color:#22242a}html.zl-dark input[type=range]::-moz-range-track{background:#AD85A9;color:#22242a}html.zl-dark input[type=range]::-moz-range-thumb{background:#0f1013;color:#c7cbd1}html.zl-dark input[type=range]::-ms-track{background:transparent}html.zl-dark input[type=range]::-ms-fill-lower{background:#AD85A9;color:#22242a}html.zl-dark input[type=range]::-ms-fill-upper{background:#AD85A9;color:#22242a}html.zl-dark input[type=range]::-ms-thumb{background:#0f1013;color:#c7cbd1}html.zl-dark input[type=range]:focus::-ms-fill-lower{background:#AD85A9;color:#22242a}html.zl-dark input[type=range]:focus::-ms-fill-upper{background:#AD85A9;color:#22242a}html.zl-dark .zl__header{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__local-btn{background:#0f1013;color:#e5e7eb}html.zl-dark .zl__local-btn:hover{color:#e5e7eb}html.zl-dark .zl__local-menu{background:#0f1013;color:#c7cbd1}html.zl-dark li.zl__local-item:hover{background:#0f2221;color:#c7cbd1}html.zl-dark a.zl__soc-btn{background:#31D4D3;color:#464a53}html.zl-dark a.zl__soc-btn:hover{background:#11B4B3;color:#33363d}html.zl-dark a.zl__header-login{color:#e5e7eb}html.zl-dark a.zl__header-login:hover{color:#e5e7eb}html.zl-dark .zl__header-display_name{color:#e5e7eb}html.zl-dark .zl__menu{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl__track-submit{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl__track-input{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl__menu-ul ul.sub-menu .zl__manu-img{background:rgba(15,34,34,0.41)}html.zl-dark .zl__menu-ul ul.sub-menu{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__mobile-menu-ul a,html.zl-dark .zl__menu-ul ul.sub-menu a{color:#f3f4f6}html.zl-dark .zl__menu-ul ul.sub-menu li.current_page_item a,html.zl-dark .zl__mobile-menu-ul .current_page_item a,html.zl-dark .zl__mobile-menu-ul a:hover,html.zl-dark .zl__menu-ul ul.sub-menu a:hover{background:#0f2222;color:#c7cbd1}html.zl-dark .zl__menu-call{background:#31D4D3;color:#464a53}html.zl-dark .breadcrumb{background-color:#0f1013;color:#9ca3af}html.zl-dark .breadcrumb a{color:#9ca3af}html.zl-dark .zl__page-content{background:rgba(15,16,19,0.76)}html.zl-dark h1{color:#e5e7eb}html.zl-dark .zl__page-content{background:rgba(15,16,19,0.76)}html.zl-dark h2{color:#e5e7eb}html.zl-dark h4{color:#e5e7eb}html.zl-dark .zl__input-label{color:#e5e7eb}html.zl-dark .zl__input-text,html.zl-dark .zl__input-number{background:#0f1013;color:#e5e7eb;border-color:#26282e}html.zl-dark .zl__input-contractor[readonly]{background:#16181c;color:#c7cbd1;border-color:#26282e}html.zl-dark .zl__input-textarea{background:#0f1013;color:#e5e7eb;border-color:#26282e}html.zl-dark .zl__select-text{background:#0f1013;color:#e5e7eb;border-color:#26282e}html.zl-dark .zl__input-file{background:#0f1013;color:#e5e7eb;border-color:#26282e}html.zl-dark .zl__dropdown-toggle{background:#0f1013;color:#e5e7eb;border-color:#26282e}html.zl-dark .zl__dropdown-menu{background:#0f1013;color:#c7cbd1;border-color:rgba(38,40,46,0)}html.zl-dark ul.zl__dropdown-ul{background:#0f1013;color:#c7cbd1}html.zl-dark li.zl__dropdown-li:hover{background:#0f2221;color:#f3f4f6}html.zl-dark .zl__dropdown-search{color:#e5e7eb}html.zl-dark ul.select-suggestions{background:#0f1013;background:#0f1013;color:#c7cbd1}html.zl-dark .select-suggestions>li.selected,html.zl-dark .select-suggestions>li:hover{background:#0f2221;color:#f3f4f6}html.zl-dark .zl__direction-list{background-color:#0f1013;background:#0f1013;color:#f3f4f6;border-color:rgba(38,40,46,0)}html.zl-dark .zl__direction-ul{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__direction-li.selected,html.zl-dark .zl__direction-li:hover{background:#0f2221;color:#f3f4f6}html.zl-dark .ui-state-active,html.zl-dark .ui-widget-content .ui-state-active,html.zl-dark .ui-widget-header .ui-state-active,html.zl-dark a.ui-button:active,html.zl-dark .ui-button:active,html.zl-dark .ui-button.ui-state-active:hover{background:#31D4D3;color:#464A53}html.zl-dark .ui-state-default,html.zl-dark .ui-widget-content .ui-state-default,html.zl-dark .ui-widget-header .ui-state-default,html.zl-dark .ui-button,html.zl-dark .ui-button.ui-state-disabled:hover,html.zl-dark .ui-button.ui-state-disabled:active{border-color:#26282e}html.zl-dark .zl__calendar:disabled,html.zl-dark #shipment_time:disabled{background:#0f1013;color:#c7cbd1;border-color:#26282e}html.zl-dark .zl__checkbox-block .zl__checkbox-label{color:#f3f4f6}html.zl-dark .zl__radio-block .zl__radio-label{color:#f3f4f6}html.zl-dark .zl__submenu-item{background:#0f1013;color:#c7cbd1;border-bottom-color:#26282e}html.zl-dark .zl__submenu-title{color:#e5e7eb}html.zl-dark .zl__submenu-subtitle{color:#e5e7eb}html.zl-dark .zl__order-preview-label{color:#c7cbd1}html.zl-dark .zl__order-preview-parem{color:#c7cbd1}html.zl-dark .zl__order-input-range{background:#0f1013;color:#c7cbd1;border-color:#26282e}html.zl-dark .zl__order-input-range input[type="text"]{color:#e5e7eb}html.zl-dark .zl__order-direction{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__order-direction-icon>span{background:#AD85A9;color:#FFFFFF}html.zl-dark .zl__direction-prompt-info span{background:#AD85A9;color:#FFFFFF}html.zl-dark .zl__order-pickup-label{color:#c7cbd1}html.zl-dark .zl__order-pickup-select-input>input{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__modal-notice-result-and{color:#f3f4f6}html.zl-dark .zl__payment-help{background:#0f1013;color:#e5e7eb}html.zl-dark .zl__payment-system{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__payment-system>span{background:rgba(173,133,169,0.79);color:#FFFBFB}html.zl-dark .zl__cargo_tracking-info{border-color:#26282e}html.zl-dark .zl_cargo_tracking-error{background:#112222;color:#c7cbd1}html.zl-dark .zl__teble-cargo_tracking tr:nth-child(1){background:#0f1013;color:#e5e7eb;border-color:#26282e}html.zl-dark .zl__teble-cargo_tracking td{border-color:#26282e}html.zl-dark .zl__kontakty-info{border-color:#26282e}html.zl-dark .zl__kontakty-branch-name{background:rgba(49,212,211,0.57);color:#464A53}html.zl-dark .zl__kontakty-phone{color:#e5e7eb}html.zl-dark .zl__kontakty-open{color:#f3f4f6}html.zl-dark .zl__kontakty-open-title{color:#f3f4f6}html.zl-dark .zl__storage-name{color:#f3f4f6}html.zl-dark .zl__storage-address{color:#f3f4f6}html.zl-dark .zl__kontakty-mail{color:#e5e7eb}html.zl-dark a.zl__storage-url{color:#e5e7eb}html.zl-dark .zl__personalarea-block{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__personalarea-subtitle{color:#e5e7eb}html.zl-dark .zl__personalarea-cargo-text{color:#e5e7eb}html.zl-dark .zl__personalarea-cargo-submit{background-color:#AD85A9;color:#22242a}html.zl-dark .zl__personalarea-cargo-input{color:#9ca3af}html.zl-dark .zl__smsnotif-item{color:#c7cbd1;border-bottom-color:#26282e}html.zl-dark .zl__smsnotif-item:hover{background-color:#0f1013;color:#c7cbd1}html.zl-dark .zl__smsnotif-num>span,html.zl-dark .zl__myorg-num>span{background:#AD85A9;color:#FFFFFF}html.zl-dark .zl__myorg-title{color:#c7cbd1}html.zl-dark .zl__myorg-text{color:#e5e7eb}html.zl-dark .zl__mycontractor-title-list{background:rgba(49,212,211,0.1);color:#464a53}html.zl-dark .zl__mycontractor-item{color:#e5e7eb;border-bottom-color:#26282e}html.zl-dark .zl__contractor___edit_contractor{color:#e5e7eb}html.zl-dark .zl__news-item{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__news-title{color:#f3f4f6}html.zl-dark .zl__news-subtitle{color:#9ca3af}html.zl-dark hr.zl__news-hr{border-top-color:#26282e}html.zl-dark .zl__homenews-date{color:#e5e7eb}html.zl-dark .zl__news-paginate span,html.zl-dark .zl__news-paginate a{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__news-paginate a:hover,html.zl-dark span.page-numbers.current{background:#31D4D3;color:#464a53}html.zl-dark .zl__newscat{border-color:#26282e}html.zl-dark .zl__newscat-title{background:rgba(49,212,211,0.57);color:#464A53}html.zl-dark a.zl__newscat-item{color:#e5e7eb}html.zl-dark .zl__welcometile.turquoise{background:#31D4D3;color:#464a53}html.zl-dark .zl__welcometile.gray{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl__welcome-slider .carousel-indicators li{background-color:rgba(18,31,31,0)}html.zl-dark .zl__welcome-slider .carousel-indicators .active{background-color:#31D4D3;color:#464a53}html.zl-dark .zl__profile-notis{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__profile-notis-text{color:#e5e7eb}html.zl-dark .zl__profile-notis:before{border-left-color:#26282e}html.zl-dark .zl__teble-payment table{color:#e5e7eb}html.zl-dark .zl__teble-insurance table{color:#e5e7eb;border-color:#26282e}html.zl-dark .zl__teble-insurance td{border-color:#26282e}html.zl-dark .zl__teble-insurance tr{border-color:#26282e}html.zl-dark .zl__teble-insurance tr:nth-child(1){background:#aeeceb;color:#494343}html.zl-dark .zl__teble-insurance tr:nth-child(2){color:#e5e7eb}html.zl-dark .zl__teble-insurance td:nth-child(1){background:#122021;color:#c7cbd1;border-right-color:#26282e}html.zl-dark .zl__teble-tariffs table{color:#e5e7eb;border-color:#26282e}html.zl-dark .zl__teble-tariffs tr{border-color:#26282e}html.zl-dark .zl__teble-tariffs tr:nth-child(1){background:#aeeceb;color:#494343}html.zl-dark .zl__teble-tariffs tr:nth-child(2){color:#e5e7eb}html.zl-dark .zl__teble-tariffs td{border-color:#26282e}html.zl-dark .zl__teble-tariffs td:nth-child(1){background:#122021;color:#f3f4f6;border-right-color:#26282e;border-bottom-color:#26282e}html.zl-dark .zl__storage-calc{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl__storagecalc-input{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__storagecalc-result{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__storagecalc-sum-title{color:#c7cbd1}html.zl-dark .zl__storagecalc-sum-price{color:#e5e7eb}html.zl-dark .zl__storagecalc-sum-info{color:#e5e7eb}html.zl-dark .zl__storage-priceblock{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__storage-priceblock-title{color:#e5e7eb}html.zl-dark .zl__storage-priceblock-price{background:#102222;color:#e5e7eb}html.zl-dark .zl__storage-priceblock-info{color:#e5e7eb}html.zl-dark .zl__storage-warehouse{border-color:#26282e}html.zl-dark .zl__storage-warehouse-title{background:rgba(49,212,211,0.57);color:#464A53}html.zl-dark .zl__storage-warehouse-list{color:#e5e7eb}html.zl-dark .zl__storage-options{background-color:#0f1013;color:#c7cbd1}html.zl-dark .zl__storage-title{color:#e5e7eb}html.zl-dark .zl__storage-text{color:#c7cbd1}html.zl-dark .zl__storage-btn{color:#e5e7eb}html.zl-dark .zl__storage-btn:hover{background:#31D4D3;color:#464a53}html.zl-dark .zl__order-message textarea{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__order-message textarea{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__table-vzaimoraschety-title-title{background:rgba(49,212,211,0.1);color:#000000}html.zl-dark .zl__table-vzaimoraschety-body-title{background:rgba(22,24,28,0.3)}html.zl-dark tr.zl__table-vzaimoraschety-body-item{border-bottom-color:#26282e}html.zl-dark .zl__table-vzaimoraschety-body-title td{color:#f3f4f6}html.zl-dark .zl__table-vzaimoraschety-body-item td{color:#c7cbd1}html.zl-dark tr.zl__myorder-table-title{background:rgba(49,212,211,0.1);color:#000000}html.zl-dark tr.zl__myorder-item{border-bottom-color:#26282e}html.zl-dark .zl__order-cost{background:rgba(49,212,211,0.2);color:#464a53}html.zl-dark .order_cost-title{color:#e5e7eb}html.zl-dark .zl__order-cost-label{color:#e5e7eb}html.zl-dark .zl__order-cost-parem-line{color:#e5e7eb}html.zl-dark .zl__order-cost-parem-text{color:#e5e7eb}html.zl-dark .zl__order-cost-price-line{color:#e5e7eb}html.zl-dark .zl__order-cost-price-info{color:#9ca3af}html.zl-dark .zl__order-cost-price-delivery{color:rgba(229,231,235,0.63)}html.zl-dark .zl__order-cost-price-info{color:#9ca3af}html.zl-dark .xl__404-title{color:#e5e7eb}html.zl-dark .xl__404-text{color:#c7cbd1}html.zl-dark .zl__footer{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl__footercont-address{color:#9ca3af}html.zl-dark .zl__footercontact-time{color:#9ca3af}html.zl-dark .zl__footermenu-menu a{color:#9ca3af}html.zl-dark .zl_copy{color:#c7cbd1}html.zl-dark .zl__onas-p{color:#9ca3af}html.zl-dark .zl__onas-title{color:#e5e7eb}html.zl-dark .zl__onas-turquoise{background:#31D4D3;color:#464a53}html.zl-dark .zl__welcome-shortcode-title{color:#e5e7eb}html.zl-dark .zl__welcome-nav-tabs .zl__welcome-nav-link{color:#e5e7eb}html.zl-dark .zl__welcome-nav-tabs .zl__welcome-nav-link.active{background:#31D4D3;color:#464a53}html.zl-dark .zl__welcome-input{border-color:#26282e}html.zl-dark .zl__welcome-shortcode-info{color:#c7cbd1}html.zl-dark a.zl__welcome-forgot-a{color:#e5e7eb}html.zl-dark .zl__modal-content{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__modal-title{color:#f3f4f6}html.zl-dark .zl__modal-p{color:#9ca3af}html.zl-dark .zl__modal-input{color:#9ca3af;border-bottom-color:#26282e}html.zl-dark .zl__modal-consent .zl__modal-label{color:#c7cbd1}html.zl-dark .zl__modal-notice-result-title{color:#f3f4f6}html.zl-dark .zl__modal-notice-result-text{color:#c7cbd1}html.zl-dark .verification_return_btn{color:#e5e7eb}@media (max-width:768px){html.zl-dark .zl__header-local{background:#31D4D3;color:#464a53}html.zl-dark .zl__local-btn{background:#31D4D3;color:#464A53}}html.zl-dark .cookie-banner-bottom{background:#0f1013;color:#9ca3af;border-color:#26282e}html.zl-dark .cookie-content span{color:#e5e7eb}html.zl-dark .cookie-btn{background:#31D4D3;color:#464a53}html.zl-dark .cookie-btn:hover{background:#11B4B3;color:#33363d}html.zl-dark .cookie-btn.mauve{background:#AD85A9;color:#22242a}html.zl-dark .cookie-btn.mauve:hover{background:#945D8E;color:#000000}html.zl-dark .zl-chel-tariffs{color:#f3f4f6}html.zl-dark .zl-chel-title{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl-chel-subtitle{color:#e5e7eb}html.zl-dark .zl-chel-table-block{background:#0f1013;color:#c7cbd1}html.zl-dark .zl-chel-table thead th{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl-chel-table tbody td{background:#122122;color:#c7cbd1}html.zl-dark .zl-chel-table tbody td.limit{background:#0f1013;color:#f3f4f6}html.zl-dark .zl-chel-table tbody td.price{background:#122222;color:#f3f4f6}html.zl-dark .zl-chel-table tbody td.area{background:#112221;color:#f3f4f6}html.zl-dark .zl-chel-note{background:#112221;color:#f3f4f6}@media (max-width:767px){html.zl-dark .zl-chel-mobile-card{background:#0f1013;color:#c7cbd1}html.zl-dark .zl-chel-mobile-title{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl-chel-mobile-item:nth-child(4),html.zl-dark .zl-chel-mobile-item:nth-child(5),html.zl-dark .zl-chel-mobile-item:nth-child(6){background:#122222;color:#c7cbd1}html.zl-dark .zl-chel-mobile-item:last-child{background:#112221;color:#c7cbd1}html.zl-dark .zl-chel-mobile-item span{color:#e5e7eb}html.zl-dark .zl-chel-mobile-item strong{color:#f3f4f6}}html.zl-dark .zl-ekb-tariffs{color:#f3f4f6}html.zl-dark .zl-ekb-head{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl-ekb-table-block{background:#0f1013;color:#c7cbd1}html.zl-dark .zl-ekb-table thead th{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl-ekb-table thead th:nth-child(1),html.zl-dark .zl-ekb-table thead th:nth-child(2){background:#31d4d3;color:#0f172a}html.zl-dark .zl-ekb-table tbody td{background:#122122;color:#c7cbd1}html.zl-dark .zl-ekb-table tbody td:nth-child(1),html.zl-dark .zl-ekb-table tbody td:nth-child(2){background:#122222;color:#f3f4f6}html.zl-dark .zl-ekb-note{background:#112221;color:#f3f4f6}html.zl-dark .zl-ekb-mobile-card{background:#0f1013;color:#c7cbd1}html.zl-dark .zl-ekb-mobile-title{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl-ekb-mobile-item span{color:#e5e7eb}html.zl-dark .zl-ekb-mobile-item strong{color:#f3f4f6}html.zl-dark .zl-ekb-mobile-item.zl-ekb-accent{background:#122222;color:#c7cbd1}html.zl-dark .zl-ekb-mobile-item.zl-ekb-accent span{color:#f3f4f6}html.zl-dark .perm-tariffs{color:#f3f4f6}html.zl-dark .perm-table-block{background:#0f1013;color:#c7cbd1}html.zl-dark .perm-table-title{background:#1b1e24;color:#c7cbd1}html.zl-dark .perm-table-wrap{background:#0f1013;color:#c7cbd1}html.zl-dark .perm-table thead th{background:#1b1e24;color:#c7cbd1}html.zl-dark .perm-table thead th:nth-child(6),html.zl-dark .perm-table thead th:nth-child(7),html.zl-dark .perm-table thead th:nth-child(8){background:#31d4d3;color:#0f172a}html.zl-dark .perm-table tbody td{background:#122122;color:#c7cbd1}html.zl-dark .perm-table tbody td.main-col{background:#0f1013;color:#f3f4f6}html.zl-dark .perm-table tbody td.price-col{background:#112222;color:#f3f4f6}html.zl-dark .perm-note{background:#112221;color:#f3f4f6}@media (max-width:767px){html.zl-dark .perm-mobile{background:#122122;color:#c7cbd1}html.zl-dark .perm-mobile-card{background:#0f1013;color:#c7cbd1}html.zl-dark .perm-mobile-title{background:#1b1e24;color:#c7cbd1}html.zl-dark .perm-mobile-item:nth-child(5),html.zl-dark .perm-mobile-item:nth-child(6),html.zl-dark .perm-mobile-item:nth-child(7){background:#112222;color:#c7cbd1}html.zl-dark .perm-mobile-item span{color:#e5e7eb}html.zl-dark .perm-mobile-item strong{color:#f3f4f6}html.zl-dark .perm-table-block{background:transparent}}html.zl-dark .zl-ural-tariffs{color:#f3f4f6}html.zl-dark .zl-ural-table-block{background:#0f1013;color:#c7cbd1}html.zl-dark .zl-ural-table-title{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl-ural-table thead th{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl-ural-table .route-col{background:#0f1013;color:#f3f4f6}html.zl-dark .zl-ural-table .min-col,html.zl-dark .zl-ural-table .min-cell{background:#31d4d3;color:#0f172a}html.zl-dark .zl-ural-table tbody td{background:#122122;color:#c7cbd1}html.zl-dark .zl-ural-table tbody td.rate{background:#122222;color:#c7cbd1}html.zl-dark .zl-ural-table-note{background:#112221;color:#f3f4f6}html.zl-dark .zl-ural-mobile-section{background:#0f1013;color:#c7cbd1}html.zl-dark .zl-ural-mobile-section-title{color:#e5e7eb}html.zl-dark .zl-ural-mobile-card{background:#0f1013;color:#c7cbd1}html.zl-dark .zl-ural-mobile-title{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl-ural-mobile-item span:first-child{color:#e5e7eb}html.zl-dark .zl-ural-mobile-item span:last-child{color:#f3f4f6}html.zl-dark .zl-ural-mobile-item.min{background:#112221;color:#c7cbd1}html.zl-dark .zl-ural-mobile-caption{background:#31d4d3;color:#0f172a}html.zl-dark .zl-kuban-tariffs{color:#f3f4f6}html.zl-dark .zl-kuban-table-block{background:#0f1013;color:#c7cbd1}html.zl-dark .zl-kuban-head{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl-kuban-table thead th{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl-kuban-table thead th:nth-child(1),html.zl-dark .zl-kuban-table thead th:nth-child(2){background:#31d4d3;color:#0f172a}html.zl-dark .zl-kuban-table tbody td{background:#122122;color:#c7cbd1}html.zl-dark .zl-kuban-table tbody td.route-cell{background:#122222;color:#f3f4f6}html.zl-dark .zl-kuban-table tbody td.rate-cell{color:#f3f4f6}html.zl-dark .zl-kuban-note{background:#112221;color:#f3f4f6}html.zl-dark .zl-kuban-mobile-section{background:#0f1013;color:#c7cbd1}html.zl-dark .zl-kuban-mobile-section-title{color:#e5e7eb}html.zl-dark .zl-kuban-mobile-card{background:#0f1013;color:#c7cbd1}html.zl-dark .zl-kuban-mobile-title{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl-kuban-mobile-caption{background:#31d4d3;color:#0f172a}html.zl-dark .zl-kuban-mobile-item span{color:#e5e7eb}html.zl-dark .zl-kuban-mobile-item strong{color:#f3f4f6}html.zl-dark .zl-rostov-delivery{color:#f3f4f6}html.zl-dark .zl-rostov-table-block{background:#0f1013;color:#c7cbd1}html.zl-dark .zl-rostov-head{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl-rostov-table thead th{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl-rostov-table thead th:first-child{background:#31d4d3;color:#0f172a}html.zl-dark .zl-rostov-table tbody td{background:#122122;color:#c7cbd1}html.zl-dark .zl-rostov-table tbody td.row-label{background:#122222;color:#f3f4f6}html.zl-dark .zl-rostov-table tbody td.metric-cell{background:#122122;color:#f3f4f6}html.zl-dark .zl-rostov-table tbody td.price-cell{background:#112222;color:#f3f4f6}html.zl-dark .zl-rostov-note,html.zl-dark .zl-rostov-mobile-note{background:#112221;color:#f3f4f6}html.zl-dark .zl-rostov-mobile-section{background:#0f1013;color:#c7cbd1}html.zl-dark .zl-rostov-mobile-section-title{color:#e5e7eb}html.zl-dark .zl-rostov-mobile-card{background:#0f1013;color:#c7cbd1}html.zl-dark .zl-rostov-mobile-title{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl-rostov-mobile-caption{background:#31d4d3;color:#0f172a}html.zl-dark .zl-rostov-mobile-item span{color:#e5e7eb}html.zl-dark .zl-rostov-mobile-item strong{color:#f3f4f6}html.zl-dark .zl-krasnodar-delivery{color:#f3f4f6}html.zl-dark .zl-krasnodar-table-block{background:#0f1013;color:#c7cbd1}html.zl-dark .zl-krasnodar-head{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl-krasnodar-table thead th{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl-krasnodar-table thead th:first-child{background:#31d4d3;color:#0f172a}html.zl-dark .zl-krasnodar-table tbody td{background:#122122;color:#c7cbd1}html.zl-dark .zl-krasnodar-table tbody td.row-label{background:#122222;color:#f3f4f6}html.zl-dark .zl-krasnodar-table tbody td.metric-cell{background:#122122;color:#f3f4f6}html.zl-dark .zl-krasnodar-table tbody td.price-cell{background:#112222;color:#f3f4f6}html.zl-dark .zl-krasnodar-table tbody td.supply-row{background:#112221;color:#c7cbd1}html.zl-dark .zl-krasnodar-note,html.zl-dark .zl-krasnodar-mobile-note{background:#112221;color:#f3f4f6}html.zl-dark .zl-krasnodar-mobile-section{background:#0f1013;color:#c7cbd1}html.zl-dark .zl-krasnodar-mobile-section-title{color:#e5e7eb}html.zl-dark .zl-krasnodar-mobile-card{background:#0f1013;color:#c7cbd1}html.zl-dark .zl-krasnodar-mobile-title{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl-krasnodar-mobile-caption{background:#31d4d3;color:#0f172a}html.zl-dark .zl-krasnodar-mobile-item span{color:#e5e7eb}html.zl-dark .zl-krasnodar-mobile-item strong{color:#f3f4f6}html.zl-dark .zl__homecalc-topline-routes .zl__homecalc-route-btn-turquoise{background:#31D4D3;color:#FFFFFF}html.zl-dark .zl__homecalc-topline-routes .zl__homecalc-route-btn-mauve{background:#AD85A9;color:#FFFFFF}

/* --- источник: home.css --- */
html.zl-dark .zl__homecalc{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl__homecalc-select{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__input-homecalc{background-color:#0f1013;color:#c7cbd1}html.zl-dark .zl__homecalc-сargo-input{border-color:#26282e}html.zl-dark .zl__homecalc-сargo-input-text{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl__homecalc-сargo-input-range{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl__homecalc-result{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__homecalc-sum-num,html.zl-dark .zl__homecalc-date-num{color:#f3f4f6}html.zl-dark hr.zl__homecalc-hr{border-top-color:#26282e}html.zl-dark .zl__homecalc-submit{background:#AD85A9;color:#FFFFFF}html.zl-dark .zl__homecalc-submit:hover{background:#945D8E;color:#000000}html.zl-dark #zl__homecalc-extra-info{border-top-color:#26282e}html.zl-dark .zl__rightontime-title{color:#e5e7eb}html.zl-dark .zl__rightontime-text{color:#9ca3af}html.zl-dark .zl__home-balance{background:#31D4D3;color:#464a53}html.zl-dark .zl__balance-h1{color:#e5e7eb}html.zl-dark .zl__homecard.turquoise{color:#e5e7eb}html.zl-dark .zl__homecard.mauve{background:#0f1013;color:#e5e7eb}html.zl-dark .zl__home-delivery{background:#000000}html.zl-dark a.zl__homehelp-a{color:#e5e7eb}html.zl-dark a.zl__homehelp-item{background:#0f1013;color:#c7cbd1}html.zl-dark a.zl__homehelp-item.white{color:#e5e7eb}html.zl-dark a.zl__homehelp-item.white .zl__homehelp-subtitle{color:#c7cbd1}html.zl-dark a.zl__homehelp-item.turquoise{background:#31D4D3;color:#414141}html.zl-dark a.zl__homehelp-item.gray{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl__home-showyou{background:#111111}html.zl-dark .zl__showyou-sub{color:#c7cbd1}html.zl-dark .zl__homeoffice-line.gray{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl__homeoffice-line.turquoise{background:#31D4D3;color:#464a53}html.zl-dark .zl__homeoffice-subtitle,html.zl-dark .zl__homeoffice-street{color:#f3f4f6}html.zl-dark .zl__homeoffice-street{color:#c7cbd1}html.zl-dark .zl__homeoffice-mobile-line.gray{background:#1b1e24;color:#c7cbd1}html.zl-dark .zl__homeoffice-mobile-line.turquoise{background:#31D4D3;color:#464a53}html.zl-dark .zl__homeoffice-open{color:#c7cbd1}html.zl-dark .zl__homeoffice-open-title{color:#f3f4f6}html.zl-dark .zl__home-news{background:#0f1013;color:#c7cbd1}html.zl-dark a.zl__homenews-a{color:#e5e7eb}html.zl-dark .zl__homenews-item{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__homenews-title{color:#f3f4f6}html.zl-dark .zl__homenews-subtitle{color:#9ca3af}html.zl-dark .zl__homenews-hr{border-top-color:#26282e}html.zl-dark .zl__homenews-date{color:#e5e7eb}html.zl-dark a.zl__homenews-url:hover{color:#e5e7eb}html.zl-dark .zl__homenews-background{background:#1b1e24;color:#c7cbd1}@media (max-width:992px){html.zl-dark .zl__home-calc{background-color:#1b1e24;color:#c7cbd1}html.zl-dark hr.zl__homecalc-hr{border-left-color:#26282e}}html.zl-dark .zl__homecalc-btn-left:hover{background:#49acab;color:#22242a}html.zl-dark .zl__homecalc-btn-right:hover{background:#945d8e;color:#000000}html.zl-dark .zl__homecalc-btn-left{background:#31d4d3;color:#464a53}html.zl-dark .zl__homecalc-btn-right{background:#AD85A9;color:#22242a}

/* --- источник: block.css --- */
html.zl-dark .block__insurance{background:#0f1013;color:#c7cbd1}html.zl-dark .block__insurance-otdo{color:#e5e7eb}html.zl-dark .block__insurance-circle{background:#102222;color:#c7cbd1}html.zl-dark .block__insurance-sum{color:#e5e7eb}html.zl-dark .block__insurance-rub{color:#e5e7eb}html.zl-dark .block__insurance-small{color:#e5e7eb}html.zl-dark .block__submenubtn{background:#0f1013;color:#c7cbd1;border-bottom-color:#26282e}html.zl-dark .block__submenubtn-title{color:#e5e7eb}html.zl-dark .block__submenubtn-subtitle{color:#e5e7eb}html.zl-dark .block__packaging{background:#0f1013;color:#c7cbd1}html.zl-dark .block__packaging-title{color:#e5e7eb}html.zl-dark .block__packaging-description{color:#c7cbd1}html.zl-dark .block__wrapper-grey{background:#0f1013;color:#c7cbd1}html.zl-dark a.block__uslugi{background:#0f1013;color:#c7cbd1}html.zl-dark .block__uslugi.white{color:#e5e7eb}html.zl-dark .block__uslugi.white .block__uslugi-subtitle{color:#c7cbd1}html.zl-dark .block__uslugi.turquoise{background:#31D4D3;color:#414141}html.zl-dark .block__uslugi.gray{background:#1b1e24;color:#c7cbd1}html.zl-dark .block__tariffs{background:#0f1013;color:#c7cbd1}html.zl-dark .block__tariffs-weight{color:#e5e7eb}html.zl-dark .block__tariffs-price{background:#102222;color:#e5e7eb}html.zl-dark .block__documents{border-color:#26282e}html.zl-dark .block__documents-title{background:rgba(49,212,211,0.56);color:#464A53}html.zl-dark a.block__documents-a{color:#e5e7eb}html.zl-dark .block__what-offer-item-num{background:#AD85A9;color:#FFFFFF}html.zl-dark .block__what-offer-item-title{color:#f3f4f6}html.zl-dark .block__cost-fbs-item{background:#0f1013;color:#c7cbd1}html.zl-dark .block__cost-fbs-block.gray{background:#0f1013;color:#c7cbd1}html.zl-dark .block__cost-fbs-label{color:#f3f4f6}html.zl-dark .block__cost-fbs-text{color:#f3f4f6}html.zl-dark .block__cost-fbs-info-label{color:#9ca3af}html.zl-dark .block__conditions-warehouse-item{background:#0f1013;color:#c7cbd1}html.zl-dark .block__conditions-warehouse-title{color:#e5e7eb}html.zl-dark .block__conditions-warehouse-list.mauve li:before{background:#AD85A9;color:#22242a}html.zl-dark .block__conditions-warehouse-list.turquoise li:before{background:#31D4D3;color:#464a53}html.zl-dark .block__conditions-warehouse-li{color:#c7cbd1}html.zl-dark .block__move-line.mauve{background:#AD85A9;color:#22242a}html.zl-dark .block__wrapper-widthfull-content{background:#31D4D3;color:#464a53}html.zl-dark .block__move-menu.tpl1,html.zl-dark .block__move-menu.tpl3{background-color:#0f1013;color:#c7cbd1}html.zl-dark .block__move-menu.tpl2{background-color:#0f1013;color:#c7cbd1}html.zl-dark .block__move-menu.tpl2 .block__move-menu-title{color:#e5e7eb}html.zl-dark .block__move-menu.tpl2 .block__move-menu-subtitle{color:#e5e7eb}html.zl-dark .block__move-menu.tpl1 .block__move-menu-footer{background:#0f1013;color:#c7cbd1}html.zl-dark .block__move-menu-footer{color:#f3f4f6}html.zl-dark .block__move-menu.tpl1 .block__move-menu-footer-btn{color:#f3f4f6}html.zl-dark .block__move-menu.tpl2 .block__move-menu-footer-btn{color:#f3f4f6}html.zl-dark .block__move-menu-line{background:#AD85A9;color:#22242a}html.zl-dark .block__notime-block{background:#1b1e24;color:#c7cbd1}html.zl-dark .block__cargo-transport-content{background:#0f1013;color:#c7cbd1}html.zl-dark .block__cargo-transport-circle{background:#102222;color:#c7cbd1}html.zl-dark .block__cargo-transport-price,html.zl-dark .block__cargo-transport-price-text{color:#e5e7eb}html.zl-dark .block__cargo-transport-text{color:#e5e7eb}html.zl-dark a.block__cargo-transport-btn{color:#e5e7eb}html.zl-dark .block__packing-moving{background:#0f1013;color:#c7cbd1;border-bottom-color:#26282e}html.zl-dark .block__packing-moving-title{color:#e5e7eb}

/* --- источник: contractor-search.css --- */
html.zl-dark .zl__contractor-search-wrap .zl__search-icon{color:#9ca3af}html.zl-dark .zl__contractor-search-clear{background:none;color:#9ca3af}html.zl-dark .zl__contractor-search-clear:hover{background:#16181c;color:#e5e7eb}html.zl-dark .zl__contractor-search-block.is-selected .zl__contractor-search-input{background:rgba(49,212,211,0.1);color:#464a53}html.zl-dark .zl__contractor-search-hint{color:#9ca3af}html.zl-dark .zl__contractor-show-all{background:none}html.zl-dark .zl__contractor-search-results{background:#0f1013;color:#c7cbd1;border-color:#26282e}html.zl-dark .zl__contractor-search-results::-webkit-scrollbar-track{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__contractor-search-results::-webkit-scrollbar-thumb{background:#16181c;color:#c7cbd1}html.zl-dark .zl__contractor-search-results::-webkit-scrollbar-thumb:hover{background:#16181c;color:#c7cbd1}html.zl-dark .zl__contractor-search-item{color:#e5e7eb;border-bottom-color:#26282e}html.zl-dark .zl__contractor-search-item:hover{background:#0f2221;color:#c7cbd1}html.zl-dark .zl__contractor-search-item.highlighted{background:rgba(49,212,211,0.1);color:#464a53}html.zl-dark .zl__contractor-search-item-type{color:#9ca3af}html.zl-dark .zl__contractor-search-loading{color:#9ca3af}html.zl-dark .zl__contractor-search-progress{background:#0f1013;color:#c7cbd1}html.zl-dark .zl__contractor-search-progress-fill{background:#31D4D3;color:#464a53}html.zl-dark .zl__contractor-search-no-results{color:#9ca3af}

/* --- источник: partners-programme.css --- */
html.zl-dark .zl__table-partners-programme thead{background:rgba(22,24,28,0.3)}html.zl-dark .zl__table-partners-programme thead td{color:#f3f4f6}html.zl-dark .zl__table-partners-programme tbody tr{border-bottom-color:#26282e}html.zl-dark .zl__table-partners-programme tbody td{color:#c7cbd1}html.zl-dark .partners-programme-total{background:#31D4D3;color:#464a53}html.zl-dark .bonus-item{background:#0f1013;color:#c7cbd1;border-color:#26282e}html.zl-dark .bonus-item.total{background:linear-gradient(135deg,#31D4D3 0%,#11B4B3 100%);color:#464a53}html.zl-dark .bonus-item.frozen{background:linear-gradient(135deg,#12211e 0%,#121f17 100%);color:#c7cbd1}html.zl-dark .bonus-item.available{background:linear-gradient(135deg,#112220 0%,#C8E6C9 100%)}html.zl-dark .partners-programme-progress-bar{background:#0f1013;color:#c7cbd1}html.zl-dark .partners-programme-progress-bar__fill{background:#31D4D3;color:#464a53}html.zl-dark .partners-programme-progress-bar__dot{background:#000}html.zl-dark .progress-prize__icon,html.zl-dark .get_prize_icon{background:#0f1013;color:#c7cbd1;border-color:#26282e}html.zl-dark .progress-prize__label{color:#c7cbd1}html.zl-dark .progress-amount{color:#e5e7eb}html.zl-dark .zl__partners_programme___get_prize.disabled{background-color:#16181c !important;color:#c7cbd1 !important}html.zl-dark .zl__partners_programme___get_prize.disabled:hover{background-color:#16181c !important;color:#c7cbd1 !important}html.zl-dark .status-badge[data-status="pending"]{background:#12201b;color:#c7cbd1}html.zl-dark .status-badge[data-status="approved"]{background:#10221f;color:#e5e7eb}html.zl-dark .status-badge[data-status="rejected"]{background:#121d1d;color:#c7cbd1}html.zl-dark button[data-target="#get_prize"].disabled,html.zl-dark [data-target="#get_prize"].disabled{background-color:#16181c;color:#c7cbd1;border-color:#26282e}html.zl-dark button[data-target="#get_prize"].disabled:hover,html.zl-dark [data-target="#get_prize"].disabled:hover{background-color:#16181c;color:#c7cbd1;border-color:#26282e}html.zl-dark .segment-level{background:#0f1013;color:#c7cbd1;border-color:#26282e}html.zl-dark .segment-level.completed{background:linear-gradient(to right,#112220 0%,#0f1013 100%);color:#c7cbd1}html.zl-dark .segment-level.active{background:linear-gradient(to right,#102222 0%,#0f1013 100%);color:#c7cbd1}html.zl-dark .segment-title{color:#e5e7eb}html.zl-dark .segment-range{color:#c7cbd1}html.zl-dark .segment-level.completed .segment-status{background:#28A745;color:#fff}html.zl-dark .segment-level.active .segment-status{background:#31D4D3;color:#fff}html.zl-dark .segment-level:not(.completed):not(.active) .segment-status{background:#16181c;color:#c7cbd1}

/* --- источник: content.css --- */
html.zl-dark img.wp-smiley,html.zl-dark img.emoji{background:none !important}html.zl-dark .has-very-light-gray-background-color{background-color:#0f1013;color:#c7cbd1}html.zl-dark .has-very-dark-gray-background-color{background-color:#313131}html.zl-dark .has-very-dark-gray-color{color:#e5e7eb}html.zl-dark .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3);color:#33363d}html.zl-dark .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe);color:#464a53}html.zl-dark .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#111d22)}html.zl-dark .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#12221e,#67a671)}html.zl-dark .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59);color:#464a53}html.zl-dark .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}html.zl-dark .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc);color:#000000}html.zl-dark .screen-reader-text:focus{background-color:#16181c;color:#e5e7eb}html.zl-dark .wp-block-table .has-subtle-light-gray-background-color{background-color:#0f1013;color:#c7cbd1}html.zl-dark .wp-block-table .has-subtle-pale-green-background-color{background-color:#11221f;color:#c7cbd1}html.zl-dark .wp-block-table .has-subtle-pale-blue-background-color{background-color:#112022;color:#c7cbd1}html.zl-dark .wp-block-table .has-subtle-pale-pink-background-color{background-color:#122020;color:#c7cbd1}html.zl-dark .wp-block-table.is-style-stripes{background-color:transparent}html.zl-dark .wp-block-table.is-style-stripes tbody tr:nth-child(odd){background-color:#0f1013;color:#c7cbd1}html.zl-dark .wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd){background-color:#0f1013;color:#c7cbd1}html.zl-dark .wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd){background-color:#11221f;color:#c7cbd1}html.zl-dark .wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd){background-color:#112022;color:#c7cbd1}html.zl-dark .wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd){background-color:#122020;color:#c7cbd1}html.zl-dark .wp-block-table.is-style-stripes{border-bottom-color:#26282e}html.zl-dark .wp-block-button__link{background-color:#32373c}html.zl-dark .wp-block-file__button{background:#32373c}html.zl-dark:where(.wp-element-button,.wp-block-button__link){background-color:#32373c}html.zl-dark .has-black-background-color{background-color:var(--wp--preset--color--black) !important}html.zl-dark .has-cyan-bluish-gray-background-color{background-color:var(--wp--preset--color--cyan-bluish-gray) !important}html.zl-dark .has-white-background-color{background-color:var(--wp--preset--color--white) !important}html.zl-dark .has-pale-pink-background-color{background-color:var(--wp--preset--color--pale-pink) !important}html.zl-dark .has-vivid-red-background-color{background-color:var(--wp--preset--color--vivid-red) !important}html.zl-dark .has-luminous-vivid-orange-background-color{background-color:var(--wp--preset--color--luminous-vivid-orange) !important}html.zl-dark .has-luminous-vivid-amber-background-color{background-color:var(--wp--preset--color--luminous-vivid-amber) !important}html.zl-dark .has-light-green-cyan-background-color{background-color:var(--wp--preset--color--light-green-cyan) !important}html.zl-dark .has-vivid-green-cyan-background-color{background-color:var(--wp--preset--color--vivid-green-cyan) !important}html.zl-dark .has-pale-cyan-blue-background-color{background-color:var(--wp--preset--color--pale-cyan-blue) !important}html.zl-dark .has-vivid-cyan-blue-background-color{background-color:var(--wp--preset--color--vivid-cyan-blue) !important}html.zl-dark .has-vivid-purple-background-color{background-color:var(--wp--preset--color--vivid-purple) !important}html.zl-dark .has-vivid-cyan-blue-to-vivid-purple-gradient-background{background:var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important}html.zl-dark .has-light-green-cyan-to-vivid-green-cyan-gradient-background{background:var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important}html.zl-dark .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background:var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important}html.zl-dark .has-luminous-vivid-orange-to-vivid-red-gradient-background{background:var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important}html.zl-dark .has-very-light-gray-to-cyan-bluish-gray-gradient-background{background:var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important}html.zl-dark .has-cool-to-warm-spectrum-gradient-background{background:var(--wp--preset--gradient--cool-to-warm-spectrum) !important}html.zl-dark .has-blush-light-purple-gradient-background{background:var(--wp--preset--gradient--blush-light-purple) !important}html.zl-dark .has-blush-bordeaux-gradient-background{background:var(--wp--preset--gradient--blush-bordeaux) !important}html.zl-dark .has-luminous-dusk-gradient-background{background:var(--wp--preset--gradient--luminous-dusk) !important}html.zl-dark .has-pale-ocean-gradient-background{background:var(--wp--preset--gradient--pale-ocean) !important}html.zl-dark .has-electric-grass-gradient-background{background:var(--wp--preset--gradient--electric-grass) !important}html.zl-dark .has-midnight-gradient-background{background:var(--wp--preset--gradient--midnight) !important}html.zl-dark:where(.wp-element-button,.wp-block-button__link){background-color:#32373c}html.zl-dark .has-black-background-color{background-color:var(--wp--preset--color--black) !important}html.zl-dark .has-cyan-bluish-gray-background-color{background-color:var(--wp--preset--color--cyan-bluish-gray) !important}html.zl-dark .has-white-background-color{background-color:var(--wp--preset--color--white) !important}html.zl-dark .has-pale-pink-background-color{background-color:var(--wp--preset--color--pale-pink) !important}html.zl-dark .has-vivid-red-background-color{background-color:var(--wp--preset--color--vivid-red) !important}html.zl-dark .has-luminous-vivid-orange-background-color{background-color:var(--wp--preset--color--luminous-vivid-orange) !important}html.zl-dark .has-luminous-vivid-amber-background-color{background-color:var(--wp--preset--color--luminous-vivid-amber) !important}html.zl-dark .has-light-green-cyan-background-color{background-color:var(--wp--preset--color--light-green-cyan) !important}html.zl-dark .has-vivid-green-cyan-background-color{background-color:var(--wp--preset--color--vivid-green-cyan) !important}html.zl-dark .has-pale-cyan-blue-background-color{background-color:var(--wp--preset--color--pale-cyan-blue) !important}html.zl-dark .has-vivid-cyan-blue-background-color{background-color:var(--wp--preset--color--vivid-cyan-blue) !important}html.zl-dark .has-vivid-purple-background-color{background-color:var(--wp--preset--color--vivid-purple) !important}html.zl-dark .has-vivid-cyan-blue-to-vivid-purple-gradient-background{background:var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important}html.zl-dark .has-light-green-cyan-to-vivid-green-cyan-gradient-background{background:var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important}html.zl-dark .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background:var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important}html.zl-dark .has-luminous-vivid-orange-to-vivid-red-gradient-background{background:var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important}html.zl-dark .has-very-light-gray-to-cyan-bluish-gray-gradient-background{background:var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important}html.zl-dark .has-cool-to-warm-spectrum-gradient-background{background:var(--wp--preset--gradient--cool-to-warm-spectrum) !important}html.zl-dark .has-blush-light-purple-gradient-background{background:var(--wp--preset--gradient--blush-light-purple) !important}html.zl-dark .has-blush-bordeaux-gradient-background{background:var(--wp--preset--gradient--blush-bordeaux) !important}html.zl-dark .has-luminous-dusk-gradient-background{background:var(--wp--preset--gradient--luminous-dusk) !important}html.zl-dark .has-pale-ocean-gradient-background{background:var(--wp--preset--gradient--pale-ocean) !important}html.zl-dark .has-electric-grass-gradient-background{background:var(--wp--preset--gradient--electric-grass) !important}html.zl-dark .has-midnight-gradient-background{background:var(--wp--preset--gradient--midnight) !important}html.zl-dark .kz-table-block{background:#0f1013;color:#c7cbd1}html.zl-dark .kz-table thead th{background:#1b1e24;color:#c7cbd1}html.zl-dark .kz-table .route-col{background:#0f1013;color:#f3f4f6}html.zl-dark .kz-table .grp-cargo{background:#31d4d3;color:#0f172a}html.zl-dark .kz-table .grp-kg{background:#1b1e24;color:#c7cbd1}html.zl-dark .kz-table tbody td{background:#122122;color:#c7cbd1}html.zl-dark .kz-table tbody td.kg{background:#122222;color:#c7cbd1}html.zl-dark .kz-table .note td{background:#112221;color:#c7cbd1}html.zl-dark .kz-mobile{background:#122122;color:#c7cbd1}html.zl-dark .kz-mobile-route{background:#0f1013;color:#c7cbd1}html.zl-dark .kz-mobile-title{background:#1b1e24;color:#c7cbd1}html.zl-dark .kz-mobile-col-head.cargo{background:#31d4d3;color:#0f172a}html.zl-dark .kz-mobile-col-head.kg{background:#1b1e24;color:#c7cbd1}html.zl-dark .kz-mobile-item span:first-child{color:#e5e7eb}html.zl-dark .kz-mobile-item span:last-child{color:#f3f4f6}html.zl-dark .kz-mobile-note{background:#112221;color:#f3f4f6}html.zl-dark .kz-mobile-section{background:#0f1013;color:#c7cbd1}html.zl-dark .kz-mobile-section-title{color:#e5e7eb}@media (max-width:767px){html.zl-dark .kz-table-block{background:transparent}}html.zl-dark .blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption,html.zl-dark .blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption,html.zl-dark .wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption,html.zl-dark .wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption{background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent)}html.zl-dark .wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-track{background-color:transparent}html.zl-dark .wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-thumb{background-color:transparent}html.zl-dark .wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within::-webkit-scrollbar-thumb,html.zl-dark .wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus::-webkit-scrollbar-thumb,html.zl-dark .wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover::-webkit-scrollbar-thumb{background-color:hsla(0,0%,100%,.8)}html.zl-dark .wp-block-gallery.has-nested-images figure.wp-block-image figcaption{background:linear-gradient(0deg,rgba(0,0,0,.4),transparent)}html.zl-dark .wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border figcaption,html.zl-dark .wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption{background:none}html.zl-dark .wp-lightbox-container button{background-color:rgba(27,30,36,0.25)}html.zl-dark .wp-lightbox-container button:focus,html.zl-dark .wp-lightbox-container button:hover,html.zl-dark .wp-lightbox-container button:not(:hover):not(:active):not(.has-background){background-color:rgba(27,30,36,0.25)}html.zl-dark .wp-lightbox-overlay .wp-lightbox-close-button:focus,html.zl-dark .wp-lightbox-overlay .wp-lightbox-close-button:hover,html.zl-dark .wp-lightbox-overlay .wp-lightbox-close-button:not(:hover):not(:active):not(.has-background){background:none}html.zl-dark .wp-lightbox-overlay .wp-lightbox-navigation-button-next:focus,html.zl-dark .wp-lightbox-overlay .wp-lightbox-navigation-button-next:hover,html.zl-dark .wp-lightbox-overlay .wp-lightbox-navigation-button-next:not(:hover):not(:active):not(.has-background),html.zl-dark .wp-lightbox-overlay .wp-lightbox-navigation-button-prev:focus,html.zl-dark .wp-lightbox-overlay .wp-lightbox-navigation-button-prev:hover,html.zl-dark .wp-lightbox-overlay .wp-lightbox-navigation-button-prev:not(:hover):not(:active):not(.has-background){background:none}html.zl-dark .wp-lightbox-overlay button{background:none}html.zl-dark .wp-lightbox-overlay .scrim{background-color:#0f1013;color:#c7cbd1}html.zl-dark:where(.wp-element-button,.wp-block-button__link){background-color:#32373c}html.zl-dark .has-black-background-color{background-color:var(--wp--preset--color--black) !important}html.zl-dark .has-cyan-bluish-gray-background-color{background-color:var(--wp--preset--color--cyan-bluish-gray) !important}html.zl-dark .has-white-background-color{background-color:var(--wp--preset--color--white) !important}html.zl-dark .has-pale-pink-background-color{background-color:var(--wp--preset--color--pale-pink) !important}html.zl-dark .has-vivid-red-background-color{background-color:var(--wp--preset--color--vivid-red) !important}html.zl-dark .has-luminous-vivid-orange-background-color{background-color:var(--wp--preset--color--luminous-vivid-orange) !important}html.zl-dark .has-luminous-vivid-amber-background-color{background-color:var(--wp--preset--color--luminous-vivid-amber) !important}html.zl-dark .has-light-green-cyan-background-color{background-color:var(--wp--preset--color--light-green-cyan) !important}html.zl-dark .has-vivid-green-cyan-background-color{background-color:var(--wp--preset--color--vivid-green-cyan) !important}html.zl-dark .has-pale-cyan-blue-background-color{background-color:var(--wp--preset--color--pale-cyan-blue) !important}html.zl-dark .has-vivid-cyan-blue-background-color{background-color:var(--wp--preset--color--vivid-cyan-blue) !important}html.zl-dark .has-vivid-purple-background-color{background-color:var(--wp--preset--color--vivid-purple) !important}html.zl-dark .has-vivid-cyan-blue-to-vivid-purple-gradient-background{background:var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important}html.zl-dark .has-light-green-cyan-to-vivid-green-cyan-gradient-background{background:var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important}html.zl-dark .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background:var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important}html.zl-dark .has-luminous-vivid-orange-to-vivid-red-gradient-background{background:var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important}html.zl-dark .has-very-light-gray-to-cyan-bluish-gray-gradient-background{background:var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important}html.zl-dark .has-cool-to-warm-spectrum-gradient-background{background:var(--wp--preset--gradient--cool-to-warm-spectrum) !important}html.zl-dark .has-blush-light-purple-gradient-background{background:var(--wp--preset--gradient--blush-light-purple) !important}html.zl-dark .has-blush-bordeaux-gradient-background{background:var(--wp--preset--gradient--blush-bordeaux) !important}html.zl-dark .has-luminous-dusk-gradient-background{background:var(--wp--preset--gradient--luminous-dusk) !important}html.zl-dark .has-pale-ocean-gradient-background{background:var(--wp--preset--gradient--pale-ocean) !important}html.zl-dark .has-electric-grass-gradient-background{background:var(--wp--preset--gradient--electric-grass) !important}html.zl-dark .has-midnight-gradient-background{background:var(--wp--preset--gradient--midnight) !important}
