hideOnStart {
	display: none;
}

.wrapperConfetti {
	position: relative;
	min-height: 100vh;
}

[class|="confetti"] {
	position: absolute;
}

.red {
	background-color: #ff0000;
}

.yellow {
	background-color: #ffff00;
}

.green {
	background-color: #00ff00;
}

.cyan {
	background-color: #00ffff;
}

.blue {
	background-color: #0000ff;
}

.magenta {
	background-color: #ff00ff;
}

.container {
	position: relative;
	height: 100%;
}

.box {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.overlay {
	z-index: 9;
	pointer-events: none;
}

h1,
h1 span {
	font-size: 20px;
}

#clockImageClickable {
	cursor: pointer;
}

.clockHandMoves {
	pointer-events: none;
}

.image-stack {
	position: relative;
}

.image-stack__item:nth-child(1) {
	position: relative;
	top: 0;
	left: 0;
}

.image-stack__item {
	position: absolute;
	top: 0;
	left: 0;
}

#clockImageContainer {
	width: 25%;
	margin-left: auto;
	margin-right: auto;
}

#clockImageContainer.largeClock {
	width: 95vmin;
	max-width: 700px;
}

#clockImageContainer div {
	width: 100%;
	aspect-ratio: 1 / 1;
	background-size: 100% 100%;
}

#clockFace {
	background-image: url("https://assets.uprep.lol/clockface/face.svg");
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
}

#clockArmHour {
	background-image: url("https://assets.uprep.lol/clockface/arm_hour.svg");
}

#clockArmMin {
	background-image: url("https://assets.uprep.lol/clockface/arm_min.svg");
}

#clockArmSec {
	background-image: url("https://assets.uprep.lol/clockface/arm_sec.svg");
}

#clockCenter {
	background-image: url("https://assets.uprep.lol/clockface/center.svg");
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
}

.tick {
	transition: transform .1s linear;
}

#notification {
	border: none;
	border-radius: 10px;
	text-align: center;
	padding: 20px;
	position: relative;
}

#notification.notification-blue {
	background-color: #80b8fc;
}

#notification.notification-green {
	background-color: #b1ffb1;
}

#notification.notification-red {
	background-color: #ff9191;
}

#notification-container {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.2s ease-in-out, padding-bottom 0.2s ease-in-out;
	width: 50%;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 0;
}

#notification-container.notification-container-active {
	padding-bottom: 20px;
}

#notification-close {
	float: right;
	font-size: larger;
	text-decoration: none;
	color: var(--text);
	position: absolute;
	top: 8px;
	right: 13px;
}

#splash {
	font-size: 10px;
	max-width: 50%;
	margin-left: auto;
	margin-right: auto;
}

#view-tmr-schedule {
	display: none;
}

#view-tmr-schedule.shown {
	display: inline-block;
}

#confettiDisable {
	display: none;
}

#confettiButton {
	background-color: #105684;
	border-radius: 15px;
	border-width: 0px;
	color: #ffffff;
}

#schedule-overlay {
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity .1s linear;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	overflow: scroll;
	display: none;
}

#schedule-box {
	padding: 50px;
	margin: auto;
	background-color: var(--background);
	border-radius: 5px;
	position: relative;
}

#schedule {
	display: flex;
	flex-direction: row;
	margin-top: 30px;
	position: relative;
}

#schedule-title {
	text-align: center;
}

#schedule-close-btn {
	font-size: 30px;
	text-decoration: none;
	color: var(--text);
	position: absolute;
	display: flex;
	top: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
}

#schedule-close-btn span {
	margin: auto;
}

.schedule-column {
	display: flex;
	flex-direction: column;
}

.schedule-column:nth-child(odd) {
	width: 50px;
}

.schedule-column:nth-child(even) {
	width: 150px;
}

.schedule-column:nth-child(odd) .schedule-item {
	text-align: right;
	height: 20px;
	font-size: 12px;
	position: relative;
}

.schedule-column:nth-child(odd) .schedule-item .schedule-item-inner {
	border-top: 1px solid #777777;
	width: 100%;
	height: 100%;
}

.schedule-column .schedule-column-header {
	height: 30px;
	font-size: 18px;
	text-align: center;
}

.schedule-column:nth-child(even) .schedule-item {
	border-left: 1px solid var(--text);
	border-right: 1px solid var(--text);
	font-size: large;
	text-align: center;
	position: relative;
}

.schedule-column:nth-child(even) .schedule-item.emphasis {
	background-color: #93d1fb;
}

.schedule-column:nth-child(even) .schedule-item:last-child {
	border-bottom: 1px solid var(--text);
}

.schedule-column:nth-child(even) .schedule-item .schedule-item-inner {
	border-top: 1px solid var(--text);
	width: 100%;
	height: 100%;
	display: flex;
}

.schedule-column:nth-child(even) .schedule-item span {
	margin: auto;
	text-align: center;
	font-size: large;
}

.schedule-indicator {
	position: absolute;
	left: 0;
	right: 0;
	border-top: 1px solid #ff0000;
	display: none;
}

.schedule-indicator.shown {
	display: block;
}

.schedule-indicator .schedule-indicator-text {
	font-size: 8px;
	float: right;
	background-color: #ff0000;
	font-weight: 700;
	height: 10px;
	padding-right: 2px;
	color: #ffffff;
}

.schedule-indicator .schedule-indicator-triangle {
	border-top: 10px solid #ff0000;
	border-left: 10px solid transparent;
	height: 0;
	width: 0;
	float: right;
}

@media only screen and (max-width: 600px) {
	#notification-container {
		width: 95%;
	}
}

@media (prefers-color-scheme: dark) {
	#notification.notification-blue {
		background-color: #0030b5;
	}

	#notification.notification-green {
		background-color: #008117;
	}

	#notification.notification-red {
		background-color: #8c0000;
	}

	.schedule-column:nth-child(even) .schedule-item.emphasis {
		background-color: #204157;
	}
}

