html {
	height: 100%;
}
body {
	min-height: 100%;
	margin: 0;
	background-color: #000;
	font-family: "Roboto", sans-serif;
}
i {
	color: #fff;
	transition: all .3s ease;
}
i:hover {
	color: #af1e23;
}
#header,
#thumbnails-wrapper {
	box-shadow: 0 0 15px rgba(0, 0, 0, .5);
	position: relative;
	z-index: 1;
}
#header {
	background-color: #f1f2f2;
	padding: 5px 15px;
	height: 60px;
}
#header .logo-wrapper {
	display: inline-block;
}
#header .logo {
	display: block;
	height: 50px;
}
#header .social {
	position: absolute;
	top: 0;
	right: 15px;
	padding: 0;
	margin: 12px 0;
}
#header .social li {
	display: inline-block;
	font-size: 2em;
	width: 30px;
	line-height: 1.5em;
	text-align: center;
	cursor: pointer;
	transition: all .3s ease;
}
#footer {
	color: #f1f2f2;
	background-color: #231f20;
	padding: 15px 0;
	text-align: center;
}
#footer a:link,
#footer a:visited,
#footer a:hover,
#footer a:active {
	color: #af1e23;
	text-decoration: none;
}
.new {
	color: #fff;
	margin-top: 15px;
	font-size: 13px;
	cursor: pointer;
	transition: all .3s ease;
}
.new:hover {
	color: #af1e23;
}
.new i {
	color: #af1e23;
	width: 16px;
	text-align: center;
	margin-right: 4px;
}
#ids-wrapper {
	display: none;
}
#config {
	background-color: rgba(0, 0, 0, .7);
	color: #fff;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	padding: 20px;
	transform: translateX(-100%);
	transition: all .3s ease;
	display: none;
}
#config.collapse {
	transform: translateX(0);
}
#config .block:not(:first-of-type) {
	margin-top: 40px;
}
#config .block .title {
	font-size: 20px;
	margin-bottom: 20px;
}
#menu {
	font-size: 20px;
	position: absolute;
	top: 0;
	right: -60px;
	background-color: rgba(0, 0, 0, .7);
	width: 60px;
	text-align: center;
	display: block;
	cursor: pointer;
	padding: 20px 0;
}
#video-wrapper {
	position: relative;
	display: block;
}
#video-wrapper #video {
	width: 100%;
	height: 100%;
}
#thumbnails-wrapper {
	max-width: 100%;
	list-style-type: none;
	background-color: #f1f2f2;
	text-align: center;
	white-space: nowrap;
}
#bps-wrapper {
	overflow-x: scroll;
	padding: 20px;
	position: relative;
	z-index: 1;
}
#bps {
	display: inline-flex;
	counter-reset: item;
	list-style-type: none;
	padding: 0;
	margin: 0;
	line-height: 20px;
	text-align: left;
}
#bps li {
	cursor: pointer;
	line-height: 26px;
	position: relative;
	transition: all .3s ease;
}
#bps li:not(:first-of-type) {
	margin-left: 20px;
}
#bps li.active,
#bps li:hover {
	color: #c00;
}
#bps li:before { 
	content: counter(item) ".";
	counter-increment: item;
	color: #af1e23;
	margin-right: 10px;
	font-weight: bold;
}
.progress-wrapper {
	height: 5px;
	background-color: #a1a1a1;
}
.progress {
	width: 0;
	height: 5px;
	background-color: #af1e23
}
@media only screen and (min-width: 481px) {
	#header {
		text-align: center;
	}
	#header .logo {
		margin: -3px auto 0;
		height: 60px;
	}
	#header .social li {
		width: 35px;
	}
}