

/* Start:/bitrix/components/bitrix/system.pagenavigation/templates/visual/style.min.css?17696911333386*/
.bx_pagination_bottom *{vertical-align:baseline}.bx_pagination_bottom{color:#8d8d8d;font-size:11px}.bx_pagination_bottom .bx_pagination_section_two{float:right;text-align:right}.bx_pagination_bottom .bx_pg_section{display:inline-block;height:30px;vertical-align:top;line-height:30px}.bx_pagination_bottom .bx_pagination_select_container{display:inline-block}.bx_pagination_bottom .bx_pagination_select_container select{position:relative;margin:2px 20px 2px 10px;padding:1px 25px 3px 5px;height:22px;outline:0;border:1px solid #e0e0e0;border-radius:1px;background:#fff url(/bitrix/components/bitrix/system.pagenavigation/templates/visual/images/select_arrow.png) no-repeat right center;color:#8d8d8d;font-size:11px;line-height:16px;resize:none;-webkit-appearance:none}@-moz-document url-prefix(){.bx_pagination_bottom .bx_pagination_select_container select{background:#fff!important;padding-right:5px}}.bx_pagination_bottom .bx_pagination_page{white-space:nowrap;font-size:12px}.bx_pagination_bottom .bx_pagination_page ul{display:inline-block;margin:0;padding:0}.bx_pagination_bottom .bx_pagination_page li{display:inline-block;min-width:22px;color:#8d8d8d;text-align:center;line-height:22px}.bx_pagination_bottom .bx_pagination_page li a{display:block;min-width:22px;color:#8d8d8d;text-align:center;text-decoration:none;line-height:22px}.bx_pagination_bottom .bx_pagination_page li a:hover{color:#555}.bx_pagination_bottom .bx_pagination_page li.bx_active{border-radius:3px;background:#dbecf4;box-shadow:inset 0 2px 2px 0 rgba(0,0,0,.1)}.bx_pagination_bottom .bx_pg_section.bx_pg_pagination_num{display:block}.bx_pagination_bottom .bx_pg_section.bx_pg_show_col select{margin-right:5px}.bx_pagination_bottom .bx_wsnw{white-space:nowrap}@media(min-width:480px) and (max-width:639px){.bx_pagination_bottom .bx_pagination_select_container select{margin-right:10px}}@media(max-width:479px){.bx_pagination_bottom .bx_pagination_section_two{float:none;text-align:left}.bx_pagination_bottom .bx_pagination_select_container{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:47%}.bx_pagination_bottom .bx_pagination_select_container select{display:block;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin-right:0!important;width:90%}.bx_pagination_bottom .bx_pg_section{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;text-align:left}.bx_pagination_bottom .bx_pagination_page{white-space:normal}.bx_pagination_bottom .bx_pg_section.bx_pg_pagination_num{width:100%;height:auto;text-align:center}.bx_pagination_bottom .bx_pg_section.bx_pg_show_col{display:none}.bx_pagination_bottom .bx_pg_text{display:inline-block;width:50%}.bx_pagination_bottom .bx_pg_section.pg_pagination_num .bx_pg_text{display:none}}.bx_pagination_bottom .bx_pagination_section_one,.bx_pagination_bottom .bx_pagination_section_two,.bx_pagination_bottom .bx_pagination_select_container,.bx_pagination_bottom .bx_pagination_select_container select,.bx_pagination_bottom .bx_pg_section,.bx_pagination_bottom .bx_pagination_page,.bx_pagination_bottom .bx_pg_section.bx_pg_pagination_num,.bx_pagination_bottom .bx_pg_section.bx_pg_show_col,.bx_pagination_bottom .bx_pg_text,.bx_pagination_bottom .bx_pg_section.pg_pagination_num .bx_pg_text{-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}
/* End */


/* Start:/local/templates/aspro-allcorp/components/bitrix/news.list/raskritie_list/style.css?17696911074160*/
/* Стили для табов годов */
.years-tabs-container {
    margin-bottom: 25px;
    border-bottom: 2px solid #e9ecef;
}

.years-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.year-tab {
    padding: 10px 25px;
    background: #006cc5;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 15px;
    text-decoration: none;
    font-family: inherit;
}

.year-tab:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0,108,197,0.25);
}

.year-tab.active {
    background-color: #f15a2a;
    background-image: -webkit-linear-gradient(top, #f47426, #da831a);
    background-image: linear-gradient(to bottom, #f47426, #da831a);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(241, 90, 42, 0.35);
}

.year-tab-content {
    display: none;
}

.year-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .years-tabs {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .year-tab {
        width: 180px;
        text-align: center;
        padding: 8px 20px;
    }
}

/* Стили для контента */
.year-section {
    margin-bottom: 30px;
}

.year-header {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #007bff;
}

.info-block {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 18px;
    margin-bottom: 16px;
    transition: all 0.25s ease;
}

.info-block:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.news-title {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.info-block .date {
    font-weight: bold;
    color: #007bff;
    margin-bottom: 12px;
    font-size: 14px;
    background: #e3f2fd;
    padding: 6px 10px;
    border-radius: 4px;
    display: inline-block;
}

.preview-text {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: #fff;
    border-left: 3px solid #6c757d;
    border-radius: 4px;
    line-height: 1.5;
}

.detail-text {
    margin: 16px 0;
    line-height: 1.6;
    color: #495057;
    padding: 14px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

.document-list {
    margin: 12px 0;
}

.document-item {
    margin: 5px 0;
    padding: 8px 12px;
    background: white;
    border-radius: 4px;
    border-left: 3px solid #007bff;
    transition: all 0.2s ease;
}

.document-item:hover {
    background: #f1f8ff;
    transform: translateX(2px);
}

.document-item a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
    display: block;
    line-height: 1.4;
}

.document-item a:hover {
    color: #003d7a;
    text-decoration: underline;
}

.additional-text, .final-text {
    margin: 12px 0;
    line-height: 1.6;
    color: #495057;
    padding: 10px 12px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.btn-primary {
    display: inline-block;
    padding: 10px 25px;
    background: #006cc5;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0,108,197,0.25);
}

/* Убираем лишние отступы для лучшей читаемости */
.info-block > *:first-child {
    margin-top: 0;
}

.info-block > *:last-child {
    margin-bottom: 0;
}

.document-list > *:first-child {
    margin-top: 0;
}

.document-list > *:last-child {
    margin-bottom: 0;
}
/* End */
/* /bitrix/components/bitrix/system.pagenavigation/templates/visual/style.min.css?17696911333386 */
/* /local/templates/aspro-allcorp/components/bitrix/news.list/raskritie_list/style.css?17696911074160 */
