

/* Start:/local/templates/.default/components/bitrix/breadcrumb/bread/style.css?1711447046585*/
.bx-breadcrumb {
	margin: 10px 0;
}
.bx-breadcrumb i {
	color: #b5bdc2;
	line-height: 13px;
	font-size: 12px;
	vertical-align: middle;
	margin-right: 5px;
}
.bx-breadcrumb .bx-breadcrumb-item {
	float: left;
	margin-bottom: 10px;
	white-space: nowrap;
	line-height: 13px;
	vertical-align: middle;
	margin-right: 10px;
}
.bx-breadcrumb .bx-breadcrumb-item span {
	font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 13px;
	white-space: normal;
}
.bx-breadcrumb .bx-breadcrumb-item a {border-bottom: none;}
.bx-breadcrumb .bx-breadcrumb-item a:hover {}

/* End */


/* Start:/local/templates/.default/components/bitrix/news/articles/bitrix/news.list/.default/style.css?17335134791635*/
.articles_list {
    display: flex;
    flex-wrap: wrap; /* Разрешает перенос строк */
    gap: 10px;
    padding-bottom: 50px;
}

.articles_list_image {
    max-width: 100px;
    width: 100%;
    order: 1; /* Изначально картинка первая */
}

.articles_list_image img {
  margin-top: 20px;
  width: 150px;
  height: 150px;
}

.articles_list_naming {
    width: calc(100% - 210px);
    padding: 10px 0px 15px 55px;
    order: 2; /* Изначально текст второй */
}

/* Адаптив для мобильных устройств */
@media (max-width: 768px) {
    .articles_list {
        flex-direction: column; /* Вертикальное расположение */
        align-items: center; /* Центрирование блоков */
    }

    .articles_list_image, .articles_list_naming {
        width: 100%; /* Блоки занимают всю ширину */
        order: unset; /* Убираем порядок для естественного расположения */
        padding: 10px 0; /* Обновляем отступы для мобильных */
    }
	
.articles_list_image {
    max-width: 150px;
}
}


.articles_list_naming a {
  outline: none;
  text-decoration: none;
}

.articles_list_naming a:link {
  color: #1D1D1F;
}

.articles_list_naming a:visited {
  color: #1D1D1F;
}

.articles_list_naming a:focus {
  border-bottom: 1px solid;
}


.articles_list_naming a:hover {
  border-bottom: 1px solid;
}

.articles_list_naming a:active {
  color: #1D1D1F;
}

div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}

/* End */


/* Start:/local/templates/.default/components/bitrix/system.pagenavigation/articles_europagin/style.css?17336050503497*/
.articles_block {
    display: flex; /* Используем flexbox */
    position: relative; /* Для абсолютного позиционирования центрального блока */
    height: 100px; /* Высота контейнера для наглядности */
    align-items: center; /* Центрируем элементы по вертикали */
}



.articles_pagination_numbers{
    position: absolute; /* Абсолютное позиционирование */
    left: 50%; /* Сдвигаем в центр по горизонтали */
    transform: translateX(-50%); /* Корректируем смещение, чтобы блок был по центру */
    padding: 10px;
    text-align: center; /* Выравнивание текста внутри блока */
    min-width: 200px; /* Минимальная ширина центрального блока */
}

.articles_pagination{
    min-width: 150px; /* Минимальная ширина левого блока */
    padding-left: 190px;
    text-align: left; /* Выравнивание текста внутри блока */
    font-size: 18px;
    font-weight: 300;
}

.articles_numbers_nui{
    display: flex;
    align-items: center;
}

.articles_numbers_nui ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 20px;
}
.articles_numbers_nui li {
    list-style: none;
    font-size: 18px;
    font-weight: 300;
    margin: 0 10px;
}

.articles_numbers_nui li a {
    color: #000;
    transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}

.articles_numbers_nui li a:hover {
    color: #000;
    transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}

.articles_paginator_right {
    border-radius: 2px;
    background: url(/local/templates/main/css/../img/arr-r-goods.png) center center no-repeat #1d1d1f;
    width: 35px;
    height: 30px;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}

.articles_paginator_right:hover {
    border: 1px solid #000000;
    background: url(/local/templates/main/css/../img/arr-r-goods_b.png) center center no-repeat #1d1d1f;
    background-color: #FFF;
    color: #000;
    transition: all 0.3s cubic-bezier(0.4, 0, 1, 1) 0s; 
}

.articles_paginator_left {
    border-radius: 2px;
    background: url(/local/templates/main/css/../img/arr-l-goods.png) center no-repeat #1d1d1f;
    width: 35px;
    height: 30px;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}

.articles_paginator_left:hover {
    border: 1px solid #000000;
    background: url(/local/templates/main/css/../img/arr-l-goods_b.png) center no-repeat #1d1d1f;
    background-color: #FFF;
    color: #000;
    transition: all 0.3s cubic-bezier(0.4, 0, 1, 1) 0s; 
}

@media (max-width: 999px) {
    .articles_block {
        display: block;
    }
}

@media (max-width: 999px) {
    .articles_pagination {    
        min-width: 150px;
        padding-left: 0px;
        text-align: center;
        font-size: 18px;
 }
}
/* End */
/* /local/templates/.default/components/bitrix/breadcrumb/bread/style.css?1711447046585 */
/* /local/templates/.default/components/bitrix/news/articles/bitrix/news.list/.default/style.css?17335134791635 */
/* /local/templates/.default/components/bitrix/system.pagenavigation/articles_europagin/style.css?17336050503497 */
