

/* Start:/local/templates/docs/components/bitrix/news/docs/bitrix/news.detail/.default/style.css?1779984497286*/
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;
}

.docs_detail_text img {
 max-width:100%;
}

.docs_detail_video {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
}
/* End */


/* Start:/local/components/refreshcomponents/docs_menu/templates/.default/style.css?17799567435084*/
/* Основные стили структуры */
.structure-navigation-area{
    width: 100%;
    background: #0041740a;
    height: 100%;
    padding-top: 50px;
}
.structure-navigation {
    width: 100%;
    overflow: hidden;
    position: sticky;
    top: 10px;
}

/* Заголовок */
.structure-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 24px;
}

.structure-title {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}

.structure-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 16px;
    border: 1px solid #e1e5e9;
}

.counter-number {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
}

.counter-text {
    font-size: 12px;
    color: #718096;
}

/* Контент */
.structure-content {
    padding: 0;
}

.structure-section-switcher{
    padding: 8px 24px 10px 24px;
}

.structure-section-select{
    width: 100%;
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 14px;
    color: #1f2937;
}

.structure-section-select:focus{
    outline: 2px solid #4299e1;
    outline-offset: 1px;
}

.structure-tree {
    display: flex;
    flex-direction: column;
}

/* Элементы структуры */
.structure-item {
    position: relative;
}

.structure-item:last-child {
    border-bottom: none;
}

.structure-item:hover {
    background-color: #f8f9fa;
}

.structure-item__content {
    display: flex;
    align-items: center;
    padding: 3px 24px;
}

/* Отступы по уровням вложенности */
.structure-item[data-depth="1"] .structure-item__content {
        padding-left: 35px;
}

.structure-item[data-depth="2"] .structure-item__content {
    padding-left: 64px;
}

.structure-item[data-depth="3"] .structure-item__content {
    padding-left: 84px;
}

.structure-item[data-depth="4"] .structure-item__content {
    padding-left: 104px;
}

.structure-item[data-depth="5"] .structure-item__content {
    padding-left: 124px;
}

/* Индикаторы (иконки) */
.structure-item__indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.structure-icon {
    transition: color 0.2s ease;
}

.structure-icon--folder {
    color: #4299e1;
}

.structure-icon--file {
    color: #718096;
}

.structure-item:hover .structure-icon--folder {
    color: #3182ce;
}

.structure-item:hover .structure-icon--file {
    color: #4a5568;
}

/* Информация об элементе */
.structure-item__info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.structure-item__name {
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.structure-item__name--section {
    font-weight: 500;
    color: #000000;
}

.structure-item__name--element {
    font-weight: 300;
    color: #414141;
}

.structure-item__name--element:hover {
    color: #4299e1;
}

/* Бейдж для разделов */
.structure-item__badge {
    font-size: 11px;
    font-weight: 500;
    color: #718096;
    background: #f1f3f4;
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: lowercase;
    flex-shrink: 0;
}

/* Состояние пустого списка */
.structure-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
}

.empty-icon {
    margin-bottom: 16px;
    opacity: 0.6;
}

.empty-text {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .structure-header {
        padding: 16px 20px;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .structure-title {
        font-size: 16px;
    }
    
    .structure-item__content {
        padding: 10px 20px;
    }
    
    .structure-item[data-depth="1"] .structure-item__content {
        padding-left: 40px;
    }
    
    .structure-item[data-depth="2"] .structure-item__content {
        padding-left: 60px;
    }
    
    .structure-item[data-depth="3"] .structure-item__content {
        padding-left: 80px;
    }
    
    .structure-item[data-depth="4"] .structure-item__content {
        padding-left: 100px;
    }
    
    .structure-item[data-depth="5"] .structure-item__content {
        padding-left: 120px;
    }
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.structure-item {
    animation: fadeIn 0.3s ease-out;
}

/* Фокус состояния для доступности */
.structure-item__name--element:focus {
    outline: 2px solid #4299e1;
    outline-offset: 2px;
    border-radius: 2px;
}
/* End */
/* /local/templates/docs/components/bitrix/news/docs/bitrix/news.detail/.default/style.css?1779984497286 */
/* /local/components/refreshcomponents/docs_menu/templates/.default/style.css?17799567435084 */
