.sch-list-item {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid var(--page-border-color);
	border-bottom: 1px solid var(--page-border-color);
	margin-bottom: -1px;
	gap: 0 var(--vertical-field);
}
.sch-list-item-time {
	width: 5em;
	padding: calc(var(--vertical-field) / 4) 0;
	font-weight: bold;
}
.sch-list-item-time-s {
	position: sticky;
	top: 5px;
}
.sch-list-item-classes {
	flex-grow: 1;
	width: 300px;
	/* margin-left: var(--vertical-field); */
}
.schedule-info-image {
	width: 100px;
	height: 100px;
	overflow: hidden;
	border-radius: 15px;
}
.schedule-info-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.schcls-item-name-link {
	display: inline-block;
	border-radius: 15px;
	vertical-align: middle;
	background-color: var(--page-link-color);
	background-repeat: no-repeat;
	color: var(--page-darkfg-color);
	font-weight: normal;
	font-size: 0.5em;
	text-transform: uppercase;
}
.schcls-item-name-link:hover {
	color: var(--page-darkfg-color);
	text-transform: uppercase;
}
.schcls-link-site {
	background-image: url('/Sys/Module/ScheduleClassList/v2/view/card/img/link_icon.svg');
	background-size: 16px auto;
	background-position: 5px center;
	padding: 4px 9px 4px 25px;
}
.schcls-link-moveto {
	background-image: url('/Sys/Module/ScheduleClassList/v2/view/card/img/moveto_icon.svg');
	background-size: 20px auto;
	background-position: 7px center;
	padding: 4px 9px 4px 31px;
}
.schcls-link-movefrom {
	background-image: url('/Sys/Module/ScheduleClassList/v2/view/card/img/movefrom_icon.svg');
	background-size: 20px auto;
	background-position: 7px center;
	padding: 4px 9px 4px 31px;
}
.sch-list-item .schcls-item-name-link:hover {
	background-color: var(--page-link-hover-color);
	text-decoration: none;
}
.sch-list-item a {
	text-decoration: none;
}
.sch-list-item a:hover {
	text-decoration: underline;
}
.sch-list-item-now {
    --countdown-color: hsla( 210, 100%, 20% );
	--countdown-end-color: hsla( 170, 100%, 20% );
}
.sch-list-item-before {
    --countdown-color: hsla( 30, 100%, 30% );
	--countdown-end-color: hsla( 0, 100%, 30% );
}
.sch-list-item-countdown {
    line-height: 1.3em;
    position: relative;
    width: 100%;
    font-size: 0.75em;
    margin-top: calc(var(--vertical-field) / 3);
	padding: unset;
    padding-top: 0.5em;
    font-weight: 500;
	overflow: hidden;
	background-color: transparent;

    color: var(--countdown-color);
	transition: color linear 3s;
}
.sch-list-item-almost.sch-list-item-countdown {
	color: var(--countdown-end-color);
}
.sch-list-item-countdown::after { 
    width: var(--dif-coef, 0);
}
.sch-list-item-countdown::before {
    width: 100%;
	animation: count_down 4s linear infinite;
	opacity: 0.5;
}
.sch-list-item-countdown::after, .sch-list-item-countdown::before {
	position: absolute;
    content: "";
    top: 0;
    left: 0;
	height: 0.3em;
	background-color: var(--countdown-color);
	transition: background-color linear 3s;
}
.sch-list-item-almost.sch-list-item-countdown::after, .sch-list-item-almost.sch-list-item-countdown::before {
	background-color: var(--countdown-end-color);
}

/* .sch-list-item-now .sch-list-item-countdown-inner::before {
    position: static;
    content: "До конца пары:";
}
.sch-list-item-before .sch-list-item-countdown-inner::before {
    position: static;
    content: "До начала пары:";
} */