/**
 * Интерактивная карта трасс и канатных дорог
 */

/* ===== Скрываем шапку и подвал на странице карты ===== */
body:has(.kd-interactive-map-container) .kd-topbar,
body:has(.kd-interactive-map-container) .kd-header,
body:has(.kd-interactive-map-container) .kd-footer,
body:has(.kd-interactive-map-container) > header,
body:has(.kd-interactive-map-container) > footer,
body:has(.kd-interactive-map-container) .site-footer,
body:has(.kd-interactive-map-container) .ast-hfb-header,
body:has(.kd-interactive-map-container) .entry-title,
body:has(.kd-interactive-map-container) .ast-mobile-popup-drawer,
body:has(.kd-interactive-map-container) .ast-mobile-header-wrap,
body:has(.kd-interactive-map-container) #ast-mobile-popup,
body:has(.kd-interactive-map-container) .ast-mobile-popup-overlay,
body:has(.kd-interactive-map-container) .menu-toggle,
body:has(.kd-interactive-map-container) .ast-header-break-point .main-header-menu-toggle {
    display: none !important;
}

body:has(.kd-interactive-map-container) .content-area,
body:has(.kd-interactive-map-container) #primary,
body:has(.kd-interactive-map-container) .site-main,
body:has(.kd-interactive-map-container) .entry-content,
body:has(.kd-interactive-map-container) article {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* Mobile sheet — скрыт на десктопе */
.kd-mobile-sheet {
    display: none;
}

/* ===== Основной контейнер ===== */
.kd-interactive-map-container {
    display: flex;
    gap: 0;
    height: 100vh;
    width: 100%;
    background: var(--kd-white, #fff);
    overflow: hidden;
}

/* ===== Кнопка "Назад на сайт" — на карте ===== */
.kd-map-back-btn {
    position: absolute;
    top: 16px;
    right: 80px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.kd-map-back-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

/* ===== Кнопка фильтра (мобилка) ===== */
.kd-map-filter-toggle {
    display: none;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1001;
    padding: 10px 16px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.kd-map-filter-toggle:hover {
    border-color: #2563eb;
    color: #2563eb;
}

/* ===== Левая панель (30%) ===== */
.kd-map-sidebar {
    width: 30%;
    min-width: 350px;
    background: var(--kd-white, #fff);
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e2e8f0;
}

/* Табы переключения */
.kd-map-tabs {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    background: white;
}

.kd-map-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.15s ease;
    position: relative;
    will-change: color;
}

.kd-map-tab:hover {
    color: #0f172a;
    background: #f8fafc;
}

.kd-map-tab.active {
    color: #2563eb;
}

.kd-map-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2563eb;
}

.kd-map-tab svg {
    width: 20px;
    height: 20px;
}

/* Обертка списков */
.kd-map-items-wrapper {
    flex: 1;
    overflow-y: auto;
    position: relative;
}

.kd-map-items {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    will-change: transform;
}

.kd-map-items.active {
    display: flex;
}

/* Элемент списка */
.kd-map-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
    will-change: transform;
}

.kd-map-item:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.kd-map-item.highlighted {
    border-color: #2563eb;
    background: #eff6ff;
}

.kd-map-item.closed {
    opacity: 0.6;
}

.kd-map-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

/* Номер трассы */
.kd-map-item-number {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

.kd-map-item-number.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.kd-map-item-number.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.kd-map-item-number.red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.kd-map-item-number.black {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

/* Двухцветный номер трассы */
.kd-map-item-number-split {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.kd-map-item-number-half {
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
}

.kd-map-item-number-half:first-child {
    top: 0;
}

.kd-map-item-number-half:last-of-type {
    bottom: 0;
}

.kd-map-item-number-half.green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.kd-map-item-number-half.blue { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.kd-map-item-number-half.red { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
.kd-map-item-number-half.black { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); }

.kd-map-item-number-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    z-index: 1;
}

/* Иконка канатной дороги */
.kd-map-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    flex-shrink: 0;
}

.kd-map-item-icon svg {
    width: 20px;
    height: 20px;
}

/* Информация */
.kd-map-item-info {
    flex: 1;
}

.kd-map-item-info h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
}

.kd-map-item-length,
.kd-map-item-capacity {
    font-size: 12px;
    color: #64748b;
}

/* Статус */
.kd-map-item-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.kd-map-item-status.open {
    background: #dcfce7;
    color: #166534;
}

.kd-map-item-status.closed,
.kd-map-item-status.auto {
    background: #fee2e2;
    color: #991b1b;
}

.kd-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.kd-map-item-status.open .kd-status-dot {
    background: #16a34a;
}

.kd-map-item-status.closed .kd-status-dot,
.kd-map-item-status.auto .kd-status-dot {
    background: #dc2626;
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.kd-map-no-items {
    text-align: center;
    padding: 32px 16px;
    color: #64748b;
    font-size: 14px;
}

/* ===== Правая часть с картой (75%) ===== */
.kd-map-canvas {
    flex: 1;
    position: relative;
    background: #f1f5f9;
    overflow: visible; /* Разрешаем tooltip выходить за границы */
}

/* Полноэкранный режим */
.kd-map-canvas:fullscreen {
    background: #1e293b;
}

.kd-map-canvas:-webkit-full-screen {
    background: #1e293b;
}

.kd-map-canvas:-moz-full-screen {
    background: #1e293b;
}

.kd-map-canvas:-ms-fullscreen {
    background: #1e293b;
}

/* Кнопки управления зумом */
.kd-map-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
    pointer-events: auto;
}

.kd-zoom-btn {
    width: 44px;
    height: 44px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
    transition: all 0.2s ease;
    color: #475569;
    pointer-events: auto;
}

.kd-zoom-btn svg {
    max-width: 20px;
    max-height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.kd-zoom-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: scale(1.05);
}

.kd-zoom-btn:active {
    transform: scale(0.95);
}

.kd-zoom-btn svg {
    width: 20px;
    height: 20px;
}

/* Обертка карты */
.kd-map-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Оставляем hidden для самой карты, чтобы она не выходила за границы */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: none; /* Отключаем стандартное поведение браузера для touch событий */
}

.kd-map-wrapper .map {
    cursor: grab;
}

.kd-map-wrapper .map:active {
    cursor: grabbing;
}

/* Контейнер map с фоновым изображением */
.kd-map-wrapper .map {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 2500 / 2083;
    transition: transform 0.15s ease;
    transform-origin: center center;
}

/* Фоновое изображение через img */
.imgin.img-ineractiv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.imgin.img-ineractiv img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* SVG поверх фона */
.kd-map-wrapper svg {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: all;
}

/* Трассы на карте */
.trasa,
path[class^="track-"],
path[class*="track-"] {
    transition: all 0.2s ease;
    cursor: pointer;
}

.tras-1 {
    stroke: #ef4444;
}

.tras-2 {
    stroke: #3b82f6;
}

.tras-3 {
    stroke: #10b981;
}

/* Трассы с классами track-* - ЗАЛИТЫЕ ЦВЕТОМ + ОБВОДКА */
path.track-1,
path.track-4,
path.track-5,
path.track-7 {
    fill: #ef4444 !important;
    stroke: #ef4444 !important;
    stroke-width: 2 !important;
    stroke-linejoin: round !important;
    stroke-linecap: round !important;
}

path.track-2,
path.track-3,
path.track-8 {
    fill: #3b82f6 !important;
    stroke: #3b82f6 !important;
    stroke-width: 2 !important;
    stroke-linejoin: round !important;
    stroke-linecap: round !important;
}

/* Часть 2 трассы — цвет берётся из inline fill */
path[class*="-part2"] {
    fill: attr(fill) !important;
    stroke: attr(fill) !important;
}
path[class*="-part2"][fill="#22c55e"] {
    fill: #22c55e !important;
    stroke: #22c55e !important;
}
path[class*="-part2"][fill="#ef4444"] {
    fill: #ef4444 !important;
    stroke: #ef4444 !important;
}
path[class*="-part2"][fill="#3b82f6"] {
    fill: #3b82f6 !important;
    stroke: #3b82f6 !important;
}
path[class*="-part2"][fill="#1e293b"] {
    fill: #1e293b !important;
    stroke: #1e293b !important;
}

path.track-6 {
    fill: #1e293b !important;
    stroke: #1e293b !important;
    stroke-width: 2 !important;
    stroke-linejoin: round !important;
    stroke-linecap: round !important;
}

path.track-9,
path.track-10 {
    fill: #22c55e !important;
    stroke: #22c55e !important;
    stroke-width: 2 !important;
    stroke-linejoin: round !important;
    stroke-linecap: round !important;
}

.trasa:hover,
.trasa.highlighted,
path[class^="track-"]:hover,
path[class^="track-"].highlighted:not([class*="cable-"]) {
    filter: brightness(1.3) drop-shadow(0 0 16px currentColor);
    stroke-width: 12 !important;
}
path.track-9:hover,
path.track-9.highlighted {
    stroke-width: 2 !important;
}

/* Затемнение других трасс при наведении на одну */
.kd-map-wrapper.dimmed path[class^="track-"],
.kd-map-wrapper.dimmed path[class*="track-"],
.kd-map-wrapper.dimmed .trasa {
    opacity: 0.25;
    transition: opacity 0.2s ease;
}

/* Активная трасса остается яркой */
.kd-map-wrapper.dimmed path[class^="track-"]:hover,
.kd-map-wrapper.dimmed path[class^="track-"].highlighted,
.kd-map-wrapper.dimmed .trasa:hover,
.kd-map-wrapper.dimmed .trasa.highlighted {
    opacity: 1 !important;
}

/* ===== Канатные дороги на карте ===== */
/* Канатная дорога ID 9892 - Домбай 1 */
.cable-9892-rope {
    fill: #374151;
    stroke: #374151;
    stroke-width: 2;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.cable-9892-poles {
    fill: url(#metalGradient);
    stroke: none;
}

.cable-9892-cabins {
    fill: #9ca3af;
    stroke: none;
}

.cable-9892-mounts {
    fill: #374151;
    stroke: none;
}

.cable-9892-mount-slots {
    fill: #9ca3af;
    stroke: none;
}

.cable-9892-windows {
    fill: url(#glassGradient);
    stroke: none;
}

/* Канатная дорога ID 9896 - Вторая канатная дорога */
.cable-9896-rope {
    fill: #374151;
    stroke: #374151;
    stroke-width: 2;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.cable-9896-poles {
    fill: url(#metalGradient);
    stroke: #6b7280;
    stroke-width: 1;
}

.cable-9896-cabins {
    fill: #3b82f6;
    stroke: none;
}

.cable-9896-mounts {
    fill: #9ca3af;
    stroke: none;
}

/* Канатная дорога ID 9898 - Домбай 3 */
.cable-9898-rope {
    fill: #374151;
    stroke: #374151;
    stroke-width: 2;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.cable-9898-poles {
    fill: url(#metalGradient);
    stroke: #6b7280;
    stroke-width: 1;
}

.cable-9898-cabins {
    fill: #3b82f6;
    stroke: none;
}

.cable-9898-mounts {
    fill: #9ca3af;
    stroke: none;
}

/* Эффекты при наведении на канатные дороги */
path[class^="cable-"],
path[class*="cable-"] {
    transition: all 0.2s ease;
    cursor: pointer;
}

/* При наведении на любой элемент канатной дороги - выделяем всю канатку */
svg:has(path[class*="cable-9892"]:hover) path[class*="cable-9892"],
path[class*="cable-9892"].highlighted {
    filter: brightness(1.3) drop-shadow(0 0 12px rgba(55, 65, 81, 0.6));
}

svg:has(path[class*="cable-9896"]:hover) path[class*="cable-9896"],
path[class*="cable-9896"].highlighted {
    filter: brightness(1.3) drop-shadow(0 0 12px rgba(59, 130, 246, 0.6));
}

svg:has(path[class*="cable-9898"]:hover) path[class*="cable-9898"],
path[class*="cable-9898"].highlighted {
    filter: brightness(1.3) drop-shadow(0 0 12px rgba(59, 130, 246, 0.6));
}

/* ===== Tooltip для трасс и канатных дорог ===== */
.kd-map-tooltip {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2000;
    min-width: 260px;
    border: 2px solid #e2e8f0;
}

.kd-map-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.kd-tooltip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.kd-tooltip-title {
    font-weight: 600;
    font-size: 15px;
    color: #1e293b;
}

.kd-tooltip-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 500;
}

.kd-tooltip-params {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}

.kd-tooltip-param {
    font-size: 12px;
}

.kd-tooltip-param-label {
    color: #64748b;
    font-weight: 500;
    margin-bottom: 2px;
}

.kd-tooltip-param-value {
    color: #1e293b;
    font-weight: 600;
}

.kd-tooltip-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.kd-tooltip-status.open {
    background: #dcfce7;
    color: #166534;
}

.kd-tooltip-status.closed {
    background: #fee2e2;
    color: #991b1b;
}

/* Затемнение других канатных дорог и трасс при наведении */
.kd-map-wrapper.dimmed path[class^="cable-"],
.kd-map-wrapper.dimmed path[class*="cable-"],
.kd-map-wrapper.dimmed path[class^="track-"],
.kd-map-wrapper.dimmed path[class*="track-"] {
    opacity: 0.25;
    transition: opacity 0.2s ease;
}

/* Активная канатная дорога остается яркой */
.kd-map-wrapper.dimmed path[class^="cable-"].highlighted,
.kd-map-wrapper.dimmed path[class*="cable-"].highlighted,
svg:has(path[class*="cable-9892"]:hover) path[class*="cable-9892"],
svg:has(path[class*="cable-9896"]:hover) path[class*="cable-9896"],
svg:has(path[class*="cable-9898"]:hover) path[class*="cable-9898"] {
    opacity: 1 !important;
}

/* ===== Мобильная адаптация ===== */
@media (max-width: 1024px) {
    .kd-interactive-map-container {
        position: relative;
    }

    .kd-map-filter-toggle {
        display: none;
    }

    .kd-map-sidebar {
        position: absolute;
        top: 0;
        left: 0;
        width: 320px;
        height: 100%;
        z-index: 1002;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: none;
        border-right: 1px solid #e2e8f0;
        min-width: auto;
    }

    .kd-map-sidebar.open {
        transform: translateX(0);
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    }

    /* Оверлей при открытом сайдбаре */
    .kd-map-overlay {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.3);
        z-index: 1001;
    }

    .kd-map-overlay.visible {
        display: block;
    }

    .kd-map-canvas {
        width: 100%;
        height: 100%;
    }

    /* Карта на весь экран */
    .kd-map-wrapper {
        width: 100vw;
        height: 100vh;
        overflow: hidden;
    }

    /* Убираем transition на мобилке — иначе карта прыгает */
    .kd-map-wrapper .map {
        transition: none !important;
    }

    .kd-map-controls {
        top: 16px;
        right: 16px;
    }

    /* Скрываем зум-кнопки на мобилке — зум пальцами */
    .kd-zoom-btn#kd-zoom-in,
    .kd-zoom-btn#kd-zoom-out,
    .kd-zoom-btn#kd-zoom-reset {
        display: none;
    }

    /* Скрываем tooltip на мобилке */
    .kd-map-tooltip {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .kd-map-sidebar {
        width: 85vw;
        max-width: 320px;
    }

    .kd-map-tab span {
        display: none;
    }

    .kd-map-item {
        padding: 10px;
    }

    .kd-map-item-info h4 {
        font-size: 13px;
    }

    .kd-map-filter-toggle {
        top: 12px;
        left: 12px;
        padding: 8px 12px;
        font-size: 13px;
    }

    .kd-map-back-btn {
        top: 12px;
        right: 12px;
        padding: 8px 12px;
        font-size: 13px;
    }

    .kd-map-back-btn span {
        display: inline;
    }

    /* Кнопка полный экран тоже не нужна */
    .kd-zoom-btn#kd-fullscreen {
        display: none;
    }

    /* ===== Mobile bottom sheet ===== */
    .kd-mobile-sheet {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-radius: 16px 16px 0 0;
        padding: 12px 20px 24px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
        z-index: 2000;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .kd-mobile-sheet.visible {
        transform: translateY(0);
    }

    .kd-mobile-sheet-handle {
        width: 40px;
        height: 4px;
        background: #cbd5e1;
        border-radius: 2px;
        margin: 0 auto 12px;
    }

    .kd-mobile-sheet-close {
        position: absolute;
        top: 12px;
        right: 16px;
        background: none;
        border: none;
        font-size: 24px;
        color: #94a3b8;
        cursor: pointer;
        line-height: 1;
        padding: 4px;
    }

    .kd-mobile-sheet-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .kd-mobile-sheet-number {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 18px;
        color: white;
        flex-shrink: 0;
    }

    .kd-mobile-sheet-title {
        font-weight: 700;
        font-size: 17px;
        color: #0f172a;
        margin-bottom: 2px;
    }

    .kd-mobile-sheet-status {
        display: inline-block;
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
    }

    .kd-mobile-sheet-status.open {
        background: #dcfce7;
        color: #166534;
    }

    .kd-mobile-sheet-status.closed {
        background: #fee2e2;
        color: #991b1b;
    }

    .kd-mobile-sheet-params {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .kd-sheet-param {
        background: #f8fafc;
        padding: 10px 12px;
        border-radius: 8px;
    }

    .kd-sheet-param-label {
        font-size: 11px;
        color: #94a3b8;
        font-weight: 500;
        margin-bottom: 2px;
    }

    .kd-sheet-param-value {
        font-size: 15px;
        font-weight: 600;
        color: #0f172a;
    }
}
