.filters {
	position: absolute;
	top: 25px;
	left: 320px;
/*	left: 50%;
	transform: translateX(-50%);*/
	display: flex;
	justify-content: center;
	border-radius: 20px;
	border: 2px solid #333333;
	background-color: #111111;
	box-shadow: inset 0px 0px 10px #090909, 0px 0px 3px #000000, 0px 0px 5px #000000;
	transition: background-color 80ms;
	overflow: hidden;
}
.filters::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 2px;
	width: calc(50% - 2px);
	height: calc(100% - 4px);
	border-radius: inherit;
	background: #1a4020;
	filter: blur(6px);
	transition: transform 100ms cubic-bezier(0.4, 0, 0.2, 1);
}

.filters:has(#uber:checked)::before {
	transform: translateX(100%);
}
.filters:hover {
	background-color: #171717;
}

.filters input {
	display: none;
}

.filters label {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 36px;
	border-radius: 20px;
	font-family: Arial;
	font-size: 14px;
	font-weight: bold;
	color: #777777;
	text-shadow: 0px 0px 5px #000000;
	user-select: none;
	transition: color 80ms;
}
.filters input:checked + label {
	color: #e6e2cf;
}
.filters input:not(:checked) + label {
	cursor: pointer;
}
.filters input:not(:checked) + label:hover {
	color: #888888;
}