.schedule-container {
	display: flex;
	max-width: 100%;
	position: relative;
	width: 100%;
}

.schedule-container .scrolling-wrapper {
	padding-top: 45px;
}

.schedule-container-sticky-labels {
	padding-top: 45px;
	position: relative;
}

.schedule-container-sticky-labels .schedule-row-label {
	height: 100px;
}

.schedule-row-container {
	background-color: var(--schedule-row-background-color, hsl(0, 0%, 90%));
	display: block;
	height: 100px;
	margin-bottom: 0;
	position: relative;
}

.tripple-height {
	height: 300px !important;
}

.schedule-container .schedule-row-container:nth-child(2n) {
	background-color: var(--schedule-row-background-color-second, hsl(0, 0%, 80%));
}

.schedule-container .schedule-row-container:last-of-type {
	margin-bottom: 0;
}

.schedule-row-label {
	align-items: center;
	display: flex;
	height: 100px;
	justify-content: center;
	padding: 10px;
	position: relative;
	width: 200px;
}

.schedule-row-label.calendar {
	width: 60px;
}

.schedule-row-label-align {
	line-clamp: 2;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: inline-block;
	display: -webkit-box;
	font-size: 110%;
	font-weight: bold;
	overflow: hidden;
	position: relative;
	text-align: center;
	text-overflow: ellipsis;
	white-space: ellipsis;
}

.schedule-row-label.calendar .schedule-row-label-align {
	line-clamp: none;
	-webkit-line-clamp: none;
	display: inline-block;
	font-size: 100%;
}

.schedule-event {
	align-items: center;
	border-width: 2px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	font-size: 85%;
	height: 100px;
	justify-content: center;
	left: 0;
	margin-bottom: 0;
	overflow: hidden;
	padding: 4px;
	position: absolute;
	text-align: center;
	top: 0;
	z-index: 2;
}

.schedule-event:hover {
	z-index: 20;
}

.row-two {
	top: 100px;
}

.row-three {
	bottom: 0;
	top: auto;
}

.schedule-event-info-wrapper {
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.schedule-event-bandname {
	font-size: 105%;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.schedule-event-info {
	font-size: 90%;
}

.schedule-event-remove {
	cursor: pointer;
	position: absolute;
	right: 3px;
	top: 3px;
	z-index: 5;
}

.hashtags {
	max-width: 500px;
}

.table-container .scrolling-wrapper:last-of-type {
	margin-bottom: 0 !important;
}

.hashtags:last-of-type {
	margin-bottom: 0 !important;
}

.timeline {
	background-color: hsl(0, 0%, 50%);
	bottom: 0;
	display: block;
	height: calc(100% - 45px);
	position: absolute;
	width: 1px;
	z-index: 1;
}

.timeline .timeline-caption {
	display: block;
	font-size: 90%;
	left: -9px;
	position: absolute;
	top: -6px;
	transform: rotate(-90deg);
	transform-origin: top left;
	width: 45px
}