

/* Start:/local/templates/khabmed/assets/css/page/college-history.css?17707811708520*/
.persons__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.history__content-columns {
    display: flex;
    gap: 24px;
}

.history__content-columns--reverse {
    flex-direction: row-reverse;
}

.history__content-column {
    max-width: 450px;
}

.history__content-column--img {
    max-width: 1400px;
    width: 100%;
}

.history__content-column--video {
    border-radius: 24px;
    background-color: #E5E8F2;
    max-width: 1000px;
    width: 100%;
    overflow: hidden;
}

.history__content-column--video video {
    width: 100%;
    height: 100%;
}

.history__content-column--img img {
    border-radius: 24px;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: top;
}

.history__content-slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
}

.history__content-slider .swiper-wrapper {
    margin-bottom: 20px;
}

.history__content-slider .swiper-slide {
    padding: 0 24px;
}

.history__slider-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.history__slider-tools .slider__navigation-wrap {
    z-index: 1;
    display: flex;
    gap: 12px;
    position: relative;
    top: initial;
    right: initial;
    bottom: 0;
    transform: translateY(0);
}

.history__content-slider .count-pagination {

}

.history__content-slider .banners__navigation-btn {
    background-color: #fff;
}

.history__person-main-info {
    background: #F9FAFFB2;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
    border-radius: 24px;
    line-height: 1.15;
}

.history__person-main-info h3 {
    margin: 0;
    font-size: 28px;
}

.history__person-main-info div {
    font-size: 14px;
}

.history-more__item {
    border-radius: 24px;
    background: #F9FAFFB2;
    padding: 16px;
    position: relative;
}

.history-more__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.history-more__title {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.history-more__toggle {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    outline: none;
    position: relative;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.history-more__toggle::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--corp-color);
    border-bottom: 2px solid var(--corp-color);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -5px;
    margin-top: -5px;
}

.history-more__content {
    max-height: 0;
    overflow: hidden;
    margin-top: 8px;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.history-more__content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.history-more__content li {
    margin-bottom: 10px;
}

.history-more__content li:last-child {
    margin-bottom: 0px;
}

.history-more__item--open .history-more__content {
    max-height: 500px;
    opacity: 1;
}

.history-more__item--open .history-more__toggle {
    transform: rotate(180deg);
}

.history-timeline__slider {
    overflow: hidden;
}

.history-timeline__slide {
    border-radius: 24px;
    background-color: var(--block-bg);
    padding: 42px;
    display: flex !important;
    gap: 20px;
    max-width: 700px;
    height: 310px !important;
}

.history-timeline__slide-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
}

.history-timeline__slide-date {
    align-self: flex-end;
    color: #5E5E5E;
    font-weight: 700;
    font-size: 12px;
}

.history-timeline__slide:nth-child(2), .history-timeline__slide:nth-child(3) {
    max-width: 320px;
}

.history-timeline__slide:nth-child(4) {
    max-width: 450px;
}

.history-timeline__slide:nth-child(5) {
    max-width: 910px;
}

.history-timeline__slide:nth-child(6) {
    max-width: 620px;
}

.history-timeline__slide:nth-child(7) {
    max-width: 740px;
}

.history-timeline__nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
    margin-top: 20px;
}

.history-timeline__nav-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 24px;
    font-weight: 600;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s;
    color: #ABACAE;
}

.history-timeline__nav-btn::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    right: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    transition: all 0.3s;

    background-color: #ABACAE;
}


.history-timeline__nav-btn.active {
    color: #1E1E1E;
}

.history-timeline__nav-btn.active::before {
    background-color: var(--corp-color);
}

.history-create__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.history-create__img-wrapper {
    max-width: 740px;
    max-height: 400px;
    position: relative;
}

.history-create__img-wrapper img {
    object-fit: cover;
    border-radius: 24px;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: all 0.3s;
}

.history-create__img-wrapper img.active {
    opacity: 1;
}

.history-create__slider {
    overflow: hidden;
    padding-bottom: 45px;
    position: relative;
}

.history-create__slide {
    /*max-width: 580px;*/
}


/*Блок с интерактивном слайдером для изображения*/
#comparison {
    width: 100%;
    height: 60vw;
    max-height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#divisor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/local/templates/khabmed/assets/css/page/../../img/pages/college-history/history-memory-left.jpg");
    background-size: cover;
    background-position: center;
    border-right: 5px solid white;
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
    clip-path: inset(0 50% 0 0);
    /*transition: clip-path 0.05s ease;*/
}

.comparison-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#sliderSvg {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    cursor: grab;
}

input[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    top: 0;
    background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: grab;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]:active {
    outline: none;
}

input[type=range]::active {
    border: none;
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 400px;
    background: #fff;
    border-radius: 0;
}

input[type=range]::-moz-range-thumb {
    -moz-appearance: none;
    width: 20px;
    height: 15px;
    background: #fff;
    border-radius: 0;
}

@media screen and (max-width: 900px) {
    .history-create__content {
        grid-template-columns: 1fr;
    }

    .history-create__img-wrapper {
        min-height: 350px;
    }

    .history__slider-tools .banners__navigation-btn {
        display: flex;
    }

    .history-timeline__nav svg {
        display: none;
    }

    .history-timeline__nav-btn {
        display: none;
    }

    .history-timeline__nav-btn.active {
        display: block;
    }

    .history-timeline__slide {
        height: auto !important;
        align-items: center;
    }

    .history-timeline__slide img {
        object-fit: contain;
        max-width: 200px;
    }

    .history__content-column {
        max-width: initial;
    }


    .history__content-columns {
        flex-direction: column;
    }

}
/* End */


/* Start:/local/templates/khabmed/components/bitrix/news.list/persons_list/style.css?1770781166150*/
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;
}

/* End */
/* /local/templates/khabmed/assets/css/page/college-history.css?17707811708520 */
/* /local/templates/khabmed/components/bitrix/news.list/persons_list/style.css?1770781166150 */
