/* Global */
body { text-align: center; background-color: #FF9900; width: 100%; margin: 0 auto 30px; padding: 0px; max-width: 850px; min-width: 550px; }
body, select { font-family: "Roboto", sans-serif; font-size: 14px; }
select { font-size: 12px; }
a { text-decoration: underline; color: #003399; }
a:hover { text-decoration: none; }
p { margin: 10px 0px; }

/* Video */
#wrap {
    overflow: hidden;
    position: relative;
    width:100%;
}
#wrap::after {
    padding-top: 56.25%; /* 75% for 4:3 */
    display: block;
    content: '';
}
#wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#songname { font-size: 21px; color: #f3d600; text-shadow: rgb(0, 0, 0) 3px 0px 0px, rgb(0, 0, 0) 2.83487px 0.981584px 0px, rgb(0, 0, 0) 2.35766px 1.85511px 0px, rgb(0, 0, 0) 1.62091px 2.52441px 0px, rgb(0, 0, 0) 0.705713px 2.91581px 0px, rgb(0, 0, 0) -0.287171px 2.98622px 0px, rgb(0, 0, 0) -1.24844px 2.72789px 0px, rgb(0, 0, 0) -2.07227px 2.16926px 0px, rgb(0, 0, 0) -2.66798px 1.37182px 0px, rgb(0, 0, 0) -2.96998px 0.42336px 0px, rgb(0, 0, 0) -2.94502px -0.571704px 0px, rgb(0, 0, 0) -2.59586px -1.50383px 0px, rgb(0, 0, 0) -1.96093px -2.27041px 0px, rgb(0, 0, 0) -1.11013px -2.78704px 0px, rgb(0, 0, 0) -0.137119px -2.99686px 0px, rgb(0, 0, 0) 0.850987px -2.87677px 0px, rgb(0, 0, 0) 1.74541px -2.43999px 0px, rgb(0, 0, 0) 2.44769px -1.73459px 0px, rgb(0, 0, 0) 2.88051px -0.838247px 0px; }
#nevergetover { margin: 15px auto 10px; }
#controls { margin: 0 auto; font-weight: bold; text-align: left; }
#controls, #donators { padding: 0px 15px; }
#controls #mode { float: right; }
#list, #donators { margin: 0 auto; text-align: left; }
#list {
	background: #fc0;
	border-radius: 15px;
	padding: 5px 15px;
	margin-top: 10px;
	display: none;
}
#list ol { margin: 0px 0px 10px -17px; }
#list ol li { padding-bottom: 5px; }
#list ul { margin-top: 0px; margin-left: -17px; }
#unofficial { float: left; }
#by { clear: both; }
#kofi { width: 32px; }
#icq { position: absolute; padding-left: 5px; }

/* Dark Mode Button */
.theme-switch-wrapper {
	display: flex;
	align-items: center;
	float: right;
	margin-top: 5px;
	clear: right;
}
.theme-switch-wrapper span {
	margin-right: 5px;
	display: inline-block;
}
.theme-switch {
	display: inline-block;
	height: 20px;
	position: relative;
	width: 40px;
}
.theme-switch input {
	display:none;
}
.slider {
	background-color: #ccc;
	bottom: 0;
	cursor: pointer;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: .4s;
}
.slider:before {
	background-color: #fff;
	bottom: 4px;
	content: "";
	height: 12px;
	left: 4px;
	position: absolute;
	transition: .4s;
	width: 12px;
}
input:checked + .slider {
	background-color: #66bb6a;
}
input:checked + .slider:before {
	transform: translateX(20px);
}
.slider.round {
	border-radius: 34px;
}
.slider.round:before {
	border-radius: 50%;
}

/* Dark Mode */
[data-theme="dark"] body {
	background-color: #003399;
	color: #fff;
}
[data-theme="dark"] #list {
	background-color: #000033;
	color: #fff;
}
[data-theme="dark"] a {
	color: #FFCC33;
}

/* Mobile */
@media(max-width:550px){
	body { min-width: 0px; }
	#controls, #donators { text-align: center; }
	#controls #mode { float: none; display: block; margin: 0 auto 10px; }
	#unofficial { float: none; }
	.theme-switch-wrapper {
		float: none;
		margin-top: 13px;
		justify-content: center;
	}
}
@media(min-width:850px){
	#controls, #donators { padding: 0px; }
}