

/* Start:/local/components/spll/journal.detail/templates/.default/style.css?17851505998480*/
/* Стили для прилипающего блока */
h1.h-2.b2c-page-title {
    display: none
}
.journal-detail__main {
    display: grid;
    grid-template-columns: 1fr 24rem;
    column-gap: clamp(3rem, 1.6rem + 7vw, 10rem);
    row-gap: 3rem;
    align-items: start; /* Важно для правильной работы sticky */
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #F2F2F2;
}

.journal-aside {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    height: 100%;
}

.journal-aside__sticky-container {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
    transition: position 0.3s ease;
}

/* Класс для открепления блока в конце */
.journal-aside__sticky-container.unsticky {
    position: relative;
    top: auto;
    bottom: 0;
}

.journal-aside__ads-register {
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    background-color: var(--q-secondary-light);
}
.journal-aside__ads-register-title {
    font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
}

.journal-aside__ads-telegram {
    position: relative;
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    background-color: var(--q-primary-light);
    overflow: hidden;
}
.journal-aside__ads-telegram:before {
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-image: url(/local/templates/main_b2c/assets/images/tg-subscribe-person.png);
}
.journal-aside__ads-telegram-icon {
    position: absolute;
    display: block;
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-position: center center;
}
.journal-aside__ads-telegram-icon-1 {
    top: 1.5rem;
    right: 4rem;
    background-image: url(/local/templates/main_b2c/assets/images/tg-subscribe-icon-1.svg);
}
.journal-aside__ads-telegram-icon-2 {
    bottom: 4rem;
    right: 10rem;
    background-image: url(/local/templates/main_b2c/assets/images/tg-subscribe-icon-2.svg);
}
.journal-aside__ads-telegram-title {
    font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
    font-size: 600;
    max-width: 19rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .journal-detail__main {
        grid-template-columns: 1fr;
    }

    .journal-aside__sticky-container {
        position: static; /* На мобильных sticky не работает */
    }
}

/* Основные стили для журнальной статьи */
.journal-head {
}

/* Баннер с заголовком */
.journal-head__banner {
    position: relative;
    border-radius: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #f8f9fa, #ffffff);
}

.journal-head__image {
    width: 100%;
    min-height: clamp(25rem, 50vh, 27.5rem);
    overflow: hidden;
}

.journal-head__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.journal-head__image img:hover {
    transform: scale(1.02);
}

.journal-head__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(1rem, 0.75rem + 1.25vw, 2.25rem);
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.journal-head__title {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.journal-head__description {
    font-size: 1.25rem;
    line-height: 1.5;
    color: white;
    margin-top: 1rem;
}

/* Информационная панель */
.journal-head__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 1.5rem;
    border-bottom: 1px solid #F2F2F2;
    margin-bottom: 1.5rem;
}

.journal-head__info-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.journal-head__category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.5rem;
    border-radius: 0.875rem;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 400;
    background-color: var(--journal-category-color);
}

.journal-head__count-read {
    font-size: 1rem;
}
.journal-head__count-read:before {
    display: inline-block;
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--journal-category-color);
    vertical-align: middle;
    margin-right: 0.5rem;
}
.journal-head__count-read span {
    white-space: nowrap;
}

.journal-head__info-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.journal-head__date {
    font-size: 1rem;
}

/* Блок "Поделиться" */
.journal-shared__wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.journal-shared__title {
    font-size: 1rem;
}

.journal-shared__list {
    display: flex;
    gap: 8px;
}

.journal-shared__item {
    display: flex;
}

.journal-shared__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #495057;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    padding: 0;
}

.journal-shared__btn:hover {
    background-color: #80beff;
    color: white;
    transform: translateY(-2px);
}

/* Основной контент */

.journal-detail__main-col {
    min-width: 0;
}

.body-text {
    font-size: 18px;
    line-height: 1.8;
    color: #212529;
    margin-bottom: 32px;
}

.body-text p {
    margin: 0 0 24px 0;
}

.body-text img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem auto;
    display: block;
}

/* .body-text p:first-child::first-letter, .body-text::first-letter {
    font-size: clamp(3rem, 2.8rem + 1vw, 4rem);
    font-weight: 700;
    float: left;
    line-height: 0.8;
    margin-right: 1rem;
    color: var(--journal-category-color);
} */

