

/* Start:/local/templates/fdplast/components/bitrix/catalog/catalog_prod/style.css?17790346591122*/
.grid{}
.grid .bx_content_section{
	margin-bottom: 15px;
}
.grid .bx_sidebar{
	margin-bottom: 15px;
}

/* grid2x1 */
.grid2x1{}
.grid2x1 .bx_content_section{
	float: left;
	width: 66%;
	margin-bottom: 15px;
}
.grid2x1 .bx_sidebar{
	float: right;
	width: 33%;
	margin-bottom: 15px;
	padding-left: 5%;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
@media (max-width:960px){
	.grid2x1 .bx_sidebar{
		padding-left: 4%;
	}
}
@media (max-width:640px) {
	.grid2x1 .bx_content_section,
	.grid2x1 .bx_sidebar{
		width: 100%;
		float: none;
	}
	.grid2x1 .bx_sidebar{
		padding-left: 3%;
	}
}
@media (max-width:479px){
	.grid2x1 .bx_sidebar{
		padding-left: 1%;
	}

}

.catalog-block-header{
	font-size:14px;
	font-weight: bold;
	text-align: left;
	margin:5px 0;
	padding:5px 15px;
	border-bottom: 2px solid #d9dee6;
	color: #000;
}

body.bx-theme-blue .catalog-block-header{border-color:#006cc0;}
body.bx-theme-green .catalog-block-header{border-color:#63aa28;}
body.bx-theme-red .catalog-block-header{border-color:#da3737;}
body.bx-theme-yellow .catalog-block-header{border-color:#f4b236;}

/* End */


/* Start:/local/templates/fdplast/components/bitrix/catalog.section.list/catalog_sub/style.css?17881822618629*/
/* ===== КАРУСЕЛЬ БРЕНДОВ ===== */

.brands-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0 40px;
    margin-bottom: 30px;
    min-height: 100px;
}

/* Прелоадер */
.brands-preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #E2E0F0;
    border-top: 4px solid #242C59;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Контейнер слайдера */
.brands-slider {
    margin: 0 -8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* ===== ВАЖНО: настройка слайдов для растягивания ===== */

/* Слайд - делаем flex контейнером */
.brand-slide {
    padding: 0 8px;
    outline: none;
    display: flex !important;
    align-items: stretch;
    height: auto !important; /* Автоматическая высота */
}

/* Контент внутри слайда - растягиваем на всю ширину */
.brand-slide > div {
    width: 100%;
    display: flex;
    align-items: stretch;
}

.brand-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1; /* Растягиваем на всю ширину */
    width: 100%;
    height: 80px;
    background: #F0EFF7;
    border: 1px solid #D8D6E8;
    border-radius: 10px;
    text-decoration: none;
    padding: 12px 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 80px;
    box-sizing: border-box;
}

.brand-name {
    font-size: 14px;
    font-weight: 500;
    color: #242C59;
    text-align: center;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

/* ===== СТИЛИ ДЛЯ SLICK ===== */

/* Кнопки навигации */
.brands-slider .slick-prev,
.brands-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 56px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(36, 44, 89, 0.12);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.brands-slider .slick-prev {
    left: -20px;
}

.brands-slider .slick-next {
    right: -20px;
}

.brands-slider .slick-prev:hover,
.brands-slider .slick-next:hover {
    background: #242C59;
    box-shadow: 0 4px 12px rgba(36, 44, 89, 0.3);
}

.brands-slider .slick-prev:active,
.brands-slider .slick-next:active {
    transform: translateY(-50%) scale(0.95);
}

.brands-slider .slick-prev:before,
.brands-slider .slick-next:before {
    display: none;
}

.brands-slider .slick-prev svg,
.brands-slider .slick-next svg {
    width: 24px;
    height: 24px;
    color: #242C59;
    transition: color 0.3s ease;
    display: block;
}

.brands-slider .slick-prev:hover svg,
.brands-slider .slick-next:hover svg {
    color: #ffffff;
}

/* Отключаем стандартные иконки Slick */
.brands-slider .slick-prev:before,
.brands-slider .slick-next:before {
    content: '';
    display: none;
}

/* Slick disabled */
.brands-slider .slick-prev.slick-disabled,
.brands-slider .slick-next.slick-disabled {
    opacity: 0.3 !important;
    cursor: default !important;
    pointer-events: none !important;
}

.brands-slider .slick-prev:not(.slick-disabled):hover,
.brands-slider .slick-next:not(.slick-disabled):hover {
    background: #242C59;
    box-shadow: 0 4px 12px rgba(36, 44, 89, 0.3);
}

.brands-slider .slick-prev:not(.slick-disabled):hover svg,
.brands-slider .slick-next:not(.slick-disabled):hover svg {
    color: #ffffff;
}

/* ===== ЕСЛИ ЭЛЕМЕНТОВ МАЛО - СЕТКА ===== */

.brands-slider.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0;
    opacity: 1 !important;
}

.brands-slider.brands-grid .brand-slide {
    flex: 1 1 calc(20% - 16px);
    min-width: calc(20% - 16px);
    padding: 0;
    display: flex;
    align-items: stretch;
}

.brands-slider.brands-grid .brand-link {
    height: 80px;
    flex: 1;
}

.brands-slider.brands-grid .brand-name {
    font-size: 13px;
}

/* ===== АДАПТИВ ===== */

@media (max-width: 992px) {
    .brands-carousel-wrapper {
        padding: 0 30px;
    }
    
    .brand-link {
        height: 72px;
        min-height: 72px;
    }
    
    .brand-name {
        font-size: 13px;
    }
    
    .brands-slider .slick-prev,
    .brands-slider .slick-next {
        width: 36px;
        height: 50px;
    }
    
    .brands-slider .slick-prev {
        left: -16px;
    }
    
    .brands-slider .slick-next {
        right: -16px;
    }
    
    .brands-slider .slick-prev svg,
    .brands-slider .slick-next svg {
        width: 20px;
        height: 20px;
    }
    
    .brands-slider.brands-grid .brand-slide {
        flex: 1 1 calc(25% - 16px);
        min-width: calc(25% - 16px);
    }
}

@media (max-width: 640px) {
    .brands-carousel-wrapper {
        padding: 0 20px;
        margin-bottom: 20px;
        min-height: 80px;
    }
    
    .brand-link {
        height: 64px;
        min-height: 64px;
        padding: 8px 12px;
        background: #F2F1F8;
    }
    
    .brand-name {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }
    
    .brands-slider .slick-prev,
    .brands-slider .slick-next {
        width: 30px;
        height: 40px;
        border-radius: 6px;
    }
    
    .brands-slider .slick-prev {
        left: -12px;
    }
    
    .brands-slider .slick-next {
        right: -12px;
    }
    
    .brands-slider .slick-prev svg,
    .brands-slider .slick-next svg {
        width: 18px;
        height: 18px;
    }
    
    .brands-slider.brands-grid .brand-slide {
        flex: 1 1 calc(50% - 16px);
        min-width: calc(50% - 16px);
    }
    
    .brands-slider.brands-grid {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .brands-carousel-wrapper {
        padding: 0 12px;
        min-height: 70px;
    }
    
    .brand-link {
        height: 56px;
        min-height: 56px;
        padding: 6px 10px;
        background: #F3F2F9;
        border-radius: 8px;
    }
    
    .brand-name {
        font-size: 11px;
        -webkit-line-clamp: 2;
    }
    
    .brands-slider .slick-prev,
    .brands-slider .slick-next {
        width: 26px;
        height: 34px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.9);
    }
    
    .brands-slider .slick-prev {
        left: -8px;
    }
    
    .brands-slider .slick-next {
        right: -8px;
    }
    
    .brands-slider .slick-prev svg,
    .brands-slider .slick-next svg {
        width: 16px;
        height: 16px;
    }
    
    .brands-slider.brands-grid .brand-slide {
        flex: 1 1 calc(50% - 8px);
        min-width: calc(50% - 8px);
    }
    
    .brands-slider.brands-grid {
        gap: 8px;
    }
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ SLICK ===== */

/* Отключаем стандартные стили Slick */
.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}

.slick-initialized .slick-slide {
    display: flex;
    align-items: stretch;
    height: auto !important;
}

/* Центрирование контента в слайде */
.slick-slide > div {
    width: 100%;
    display: flex;
    align-items: stretch;
}

/* Принудительное растягивание всех элементов в слайде */
.brands-slider .slick-slide {
    display: flex !important;
    align-items: stretch !important;
    height: auto !important;
}

.brands-slider .slick-slide > div {
    display: flex !important;
    align-items: stretch !important;
    width: 100% !important;
}

/* Убираем лишние отступы у пустых элементов */
.brands-slider .slick-slide:empty {
    display: none !important;
}

/* Скрываем стрелки на тач-устройствах если нужно */
@media (pointer: coarse) {
    .brands-slider .slick-prev,
    .brands-slider .slick-next {
        /* Можно оставить или скрыть - зависит от дизайна */
    }
}
/* End */


/* Start:/bitrix/components/bitrix/system.pagenavigation/templates/modern/style.min.css?1779034633675*/
div.modern-page-navigation{padding:.5em 0}div.modern-page-navigation a,span.modern-page-current,span.modern-page-dots{border-left-width:1px;border-left-style:solid;padding-left:.75em;padding-right:.5em;text-decoration:none}div.modern-page-navigation a.modern-page-previous{border-right-width:1px;border-right-style:solid;border-left:0}div.modern-page-navigation a.modern-page-first,div.modern-page-navigation span.modern-page-first{border-left:0;padding-left:.5em}span.modern-page-current{font-weight:var(--ui-font-weight-bold)}div.modern-page-navigation a,span.modern-page-current,div.modern-page-navigation a.modern-page-previous,span.modern-page-dots{border-color:#cdcdcd}
/* End */


/* Start:/local/templates/fdplast/components/bitrix/catalog.item/card/style.css?17790346593602*/
.bazarow_add_favor {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9;
  background: none;
  opacity: 0.5;
  border: none;
  padding: 0;
  filter: grayscale(100%);
}
.bazarow_add_favor svg {
  width: 20px;
  height: 20px;
}

.bazarow_add_favor.in-favor {
  opacity: 1;
  filter: grayscale(0%);
}

.card_item {
  margin-bottom: 30px;
  position: relative;
  height: 100%;
}
.card_item_link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: var(--c1);
  position: relative;
}
.card_item_link_picture {
  display: block;
  height: 250px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.card_item_link_discount {
  background: var(--c3);
  border-radius: 4px;
  padding: 2px 7px;
  text-align: center;
  color: #ffffff;
  font-size: 12px;
}
.card_item_link_name {
  display: block;
  height: 45px;
  margin-top: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  overflow: hidden;
  color: #666666;
  display: block !important;
}
.card_item_price {
  position: relative;
  margin-top: 20px;
  display: flex;
}
.card_item_price_current {
  font-size: 14px;
  font-weight: bold;
}
.card_item_price_old {
  position: absolute;
  top: -20px;
  color: #777;
  font-size: 12px;
}

.card_item_sku_title {
  font-size: 12px;
  color: #777777;
  margin: 10px 0px 4px 0px;
}
.card_item_sku ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}
.card_item_sku ul li {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    border-radius: 4px;
}

.card_item_sku ul li.selected {
  background: rgba(52, 78, 155, 1);
    color: #ffffff;
}
.card_item_sku_pict {
  padding: 5px;
}
.card_item_sku_pict span {
  display: block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.card_item_sku_text {
  font-size: 14px;
  padding: 5px 10px;
}

.card_item_activites {
  display: flex;
  position: relative;
  flex-wrap: wrap;

}
.card_item_activites_quntity {
  display: flex;
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}
.card_item_activites_quntity button {
  width: 25px;
  background: var(--c4);
  height: 25px;
  border: none;
  transition: var(--animation1);
  font-size: 14px;
  border-radius: 100%;
  position: relative;
  z-index: 5;
}
.card_item_activites_quntity button:hover {
  background: var(--c3);
  color: #ffffff;
}
.card_item_activites_quntity input {
  background: none;
  width: 50px;
  position: relative;

  height: 25px;
  border: none;
  text-align: center;
  font-size: 13px;
}
.card_item_activites_btns {
  width: 100%;
}
.card_item_activites_btns button {
  width: 100%;
  border: none;
  font-size: 12px;
  margin-top: 10px;
}

.card_item {
  position: relative;
  /*height: 376px !important;*/
    margin-bottom: 20px;
}
.card_item_sku{
    min-height: 100px;
}
.card_item_hidded {
  display: none;
  z-index: 10;
}

.card_item_over_hover {
  position: relative;
  padding: 15px;
  background: #fff;
  border: 1px var(--c4) solid;
  border-radius: var(--radius1);
  transition: var(--animation1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card_item_over_hover:hover {
  z-index: 10;
  box-shadow: var(--shadow1);
}
.card_item_over_hover:hover .card_item_hidded {
  height: auto;
  display: block;
}
.card_item_over_hover:hover .card_item_link_name {
  color: var(--c3);
}

/*# sourceMappingURL=style.scss.map */
.esv_list_item{
  width: 100%;
  border: none;
  box-shadow:none!important;
}
/* End */


/* Start:/bitrix/components/bitrix/catalog.product.subscribe/templates/.default/style.min.css?17790346321413*/
.bx-catalog-subscribe-button{margin-bottom:6px;display:inline-block}.bx-catalog-popup-content{width:90%;max-width:280px}.bx-catalog-subscribe-form-container-label{font-size:13px;color:#5a6c77;padding-bottom:2px}.bx-catalog-subscribe-form-container-input{position:relative}.bx-catalog-subscribe-form-container-input input[type="text"]{display:block;width:100%;font-size:18px;height:38px;margin:0;padding:0 4px;border:1px solid #ccd5db;border-radius:2px;background:#f8fafc;outline:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bx-catalog-subscribe-form-star-required{color:#d93333}.bx-catalog-subscribe-form-container .bx-captcha{margin-bottom:10px}.bx-catalog-popup-message{font-weight:bold;min-width:240px;margin:0}.bx-catalog-subscribe-alert{background-color:#edf6fc;color:#000;font-size:15px;min-height:45px;text-align:center;padding:12px 40px 12px 60px;position:relative;width:280px}.bx-catalog-subscribe-aligner{display:inline-block;height:45px;margin-left:-1px;vertical-align:middle;width:1px}.bx-catalog-subscribe-alert-text{display:inline-block;vertical-align:middle}.bx-catalog-subscribe-alert-footer{text-align:center}.bx-catalog-subscribe-alert-popup{background-color:#edf6fc!important;border:1px solid #edf6fc!important;border-radius:3px!important;-webkit-box-shadow:0 19px 24px rgba(88,112,118,0.17)!important;box-shadow:0 19px 24px rgba(88,112,118,0.17)!important}
/* End */


/* Start:/local/components/esrever/offers.table/templates/.default/style.css?17881625257320*/
/* Основные стили для контейнера */
.product-main-container {
    display: flex;
    align-items: stretch;
    gap: 30px;

    width: 100%;
    box-sizing: border-box;
}

/* Контейнер для изображения */
.product-image-container {
    flex-shrink: 0;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center; /* Вертикальное центрирование */
    min-height: 200px; /* Минимальная высота, если таблица маленькая */
}

/* Стили для изображения */
.product-tech-image {
    width: 100%;
    height: auto;
    max-width: 280px;
    max-height: 100%; /* Не выходит за контейнер */
    object-fit: contain;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
}

/* Обертка для таблицы и кастомного скролла */
.product-table-wrapper {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    position: relative;
}

/* Контейнер с прокруткой */
.product-table-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Скрываем стандартный скролл в Firefox */
    -ms-overflow-style: none; /* Скрываем стандартный скролл в IE/Edge */
}

/* Скрываем стандартный скролл в Chrome/Safari */
.product-table-scroll-container::-webkit-scrollbar {
    display: none;
}

/* Контейнер для таблицы */
.product-table-container {
    width: 100%;
}

/* Стили для таблицы */
.product-offers-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #E3E3E3;
    table-layout: auto;
}

.product-offers-table th,
.product-offers-table td {
    border: 1px solid #E3E3E3;
    padding: 8px;
    text-align: center;
    white-space: nowrap;
}

.product-offers-table th:first-child,
.product-offers-table td:first-child {
    min-width: 80px;
}

.product-offers-table th:last-child,
.product-offers-table td:last-child {
    min-width: 120px;
    white-space: normal;
}

/* Стили для заголовка */
.product-table-title {
    text-align: center;
    width: 100%;
}

.table-title-product-page {
    width: 100% !important;
    margin-bottom: 0;
    font-size: 16px !important;
    padding: 12px;
    background: rgba(36, 44, 89, 1);
    color: rgba(226, 230, 252, 1) !important;
}

.product-offers-table th {
    background-color: #f8f8f8;
    font-weight: 600;
}

/* Стили для блока управления количеством */
.quantity-control {
    display: flex;
    align-items: center;
    border: 1.5px solid #bbb;
    border-radius: 6px;
    width: 110px;
    height: 38px;
    background-color: #fff;
    user-select: none;
    font-size: 14px;
}

.quantity-minus,
.quantity-plus {
    cursor: pointer;
    background: none;
    border: none;
    color: #222;
    font-size: 18px;
    font-weight: 500;
    padding: 0 10px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.quantity-minus:hover,
.quantity-plus:hover {
    color: #000;
    background-color: #f5f5f5;
}

.quantity-input-wrapper {
    flex: 1;
    text-align: center;
}

.btn, input[type=text] {
    padding: 0!important;
    height: 44px;
}

.quantity-input {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 14px;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

/* Стили для кнопки заказа */
.add-to-basket-btn {
    width: 100%;
    padding: 4px 10px;
    background: rgba(96, 159, 33, 1);
    border-radius: 2px;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-weight: 550;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.add-to-basket-btn:hover {
    background: rgba(76, 139, 13, 1);
}

.add-to-basket-btn svg {
    vertical-align: middle;
    margin-right: 6px;
}

/* Сообщение об отсутствии предложений */
.no-offers-message {
    padding: 20px;
    border: 1px solid #e3e3e3;
    background-color: #f9f9f9;
    color: #666;
}

/* Кастомный скроллбар - как кольцо Юпитера */
.custom-scrollbar {
    width: 100%;
    height: 30px; /* Увеличиваем высоту для кольца */
    margin-top: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-scrollbar-track {
    width: 100%;
    height: 2px; /* Тонкая синяя полоска */
    background-color: #0000FF; /* Синий цвет для дорожки */
    position: relative;
    border-radius: 1px;
}

.custom-scrollbar-thumb {
    position: absolute;
    width: 8px; /* Точка 8px */
    height: 8px;
    background-color: #969ECB; /* Цвет точки */
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* Центрируем по горизонтали и вертикали */
    cursor: default; /* Обычный курсор, не указывает на возможность перетаскивания */
    z-index: 10;
    box-shadow: 0 0 0 5px rgb(243 245 254); /* Красное кольцо с промежутком 5px */
    transition: box-shadow 0.2s ease;
    pointer-events: none; /* Точка не реагирует на события мыши */
}

/* Эффект свечения для кольца (опционально) */
.custom-scrollbar-thumb {
    animation: ringPulse 2s infinite ease-in-out;
}

@keyframes ringPulse {
    0% {
        box-shadow: 0 0 0 5px rgb(171, 173, 179);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(243, 245, 254, 0.6);
    }
    100% {
        box-shadow: 0 0 0 5px rgb(243, 245, 254);
    }
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .product-offers-table th{
        background: #242C59;
        color: white;
    }
    .product-main-container {
        flex-direction: column;
        align-items: center;
    }

    .product-image-container {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .product-table-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .product-offers-table {
        min-width: 600px;
    }

    .product-offers-table th,
    .product-offers-table td {
        white-space: nowrap;
    }

    /* Адаптируем кольцо для мобильных */
    .custom-scrollbar {
        height: 40px;
    }

    .custom-scrollbar-thumb {
        width: 10px; /* Немного больше на мобильных */
        height: 10px;
        box-shadow: 0 0 0 6px #FF0000; /* Увеличиваем кольцо */
    }
}


/* End */
/* /local/templates/fdplast/components/bitrix/catalog/catalog_prod/style.css?17790346591122 */
/* /local/templates/fdplast/components/bitrix/catalog.section.list/catalog_sub/style.css?17881822618629 */
/* /bitrix/components/bitrix/system.pagenavigation/templates/modern/style.min.css?1779034633675 */
/* /local/templates/fdplast/components/bitrix/catalog.item/card/style.css?17790346593602 */
/* /bitrix/components/bitrix/catalog.product.subscribe/templates/.default/style.min.css?17790346321413 */
/* /local/components/esrever/offers.table/templates/.default/style.css?17881625257320 */
