body {
	margin: 0;
	top: 0;
	background-color: #000;
	background-size: cover;
	background-attachment: fixed;
	background-position: center bottom;
	overflow-x: hidden;
}
.bodyContent {
	width: 100vW;
	min-height: 100vH;
	filter: blur(0px);
	background-color: #000000aa;
}
.update {
	position: fixed;
	display: flex;
	right: 3px;
	bottom: 70px;
	background-color: rgba(20, 20, 20, 0.7);
	border: 1px solid #ffffff;
	border-radius: 12px;
	padding: 00px 20px 0px 20px;
	z-index: 11;
	font-family: arial;
	font-size: 16px;
	color: #ffffff;
	backdrop-filter: blur(5px);
	cursor: pointer;
}
.event {
	font-family: arial;
	position: absolute;
	left: 50%;
	margin-top: 113px;
	margin-left: 240px;
	height: 100px;
	transform: translateX(-50%);
	width: 400px;
	padding: 15px;
	background-color: rgba(20, 20, 20, 0.6);
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	overflow: hidden;
	background-size: 150px 135px;
	background-repeat: no-repeat;
	background-position: center right;
	transition: 0.25s linear;
}
.event:hover {
	background-color: rgba(35, 35, 35, 0.9);
}
.event .content {
	position: relative;
	z-index: 2;
}
.event#game {
	border-top: 5px solid #44dddd;
}
.event#stream {
	border-top: 5px solid #ff0000;
}
.event#movie {
	border-top: 5px solid #ff8000;
}
.event#special {
	border-top: 5px solid #ffff00;
}
.event::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.3;
	z-index: 1;
}
.event h3 {
	align: left;
	text-align: left;
	margin: 0 0 10px -150px;
	width: 260px;
	height: 40px;
	font-size: 18px;
	color: #ffffff;
}
.event a {
	align: left;
	float: left;
	text-decoration: none;
	margin-top: 10px;
	margin-left: -150px;
	margin-bottom: -5px;
	color: #0078d7;
	font-weight: bold;
}
.event a img {
	width: 24px;
	height: 24px;
}
.event a:hover {
	text-decoration: underline;
}
.event .focuslink {
	float: right;
	align: right;
	left: 200px;
}
.event .bingolink {
	margin-left: 25px;
}
.event .favImg {
	width: 24px;
	height: 24px;
	margin-top: 10px;
	margin-left: 7px;
	float: right;
	align: right;
	left: 50px;
	cursor: pointer;
}
.event .date {
	font-size: 14px;
	margin-left: -150px;
	text-align: left;
	color: #aaaaaa;
	margin-top: 10px;
}
.event.collided {
	left: calc(50% + 450px);
}
.smallEvent {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	margin-top: 15px;
	margin-bottom: 8px;
	margin-left: 20px;
	width: 150px;
	top: 100px;
	min-height: 180px;
	height: auto;
	background-color: #212121;
	border-radius: 15px;
	overflow: hidden;
	float: left;
	transition: 0.1s linear;
}
.smallEvent:hover {
	background-color: #323232;
	margin-top: 7px;
	margin-bottom: 16px;
}
.smallEvent p {
	font-size: 16px;
	text-align: center;
	font-family: arial;
	color: #ffffff;
	cursor: pointer;
}
.smallEvent p:hover {
	text-decoration: underline;
}
.smallEvent .favImg {
	position: absolute;
	width: 24px;
	height: 24px;
	margin-top: 1px;
	float: right;
	align: right;
	left: 123px;
	cursor: pointer;
	filter: drop-shadow(1px 1px 0 black) drop-shadow(1px -1px 0 black) drop-shadow(-1px 1px 0 black) drop-shadow(-1px -1px 0 black);
}
.smallEvent #game {
	border-bottom: 5px solid #44dddd;
}
.smallEvent #stream {
	border-bottom: 5px solid #ff0000;
}
.smallEvent #movie {
	border-bottom: 5px solid #ff8000;
}
.smallEvent #special {
	border-bottom: 5px solid #ffff00;
}
.filterIcon img {
	position: fixed;
	height: 50px;
	right: 20px;
	top: 10px;
	cursor: pointer;
	z-index: 3;
	background-color: rgba(20, 20, 20, 0.7);
	padding: 3px;
	backdrop-filter: blur(5px);
	border: 1px solid #fff;
	border-radius: 999px;
}
.filter_popup {
	display: flex;
	height: 25px;
	width: 100%;
}
.filter_popup img {
	height: 25px;
	width: auto;
}
.filter_popup p {
	margin-top: -5px;
	margin-left: 7px;
	height: 20px;
	border-top: 6px solid;
	border-right: 2px solid;
	border-bottom: 6px solid;
	border-left: 2px solid;
	padding: 3px 10px 3px 10px;
	border-radius: 7px;
}