/* Боковая панель */
.journal-aside {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.journal-ads {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

.journal-ads:hover {
    transform: translateY(-4px);
}

.journal-ads__image {
    width: 100%;
    height: auto;
    display: block;
}

/* Блок "Интересное" */
.journal-news {
}

.journal-news__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.journal-news__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.journal-news__item {
    display: block;
    text-decoration: none;
    color: inherit;
}

.journal-news__item article {
    display: flex;
    gap: 16px;
    align-items: center;
}

.journal-news__item-image {
    width: 104px;
    height: 104px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.journal-news__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journal-news__item-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    color: #212529;
    transition: color 0.2s ease;
}

.journal-news__item:hover .journal-news__item-title {
    color: #80beff;
}

/* Адаптивность */
@media (max-width: 920px) {
    .journal-detail__main {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .journal-head__description {
        font-size: 1rem;
    }

    .journal-head__info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    /* .journal-head__category {
        display: none;
    } */
    .journal-head__info-right {
        width: 100%;
        justify-content: right;
    }
    .body-text, .journal-head__count-read, .journal-head__date, .journal-shared__title {
        font-size: 0.875rem;
    }
}


@media (max-width: 480px) {
    .journal-news__item article {
        flex-direction: column;
        align-items: flex-start;
    }

    .journal-news__item-image {
        width: 72px;
        height: 72px;
        border-radius: 1rem;
    }
}

.catalog-like .catalog-items {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.catalog-like .catalog-item {
    min-width: 0;
    width: 216px;
}
/* End */


/* Start:/local/templates/main_b2c/css/slider.horizontal.css?17849029614303*/
/* Основные стили для контейнера */
.slider__wrapper {
    position: relative;
    margin: 4rem auto 0;
    display: grid;
}

/* Заголовок */
.slider__head {
    margin-bottom: 1.75rem;
    display: flex; /* добавить */
    justify-content: space-between; /* добавить */
    align-items: center; /* добавить */
}

/* Новый блок с кнопками */
.slider__head-nav {
    display: flex;
    gap: 12px;
}

.slider__title {
    font-size: 28px !important;
    font-weight: 600;
    margin: 0;
}

/* Стили для кнопок */
.slider__head-nav .button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.slider__head-nav .button:hover:not(:disabled) {
    background: #f5f5f5;
    border-color: #999;
}

.slider__head-nav .button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider__head-nav .button .q-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider__head-nav .button .q-icon svg {
    width: 20px;
    height: 20px;
    fill: #333;
}

/* Контейнер слайдера с горизонтальным скроллом */
.slider-content {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* для плавного скролла на мобильных */
    scrollbar-width: thin; /* для Firefox */
    scrollbar-color: #888 #f1f1f1; /* для Firefox */
    padding-bottom: 20px; /* место для скроллбара */
    scroll-behavior: smooth;
}

/* Стилизация скроллбара для WebKit браузеров (Chrome, Safari, Edge) */
.slider-content::-webkit-scrollbar {
    height: 6px;
}

.slider-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.slider-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.slider-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.slider-content .swiper-wrapper {
    display: flex;
    gap: 16px;
    width: max-content; /* важное свойство для горизонтального скролла */
    padding: 0;
    margin: 0;
}

.slider-content .swiper-slide {
    width: 280px; /* фиксированная ширина карточки */
    flex-shrink: 0; /* запрещаем сжиматься */
    list-style: none;
}

/* Карточка */
.slider-content .recenty-card {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    transition: transform 0.2s ease;
}

.slider-content .recenty-card:hover {
    transform: translateY(-4px);
}

.slider-content .recenty-card__article {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Контейнер изображения */
.slider-content .recenty-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.slider-content .recenty-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Заголовок карточки */
.slider-content .recenty-card__title {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding: 0 4px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .slider__title {
        font-size: 24px !important;
    }

    .slider-content .swiper-slide {
        width: 220px; /* чуть меньше на планшетах */
    }

    .slider-content .recenty-card__title {
        font-size: 14px;
    }

    .slider__head-nav .button {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .slider-content .swiper-slide {
        width: 160px; /* еще меньше на мобильных */
    }

    .slider-content .recenty-card__image {
        border-radius: 12px;
    }
}
/* End */


/* Start:/local/templates/main_b2c/components/bitrix/news.detail/journal/style.css?17883536242515*/
div.news-detail
{
	word-wrap: break-word;
}
div.news-detail img.detail_picture
{
	float:left;
	margin:0 8px 6px 1px;
}
.news-date-time
{
	color:#486DAA;
}

.journal-detail__main-body {
	color: #1C1B1D;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 140%;
}

.journal-detail__main-body :where(p, li, span, a, div) {
	color: inherit !important;
	font-family: inherit !important;
	font-size: inherit !important;
	font-weight: inherit;
	letter-spacing: inherit !important;
	line-height: inherit !important;
}

.journal-detail__main-body :where(b, strong, h1, h2, h3, h4, h5, h6),
.journal-detail__main-body :where(b, strong, h1, h2, h3, h4, h5, h6) * {
	color: inherit !important;
	font-family: inherit !important;
	font-size: inherit !important;
	font-weight: 700;
	letter-spacing: inherit !important;
	line-height: inherit !important;
}

.journal-detail__main-body img {
	border-radius: 25px;
	display: block;
	height: auto;
	margin-left: 0;
	margin-right: 0;
	width: 100%;
}

/* Ссылки в тексте статьи — фирменным цветом витрины.
   Своего стиля у них не было: редакторы красят ссылку спаном вокруг неё
   (`<span style="color: #8654cc"><a …>`), но у самой `a` цвет берётся из
   пользовательских стилей браузера, и покраска родителя до неё не доходит —
   в тексте оказывались обычные синие ссылки. Правило перекрывает и нормализацию
   `:where(… a …) { color: inherit }` выше, иначе ссылка сливается с текстом. */
.journal-detail__main-body a,
.journal-detail__main-body a:visited {
	color: var(--q-primary, #8654cc) !important;
	text-decoration: none;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	text-decoration-color: color-mix(in srgb, var(--q-primary, #8654cc) 40%, transparent);
	transition: color .2s ease, text-decoration-color .2s ease;
}

.journal-detail__main-body a:hover,
.journal-detail__main-body a:focus-visible {
	color: var(--q-secondary, #9c68e5) !important;
	text-decoration-color: currentColor;
}

/* Ссылка-картинка: подчёркивание рисовалось бы отдельной чертой под блоком. */
.journal-detail__main-body a:has(> img) {
	text-decoration: none;
}

/* End */


/* Start:/local/templates/main_b2c/components/bitrix/news.list/journal_without_pagination/style.css?17854164013260*/
.journal-header-margin {
    margin-top: 70px;
}

.look-all {
    svg {
        width: 14px !important;
        height: 14px !important;
    }
    span {
        white-space: nowrap;
    }
}

/* Сетка журнала */
.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    /* max-width: 1200px; */
}

/* Карточка */
.journal-card {
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
    border-radius: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    overflow: hidden;
    background: #fff;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.journal-grid-mobile-line .journal-card {
    min-width: 300px;
}

.journal-card .journal-card__wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #f5f5f5;
}

/* Изображение */
.journal-card .journal-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.journal-card .journal-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Контентная часть */
.journal-card .journal-card__content {
    padding: clamp(1rem, 0.85rem + 0.75vw, 1.75rem);
    border-radius: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: var(--q-secondary-light);
    color: var(--q-dark);
    margin-top: -1.5rem;
}

.journal-card .journal-card__content-top {
    flex-grow: 1;
    margin-bottom: 16px;
}

/* Заголовок */
.journal-card .journal-card__title {
    font-size: clamp(1.5rem, 1.45rem + 0.25vw, 1.75rem);
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 8px 0;
    letter-spacing: -1%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

/* Описание */
.journal-card .journal-card__description {
    font-size: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 0.75rem !important;
}

/* Дата */
.journal-card .journal-card__date {
    font-size: 0.75rem;
    margin: 0;
    padding-top:  0.75rem;
}

.journal-bottom-mobile {
    display: none;
    justify-content: center;
    margin-top: 2rem;
}

/* Адаптивность */
@media (max-width: 900px) {
    .journal-grid:not(.journal-grid-mobile-line) {
        grid-template-columns: repeat(2, 1fr);
    }
    .journal-grid.journal-grid-mobile-line {
        overflow: auto;
    }
    .journal-card .journal-card__image {
        aspect-ratio: 1.5 / 1;
    }
}

@media (max-width: 768px) {
    .journal-heading .look-all-desktop {
        display: none;
    }
    .journal-bottom-mobile {
        display: flex;
    }
    .journal-heading {
        justify-content: center !important;
    }
    .journal-heading h2 {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .journal-grid:not(.journal-grid-mobile-line) {
        grid-template-columns: 1fr;
    }
}
/* End */


/* Start:/local/components/b2b/notification/templates/.default/style.css?17850059875175*/
.notification-container {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    width: 100%;
    padding: 16px;
}

/* Позиции */
.notification-container--top-right {
    top: 0;
    right: 0;
}

.notification-container--top-left {
    top: 0;
    left: 0;
}

.notification-container--bottom-right {
    bottom: 0;
    right: 0;
}

.notification-container--bottom-left {
    bottom: 0;
    left: 0;
}

.notification-container--top-center {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.notification-container--bottom-center {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Уведомление */
.notification {
    /* Базовый цвет — фирменный, per-site: --q-primary (B2B #2f8eed / B2C #8654cc),
       фолбэк на --b2b-primary и хардкод. Семантика для success/warning/error. */
    --n-primary: var(--q-primary, var(--b2b-primary, #2f8eed));
    --n-success: #23a26d;
    --n-warning: #ff9800;
    --n-error: #e53935;

    position: relative;
    padding: 16px 20px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    pointer-events: auto;
    overflow: hidden;
    min-width: 300px;
    width: 100%;
    /* Базовая (info/дефолт) подсветка — фирменный цвет */
    border-left: 4px solid var(--n-primary);
    transition: all 0.3s ease;
}

.notification--error {
    border-left-color: var(--n-error);
}

.notification--success {
    border-left-color: var(--n-success);
}

.notification--warning {
    border-left-color: var(--n-warning);
}

.notification--info {
    border-left-color: var(--n-primary);
}

.notification__icon {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    /* Дефолт — фирменный цвет */
    color: var(--n-primary);
    background: color-mix(in srgb, var(--n-primary) 12%, transparent);
}

.notification--error .notification__icon {
    color: var(--n-error);
    background: color-mix(in srgb, var(--n-error) 12%, transparent);
}

.notification--success .notification__icon {
    color: var(--n-success);
    background: color-mix(in srgb, var(--n-success) 12%, transparent);
}

.notification--warning .notification__icon {
    color: var(--n-warning);
    background: color-mix(in srgb, var(--n-warning) 12%, transparent);
}

.notification--info .notification__icon {
    color: var(--n-primary);
    background: color-mix(in srgb, var(--n-primary) 12%, transparent);
}

.notification__content {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    word-break: break-word;
}

.notification__close {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 0 5px;
    transition: all 0.2s;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.notification__close:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.05);
}

.notification__timer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.08);
}

.notification__timer-bar {
    height: 100%;
    width: 0;
    background: rgba(0, 0, 0, 0.15);
    animation: timer linear forwards;
}

/* Анимации */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scaleOut {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(0.8);
        opacity: 0;
    }
}

@keyframes timer {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

.notification--slide {
    animation: slideIn 0.3s ease forwards;
}

.notification--fade {
    animation: fadeIn 0.3s ease forwards;
}

.notification--scale {
    animation: scaleIn 0.3s ease forwards;
}

/* Адаптивность */
@media (max-width: 768px) {
    .notification-container {
        padding: 10px;
        max-width: 100%;
    }

    .notification {
        min-width: auto;
        padding: 12px 16px;
    }

    .notification-container--top-center,
    .notification-container--bottom-center {
        width: 100%;
    }
}
/* End */
/* /local/components/spll/journal.detail/templates/.default/style.css?17851505998480 */
/* /local/templates/main_b2c/css/slider.horizontal.css?17849029614303 */
/* /local/templates/main_b2c/components/bitrix/news.detail/journal/style.css?17883536242515 */
/* /local/templates/main_b2c/components/bitrix/news.list/journal_without_pagination/style.css?17854164013260 */
/* /local/components/b2b/notification/templates/.default/style.css?17850059875175 */
