

/* Start:/local/templates/novatek/components/bitrix/news.list/hero_auto_slider/style.css?17697671124517*/
/* --- ОСНОВА (Без изменений) --- */
.hero-fullscreen-wrapper {
    position: relative;
    width: 100%;
    height: var(--app-height, 100vh);
    min-height: 600px;
    overflow: hidden;
    margin: 0; padding: 0;
    background-color: #000;
}

.hero-fullscreen-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-fullscreen-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.h-100 { height: 100%; }

.hero-content {
    position: relative;
    z-index: 3;
    color: #FFFFFF;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 60px; /* Чуть меньше, чтобы оставить место для навигации */
}

/* Типографика */
.hero-title {
    font-family: 'Stolzl', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 110%;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-family: 'Stolzl', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    margin-bottom: 48px;
    opacity: 0.9;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    background-color: #E40046;
    color: #FFFFFF;
    font-family: 'Stolzl', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 40px;
    transition: background 0.3s ease, transform 0.2s ease;
    gap: 10px;
}
.hero-btn:hover { background-color: #c4003c; transform: translateY(-2px); }

/* --- НОВЫЙ БЛОК НАВИГАЦИИ --- */

/* Обертка для позиционирования внутри container */
.slider-controls-wrapper {
    position: absolute;
    bottom: 50px; /* Отступ от нижнего края экрана */
    left: 0;
    right: 0;
    z-index: 10; /* Поверх слайдов */
    pointer-events: none; /* Пропускаем клики сквозь пустые места */
}

.slider-bottom-controls {
    display: flex;
    align-items: center;
    gap: 40px; /* Расстояние между стрелками и точками */
    pointer-events: auto; /* Возвращаем клики элементам */
    width: fit-content;
}

/* 1. Стрелки */
.slider-arrows {
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1); /* Полупрозрачный фон */
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: #4061A6;
    border-color: #4061A6;
}

.nav-btn svg path { stroke: white; }


/* 2. Точки */
.slider-dots {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dot-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

/* Активная точка */
.dot-btn.active {
    background-color: #FFFFFF;
    transform: scale(1.3);
}

.dot-btn:hover {
    background-color: #FFFFFF;
}

/* --- АДАПТИВ --- */
@media (max-width: 1199px) {
    .hero-title { font-size: 48px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 32px; margin-bottom: 16px; }
    .hero-subtitle { font-size: 18px; margin-bottom: 32px; }

    .slider-controls-wrapper { bottom: 20px; }

    /* На мобилке можно скрыть точки или стрелки, если места мало */
    .slider-bottom-controls {
        width: 100%;
        justify-content: space-between; /* Разносим по краям */
    }
}
/* End */


/* Start:/local/templates/novatek/components/bitrix/news.list/news.slider/style.css?17664106554706*/
/* --- ОСНОВНЫЕ НАСТРОЙКИ СЕКЦИИ --- */
.news-section {
    overflow: hidden;
}

.news-section .section-title {
    font-weight: 500;
    font-size: 46px;
    line-height: 55px;

    margin-top: 0;
    margin-bottom: 48px;
}

/* --- СТРУКТУРА СЛАЙДЕРА --- */
.news-slider-viewport {
    width: 100%;
    overflow: hidden; /* Скрываем то, что за пределами */
}

.news-slider-track {
    display: flex; /* Слайды в ряд */
    transition: transform 0.5s ease-in-out; /* Плавная анимация JS */
    width: 100%;
}

.news-slide {
    min-width: 100%; /* Каждый слайд занимает 100% ширины контейнера */
    box-sizing: border-box;
    /* Внутри слайда Grid-сетка */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* --- КАРТОЧКА --- */
.news-card {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    background-color: #151416;
}

/* Картинка на фоне */
.news-card-bg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

/* Эффект зума картинки при наведении */
.news-card:hover .news-card-bg {
    transform: scale(1.05);
}

/* Градиент (Оверлей) через ::after */
.news-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    z-index: 1;
    /* ТЗ: Gradient */
    background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(21, 20, 22, 0.4) 100%);
    transition: background 0.3s ease;
}

.news-card:hover::after {
    background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(21, 20, 22, 0.6) 100%);
}

/* Контент */
.news-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    z-index: 2;
    box-sizing: border-box;
}

.news-date {
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 8px;
}

.news-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}

/* --- РАЗМЕРЫ КАРТОЧЕК --- */

/* Большая (Hero) */
.news-card--hero {
    grid-column: 1 / -1; /* На всю ширину (3 колонки) */
    height: 415px; /* ТЗ */
}

.news-card--hero .news-title {
    font-size: 32px;
}

/* Маленькая (Small) */
.news-card--small {
    height: 250px; /* Высота нижнего ряда */
    /* Занимает 1 колонку автоматически */
}

