

/* Start:/local/templates/aspro-allcorp3medc/components/bitrix/news/alphabetical/bitrix/news.list/.default/style.css?17659464706532*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

:root {
	--primary-color: #00b3a7;
	--text-color: #999;
	--border-color: #e0e0e0;
	--hover-bg: #f5f5f5;
}

.right_block  {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--text-color);
}

/* Стили для вкладок */
.a-tabs ul {
	display: flex;
	list-style: none;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 32px;
	gap: 24px;
	padding: 0;
}

.a-tabs li {
	position: relative;
	padding: 19px 0;
	cursor: pointer;
	transition: all 0.2s ease;
	margin-bottom: 0;
}

.a-tabs li::before {
	display: none;
}

.a-tabs li.active a {
	color: #23BABF;
}

.a-tabs li.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: var(--primary-color);
}

.a-tabs a {
	text-decoration: none;
	color: inherit;
	display: block;
	font-size: 16px;
	line-height: 21px;
	font-weight: 700;
	color: black;
}

.a-tabs li:not(.active):hover a {
	color: #23BABF;
}

/* Стили для алфавитного указателя */
.letters {
	margin-bottom: 32px;
	padding: 0 0 8px 0;
	border-bottom: 1px solid var(--border-color);
}
.letters .row {
	margin-bottom: 8px;
}

.char-filter {
	display: inline-flex;
	width: 32px;
	height: 32px;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	color: black;
}

.char-filter:hover,
.char-filter.active {
	color: #333;
	background-color: rgba(0, 179, 167, 0.1);
	border-radius: 4px;
}

.letters span {
	display: inline-flex;
	width: 32px;
	height: 32px;
	justify-content: center;
	align-items: center;
	opacity: 0.3;
}

/* Стили для блоков с продуктами */
.chars {

}

.char-block {
	margin-bottom: 32px;
}

.char {
	font-size: 24px;
	margin-bottom: 16px;
	color: #999;
	font-weight: 700;
	line-height: 32px;
}

.items {
	display: flex;
	flex-wrap: wrap;
	column-gap: 40px;
	row-gap: 16px;
}

.col {
	flex: 0 0 calc(25% - 30px);
	min-width: calc(25% - 30px);
}

.col a {
	display: block;
	text-decoration: none;
	color: black;
	position: relative;
	font-size: 14px;
	line-height: 20px;
	font-weight: 300;
	padding-left: 12px;
}

.col a::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background-color: #3FC2CD;
    position: absolute;
    left: 0;
    top: 8px;
	border-radius: 50%;
}

.col a:hover {
	text-decoration: #3FC2CD underline;
}

/* Адаптивность */
@media (max-width: 768px) {
	.a-tabs ul {
		flex-direction: column;
		margin-bottom: 24px;
		border: none;
		gap: 16px;
	}

	.a-tabs li {
		width: 100%;
		padding: 10px 0;
	}

	.col {
		flex: 0 0 100%;
		min-width: 100%;
		max-width: 100%;
	}
}

/* Мобильная версия буквенного фильтра (только до 767px) */
@media (max-width: 767px) {
    /* Изначальное состояние - не фиксировано */
    .mobile-letters-filter {
        position: relative;
        margin-bottom: 20px;
		width: 100vw;
		margin-left: -24px;
    }
    
    .letters-container {
        position: relative;
        background: #fff;
    }
    
    /* Фиксированное состояние при прокрутке */
    .letters-container.fixed {
        position: fixed;
        top: 0; /* Будет меняться через JS в зависимости от высоты шапки */
        left: 0;
        width: 100%;
        z-index: 999;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            transform: translateY(-10px);
            opacity: 0.9;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .letters-toggle {
        display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 18px 24px;
		background: #F8F8F8;
		border-top: 1px solid #E5E5E5;
		cursor: pointer;
		user-select: none;
		transition: background-color 0.2s ease;
		border-bottom: 1px solid #E5E5E5;
    }
    
    .letters-toggle:hover {
        background-color: #e9ecef;
    }
    
    .current-letter {
        font-size: 16px;
		font-weight: 600;
		line-height: 16px;
		color: black;
    }
    
    .mobile-arrow {
        transition: transform 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        color: #777;
    }
    
    .mobile-arrow svg {
        width: 14px;
        height: 9px;
        transition: transform 0.3s ease;
		color: black;
    }
    
    .mobile-arrow.up svg {
        transform: rotate(180deg);
    }
    
    .mobile-letters-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 62px - 58px);
        overflow-y: auto;
        background: #fff;
        border: 1px solid #ddd;
        border-top: none;
        z-index: 1001;
        padding: 10px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .mobile-letters-list.open {
        display: block;
    }
    
    .mobile-letter-row {
        padding: 0 24px;
    }
    
    .mobile-letter-filter {
        display: block;
		padding: 10px 0;
		margin: 0;
		text-decoration: none;
		color: #333;
		border-radius: 0 !important;
		font-size: 12px;
		transition: all 0.2s ease;
		line-height: 12px;
		width: 100%;
		height: auto;
		border-bottom: 1px solid #E5E5E5;
    }
    
    .mobile-letter-filter:hover,
    .mobile-letter-filter.active {
        color: #3FC2CD;
		background: no-repeat;
    }
    
    .mobile-letter-filter.disabled {
        color: #ccc;
        cursor: default;
        pointer-events: none;
    }
    
    /* Скрываем обычный блок букв на мобильной версии */
    .letters.desktop {
        display: none !important;
    }
    
    /* Отступ для контента, когда фильтр фиксирован */
    .content-with-fixed-filter {
        padding-top: 60px; /* Высота фиксированного фильтра */
    }
}

/* На десктопной версии скрываем мобильный фильтр */
@media (min-width: 768px) {
    .mobile-letters-filter {
        display: none !important;
    }
    
    .letters.desktop {
        display: block !important;
    }
}
/* End */
/* /local/templates/aspro-allcorp3medc/components/bitrix/news/alphabetical/bitrix/news.list/.default/style.css?17659464706532 */
