

/* Start:/local/templates/decom/components/bitrix/news.detail/decom-title-from-event/style.css?1779795074331*/
.full-page-title {
    margin: 0;
    padding: 37px 0;
    font-weight: 400;
    font-size: 44px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.113;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: "Dusha V5", sans-serif;
}
/* End */


/* Start:/local/templates/decom/components/bitrix/breadcrumb/.default/style.css?1770818712380*/
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding: 20px 0;
}
.breadcrumb i {
	color: #b5bdc2;
	line-height: 13px;
	font-size: 12px;
	/* margin-right: 5px; */
}
.breadcrumb__item {
	white-space: nowrap;
	line-height: 13px;
	/* margin-right: 10px; */
}
.breadcrumb__item span, .breadcrumb__item a {
	font-size: 16px;
	white-space: normal;
}

/* End */


/* Start:/local/templates/decom/components/bitrix/news.list/decom-schedule/style.css?17739198735336*/
:root {
    --border-color: #5b5c5a;
    --col-extra-small: 100px;
    --col-small: 145px;
    --col-medium: 200px;
}
@media (max-width: 1198.99px) {
    :root {
        --col-extra-small: 80px;
        --col-medium: 150px;
    }
}
@media (max-width: 991.99px) {
    :root {
        --col-extra-small: 50px;
        --col-small: 120px;
    }
}

.schedule-container {
    /* padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px; */
}

@media (max-width: 767.99px) {
    .schedule-container {
        display: none;
    }
}

.schedule-block {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.schedule-block--info,
.schedule-block--forum {
    background: linear-gradient(180deg, #fefefe 0, #dbece0 100%);
}

.schedule-block--club {
    background: linear-gradient(180deg, #fcfdfe 0, #c4e6f0 100%);
}

.schedule-block--tournament {
    background: linear-gradient(180deg, #fcfdfe 0, #e1cec0 100%);
}

/* Header */
.schedule-header {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background: #f7f7f7;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
}
@media (max-width: 991.99px) {
    .schedule-header {
        padding: 10px;
        font-size: 14px;
    }
}

/* Grid Таблица */
.schedule-grid {
    display: grid;
}
.schedule-block--info .schedule-grid {
    grid-template-columns: var(--col-small) 1fr;

}
.schedule-block--tournament .schedule-grid {
    grid-template-columns: var(--col-small) 1fr;

}
.schedule-block--forum .schedule-grid {
    grid-template-columns: var(--col-small) 1fr var(--col-medium) var(--col-extra-small);

}
.schedule-block--club .schedule-grid {
    grid-template-columns: var(--col-small) var(--col-extra-small) 1fr var(--col-medium) var(--col-medium) var(--col-extra-small);

}
.schedule-block--club-5 .schedule-grid {
    grid-template-columns: var(--col-small) var(--col-extra-small) 1fr var(--col-medium) var(--col-medium);

}

.schedule-row {
    display: contents; /* Чтобы колонки были внутри grid */
    border-bottom: 1px solid var(--border-color);
}

.schedule-row:last-child {
    border-bottom: none;
}

.coll {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}
@media (max-width: 991.99px) {
    .coll {
        padding: 10px;
    }
}

.schedule-row:first-child .coll {
    border-top: none;
}
.coll:last-child {
    border-right: none;
}


.time {
    /* width: var(--col-small); */
    flex-shrink: 0;
}
@media (max-width: 991.99px) {
    .time {
        font-size: 12px;
    }
}

.name {
    flex: 1;
}

.speakers {
    /* width: var(--col-medium); */
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.link {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.color {
    display: flex;
    align-items: center;
    justify-content: center;
}
.color-marker {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}
@media (max-width: 1198.99px) {
    .color-marker {
        width: 30px;
        height: 30px;
    }
}
@media (max-width: 991.99px) {
    .color-marker {
        width: 20px;
        height: 20px;
    }
}
.color-marker--red {
    background: #a13329;
}
.color-marker--orange {
    background: #ef7f1a;
}
.color-marker--yellow {
    background: #f1ad17;
}
.color-marker--green {
    background: #56baa4;
}
.color-marker--blue {
    background: #008dd2;
}
.color-marker--violet {
    background: #9171af;
}

/* Время */
.time-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
@media (max-width: 767.99px) {
    .time-wrapper {
        flex-direction: row;
        gap: 10px;
    }
}

.time-start {
    font-weight: 600;
}

.duration {
    font-size: 13px;
    color: #888;
}
@media (max-width: 991.99px) {
    .duration {
        font-size: 10px;
    }
}

/* Текст */
.coll p {
    margin: 0;
    line-height: 1.4;
}
@media (max-width: 991.99px) {
    .coll p {
        font-size: 12px;
    }
}

.speakers p {
    margin: 5px 0;
}

/* Иконка ссылки */
.icon-watch {
    width: 24px;
    height: 24px;
}


.schedule-container-mobail {
    display: none;
}
@media (max-width: 767.99px) {
    .schedule-container-mobail {
        display: block;
    }
}

.schedule-block {
    margin-bottom: 15px;
}

.schedule-card__item {
    border-bottom: 1px solid var(--border-color);
}
.schedule-card__item:last-child {
    border-bottom: none;
}
.schedule-card__info {

    padding: 10px;
}

.schedule-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.schedule-card__time {
    /* width: 25%; */
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: #fff;
    padding: 7px 14px;
}
.schedule-card__expand {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: #fff;
    padding: 7px 14px;
}
.schedule-card__body {
    display: flex;
    align-items: center;
    gap: 15px;
}

.schedule-card__spoiler {
    display: none;
    padding: 10px;
    background: #fff;
}

/* .schedule-card__spoiler.open {
    display: block;
} */
 
/* End */
/* /local/templates/decom/components/bitrix/news.detail/decom-title-from-event/style.css?1779795074331 */
/* /local/templates/decom/components/bitrix/breadcrumb/.default/style.css?1770818712380 */
/* /local/templates/decom/components/bitrix/news.list/decom-schedule/style.css?17739198735336 */
