body {
	margin: 0;
	font-family: "Fredoka", sans-serif;
	font-size: 24px;
	font-weight: 400;
	color: #333333;
}

i {
	color: #affc41;
}

.container {
	margin: 16px;
	width: 66%;
	display: flex;
	justify-content: space-between;
}

.container-centered {
	margin: 16px;
	width: 66%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.container-rows {
	margin: 16px;
	width: 66%;
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}
/* header section */

header {
	background-color: #fe654f;
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* banner */
.banner {
	width: 360px;
	height: 80px;
	display: flex;
	align-items: center;
}

.banner a img {
	width: 100%;
	height: auto;
}

/* timezone selector */
.timezone {
	width: auto;
	height: 80px;
	display: none;
	align-items: center;
}

/* video section */

.main {
	background-color: #333333;
	width: 100%;
	height: auto;
	padding-top: 16px;
	padding-bottom: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.player {
	background-color: #333333;
	width: 100%;
	max-width: 720px;
}

#crumplplayer img {
	width: 100%;
	border-radius: 30px;
}

/* twich video size fix */

.twitch .twitch-video {
	padding-top: 56.25%;
	position: relative;
	height: 0;
}

.twitch .twitch-video iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
}

.livenow {
	color: #333;
	background-color: #affc41;
	text-align: center;
}

/* schedule section */

.schedule {
	background-color: #fe654f;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slots {
	background-color: #affc41;
	min-width: 400px;
	height: auto;
	margin-top: 16px;
	margin-bottom: 16px;
	border-radius: 30px;
	font-weight: 900;
	padding-bottom: 16px;
}

.daytitle {
	text-align: center;
}

.rowscontainer {
	width: 400px;
	margin: auto;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.row {
	width: 98%;
	height: 64px;
	border-radius: 32px;
	background-color: #02a6df;
	display: flex;
	cursor: pointer;
	margin-bottom: 2px;
}

.time-box {
	border: 1px solid #affc41;
	color:#ffffff;
	flex-basis: 20%;
	padding: 4px;
	border-top-left-radius: 32px;
	border-bottom-left-radius: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.djinfo {
	background-color: #ffffff;
	border: 1px solid #affc41;
	border-top-right-radius: 32px;
	border-bottom-right-radius: 32px;
	flex-basis: 80%;
	padding: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-align: center;
}

.row.empty {
	display: none;
}

.row.selected .djinfo {
	background-color:	#02a6df;
	color: #ffffff;
}

.row.live {
	padding: 8px;
	/* background-color: #CA3CFF; */
	background-color:	#fe654f;
	font-kerning: none;
}

@media only screen and (max-width: 1400px) {
	.schedule .container {
		width: 100%;
		flex-direction: column;
		align-items: center;
	}

	.slots {
		width: 90%;
	}
}

@media only screen and (max-width: 1200px) {
	.schedule .container-rows {
		width: 100%;
		flex-direction: column;
		align-items: center;
	}

	.slots {
		width: 90%;
	}
}

/* info section */

.info {
	background-color: #02a6df;
	width: 100%;
	height: auto;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.blurb {
	background-color: #affc41;
	color: #333333;
	width: 100%;
	height: auto; /* change to auto */
	margin-top: 16px;
	margin-bottom: 16px;
	border-radius: 30px;
	font-weight: 900;
	text-align: center;
	padding: 0 16px;
}

/* footer */

.footer {
	background-color: #fe654f;
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fa-link {
	color: #333;
}

/* auto-switch toggle */
.cruise-control {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#switch {
	height: 0;
	width: 0;
	visibility: hidden;
}

#switch + label {
	cursor: pointer;
	text-indent: -9999px;
	width: 80px;
	height: 40px;
	background: grey;
	display: block;
	border-radius: 100px;
	position: relative;
}

#switch + label:after {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 28px;
	height: 28px;
	background: #fff;
	border-radius: 90px;
	transition: 0.3s;
}

#switch:checked + label {
	background: #affc41;
}

#switch:checked + label:after {
	left: calc(100% - 5px);
	transform: translateX(-100%);
}

#switch + label:active:after {
	width: 130px;
}

.livenow a {
	color: #333;
}

body.watch-event {
  max-width: none !important;
  margin: 0 !important;
  width: 100% !important;
}