/* --- УПРАВЛЕНИЕ --- */
.news-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
}

/* Точки */
.news-dots {
    display: flex;
    gap: 16px;
}

.news-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background-color: #C4C4C4;
    cursor: pointer;
    transition: background-color 0.3s;
}

.news-dot.active {
    background-color: #4061A6;
}

/* Стрелки */
.news-arrows {
    display: flex;
    gap: 8px;
}

.news-arrow {
    width: 42px;
    height: 42px;
    background-color: #4061A6;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s;
    padding: 0;
}

.news-arrow:hover {
    background-color: #33508a;
    transform: translateY(-2px);
}

.news-arrow svg {
    display: block;
}

/* --- АДАПТИВНОСТЬ --- */
@media (max-width: 992px) {
    .news-section .section-title { font-size: 36px; line-height: 1.2; }

    .news-slide {
        grid-template-columns: 1fr 1fr; /* 2 колонки */
    }

    .news-card--hero { height: 350px; }

    /* Скрываем 4-й элемент, т.к. в сетке 2x2 он лишний */
    .news-card--small:last-child { display: none; }
}

@media (max-width: 767px) {
    .news-section { padding: 40px 0; }
    .news-section .section-title { font-size: 28px; margin-bottom: 24px; }

    .news-slide {
        display: flex;
        flex-direction: column; /* Одна колонка */
    }

    .news-card--hero { height: 280px; }
    .news-card--hero .news-title { font-size: 24px; }

    .news-card--small { height: 220px; }

    .news-card--small:last-child { display: block; } /* Возвращаем */

    .news-controls { margin-top: 24px; }
}
/* End */


/* Start:/local/templates/novatek/components/custom/content.columns.block/.default/style.css?17748641794596*/
/* --- СЕКЦИЯ (Контейнер уже задан в index.php) --- */
.spg-block {
    color: #151416;
}

/* --- ЗАГОЛОВКИ --- */
.spg-main-title {
    font-weight: 500;
    font-size: 46px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 48px;
    color: #151416;
}

.spg-header-row {
    display: flex;
    /*justify-content: space-between;*/
    align-items: flex-start; /* Выравнивание по центру по вертикали */
    flex-wrap: wrap;     /* Для мобильных устройств */
    gap: 20px;
    margin-bottom: 30px;
}

.spg-subtitle {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
    color: #4061A6;
    margin-bottom: 32px;
    margin-top: 0;
}

.spg-blue, .spg-list b, .spg-text b { color: #4061A6; font-weight: 350; }

.spg-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 556px; /* Ограничим ширину текста для читаемости */
}

/* --- ВЕРХНЯЯ СЕТКА (Описание + Свойства) --- */
.spg-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 74px;
    margin-bottom: 24px;
}

.spg-desc-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}
.spg-desc-item:last-child { margin-bottom: 0; }

.spg-icon-line {
    width: 32px;
    height: 32px;
    margin-right: 20px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spg-text {
    font-size: 18px;
    line-height: 1.5;
}

/* Правая часть (Галочки) */
.spg-properties {
    display: flex;
    flex: 1;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-left: 80px;
}

.spg-prop-item {
    display: flex;
    align-items: center;
    gap: 16px;
}


.spg-prop-item span {
    font-weight: 500;
    font-size: 16px;
}

/* --- КАРТОЧКА СТАТИСТИКИ --- */
.spg-stats-card {
    background: #FFFFFF;
    border: 1px solid #F2F2F2;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.spg-stat-item {
    flex: 1;
    text-align: center;
}

.spg-stat-num {
    font-family: 'Stolzl', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    color: #E40046;
    margin-bottom: 12px;
}

.spg-stat-desc {
    font-size: 16px;
    line-height: 1.4;
}

/* --- НИЖНЯЯ СЕТКА (Колонки) --- */
.spg-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

/* Картинка колонки */
.spg-col-img {
    width: 100%;
    height: 240px;
    border-radius: 8px; /* ТЗ */
    overflow: hidden;
    margin-bottom: 24px;
    background-color: #f4f4f4;
}

.spg-col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Заголовок колонки */
.spg-col-title {
    font-family: 'Stolzl', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #4061A6;
    margin-bottom: 24px;
    margin-top: 0;
}

/* Список */
.spg-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spg-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 20px;
}

.spg-list-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2px;
}
/* Если иконки внутри img */
.spg-list-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.spg-list span {
    font-size: 16px;
    line-height: 1.5;
    color: #151416;
}

