* {
	margin: 0;
	padding: 0;
	outline: none;
	border: none;
	border-radius: 0px;
}

html,
body {
	width: 100%;
	height: 100%;
	background-color: #111;
}

#player {
	position: absolute;
	width: 1280px;
	height: 720px;
	top: 50px;
	left: 50px;
}

#player.fullscreen {
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	display: flex;
}

#vid {
	width: 100%;
}

#controls {
	position: absolute;
	bottom: 0px;
	width: 100%;
	background: linear-gradient(transparent, black);
	padding: 5px;
	box-sizing: border-box;
	display: flex;
	padding-bottom: 12px;
}

.control-button {
	height: 30px;
	margin: 0px 10px;
}

#progress {
	flex: 1;
	overflow: hidden;
	-webkit-appearance: none;
	background-color: gray;
	margin: auto 4px;
	height: 15px;
}

#progress::-webkit-slider-thumb {
	height: 100%;
	width: 0px;
	-webkit-appearance: none;
	background: #434343;
	box-shadow: -9999px 0 0 9999px dodgerblue;
}

#settings {
	transition: transform 200ms ease;
}

#settings:hover {
	transform: rotate(-45deg);
}

.control-button:hover {
	transform: scale(1.1);
}

.control-button:active {
	transform: scale(0.9);
}

#settings-menu {
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	font-family: sans-serif;
	width: 110px;
	position: absolute;
	bottom: 50px;
	right: 0px;
	display: none;
}

#speed-menu,
#volume-menu {
	display: none;
}

.setting {
	padding: 13px 0px;
	text-align: center;
	cursor: pointer;
	transition: background-color 300ms ease;
}

.setting:hover {
	background-color: rgba(0, 0, 0, 0.25);
}

#volume-slider {
	transform: rotate(-90deg);
	position: absolute;
	bottom: 65px;
	right: -17px;
}

#volume-menu {
	width: 16px;
	height: 130px;
}