.sc-event-strip {
	display: flex !important;
	flex-flow: row nowrap !important;
	align-items: stretch !important;
	gap: 2px !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 1px !important;
	box-sizing: border-box !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x proximity;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.sc-event-strip__card {
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	flex: 0 0 var(--sc-card-width, 210px) !important;
	width: var(--sc-card-width, 210px) !important;
	min-width: var(--sc-card-width, 210px) !important;
	max-width: var(--sc-card-width, 210px) !important;
	min-height: 36px !important;
	margin: 0 !important;
	padding: 3px !important;
	box-sizing: border-box !important;
	background-color: var(--event-colour, #666) !important;
	background-image: linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16)) !important;
	color: #fff !important;
	text-decoration: none !important;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
	border: 0 !important;
	border-radius: 5px !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) !important;
	scroll-snap-align: start;
}

.sc-event-strip__card:hover,
.sc-event-strip__card:focus {
	color: #fff !important;
	text-decoration: none !important;
	filter: brightness(1.12);
}

.sc-event-strip__date,
.sc-event-strip__title {
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1 !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sc-event-strip__date {
	font-size: 13px !important;
	font-weight: 600 !important;
}

.sc-event-strip__title {
	font-size: 15px !important;
	font-weight: 700 !important;
}

.sc-event-strip__notice {
	margin: 0;
}

@media (max-width: 600px) {
	.sc-event-strip__card {
		flex-basis: var(--sc-mobile-card-width, 175px) !important;
		width: var(--sc-mobile-card-width, 175px) !important;
		min-width: var(--sc-mobile-card-width, 175px) !important;
		max-width: var(--sc-mobile-card-width, 175px) !important;
	}
}