/* --- АДАПТИВНОСТЬ --- */
@media (max-width: 992px) {
    .spg-main-title { font-size: 36px; }

    .spg-top-grid { flex-direction: column; gap: 30px; }
    .spg-description, .spg-properties { flex: 0 0 100%; width: 100%; }
    .spg-properties { justify-content: flex-start; }

    .spg-stats-card {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .spg-stat-item { width: 100%; padding-bottom: 20px; border-bottom: 1px solid #eee; }
    .spg-stat-item:last-child { border-bottom: none; padding-bottom: 0; }

    .spg-bottom-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .spg-main-title { font-size: 28px; }
    .spg-subtitle { font-size: 20px; }
    .spg-col-img { height: 200px; }
}
/* End */


/* Start:/local/templates/novatek/components/bitrix/news.detail/calculator/style.css?17697783334848*/
.calc-section-new {
    padding: 100px 0;
    background-color: #fff;
    color: #151416;
}

.calc-header {
    margin-bottom: 60px;
}
.calc-header h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 10px;
}
.calc-header p {
    font-size: 18px;
    color: #6F6F6F;
    margin: 0;
}

/* --- СЕТКА ВЕРХНЕЙ ЧАСТИ --- */
.calc-top-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

/* Левая колонка */
.calc-inputs-wrapper {
    flex: 0 0 450px; /* Фиксированная ширина левой колонки */
    border-left: 4px solid #4061A6;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Распределить инпуты по высоте */
}

.calc-input-group {
    margin-bottom: 20px;
}
.calc-input-group label {
    display: block;
    font-size: 16px;
    color: #6F6F6F;
    margin-bottom: 8px;
}
.calc-input-group label span { color: #E40046; }

.calc-input {
    width: 100%;
    height: 56px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 0 20px;
    font-size: 18px;
    outline: none;
    transition: 0.3s;
}
.calc-input:focus { border-color: #4061A6; }

/* Правая колонка */
.calc-results-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.result-card {
    background: #fff;
    border: 1px solid #F2F2F2;
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    text-align: right; /* Текст справа по макету */
}
.res-carbon {
    font-size: 20px;
    margin:12px 0;
    color: #6F6F6F;
}
.res-carbon b {
    color: black;
}
.main-card {
    flex: 1.5; /* Большая карточка */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.secondary-card {
    flex: 1; /* Маленькая карточка */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.res-label {
    font-size: 16px;
    color: #151416;
}

.res-value {
    font-weight: 700;
    line-height: 1;
    margin-top: 10px;
}

.big-red {
    font-size: 56px;
    color: #E40046;
}

.small-black {
    font-size: 42px;
    color: #151416;
}

/* --- ГРАФИК --- */
.calc-graph-section {
    margin-bottom: 80px;
}

.graph-main-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 50px;
}

.graph-row {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.graph-name {
    width: 200px;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.blue-text { color: #004d8c; }
.gray-text { color: #6F6F6F; }

.graph-track-area {
    flex: 1;
    position: relative;
    height: 60px; /* Высота зоны движения грузовика */
    border-bottom: 3px solid #E0E0E0;
}

.blue-line { border-bottom-color: #4061A6; }

.truck-marker-new {
    position: absolute;
    bottom: 0px; /* Стоит на линии */
    left: 0;
    width: 240px; /* Ширина грузовика */
    height: 70px;
    transition: left 1s ease-out; /* Плавное движение */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.truck-marker-new img {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.marker-text {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding-bottom: 10px; /* Подгонка текста в кузов */
    padding-right: 40px;
}

/* --- CTA --- */
.calc-cta-panel {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-text {
    font-size: 16px;
    font-weight: 500;
}

.cta-btn {
    background-color: #E40046;
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    flex-wrap:nowrap;
    text-wrap:nowrap;
    align-items: center;
    transition: background 0.3s;
}
.cta-btn:hover { background-color: #c2003a; }

/* Адаптив */
@media (max-width: 992px) {
    .calc-top-grid { flex-direction: column; gap: 40px; }
    .calc-inputs-wrapper {
        width: 100%;
        flex: auto;
        border-left: none;
        border-top: 4px solid #4061A6;
        padding-left: 0;
        padding-top: 30px;
    }
    .graph-row { flex-direction: column; align-items: flex-start; margin-bottom: 80px; }
    .graph-name { margin-bottom: 20px; }
    .graph-track-area { width: 100%; }
    .calc-cta-panel { flex-direction: column; gap: 20px; text-align: center; }
}
/* 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 */
/* /local/templates/novatek/components/bitrix/news.list/hero_auto_slider/style.css?17697671124517 */
/* /local/templates/novatek/components/bitrix/news.list/news.slider/style.css?17664106554706 */
/* /local/templates/novatek/components/custom/content.columns.block/.default/style.css?17748641794596 */
/* /local/templates/novatek/components/bitrix/news.detail/calculator/style.css?17697783334848 */
/* /local/templates/novatek/components/custom/feedback.ajax/.default/style.css?17695847584076 */
