*, *::before, *::after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
#video-hugger {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	display: flex;
	background: #000;
	position: fixed;
	align-items: center;
	justify-content: center;
}
#groups-streams-menu-hugger {
	font-family: 'Open Sans Condensed', sans-serif;
	background: rgba(0, 0, 0, 0.3);
	bottom: 0;
	color: #fff;
	direction: rtl;
	left: -301px;
	overflow-y: auto;
	position: fixed;
	top: 0;
	width: 300px;
	z-index: 1;
	
	-webkit-transition: all 300ms;
	   -moz-transition: all 300ms;
	        transition: all 300ms;
}
body.controls-visible #groups-streams-menu-hugger {
	left: 0;
}
#groups-streams-menu-hugger #groups-menu {
	direction: ltr;
	margin: 0;
	padding: 0;
	list-style: none;
	background: transparent url(/img/bck_black.png) repeat;
	margin-top: 5em;
}
#groups-streams-menu-hugger #groups-menu .group-item {
}
#groups-streams-menu-hugger #groups-menu .group-item h2 {
	cursor: pointer;
	background: rgba(255, 255, 255, 0.2);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0.2em 0.3em;
	margin: 0;
}
#groups-streams-menu-hugger #groups-menu .group-item:first-child h2 {
	border-top: none;
}
#groups-streams-menu-hugger .streams-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
#groups-streams-menu-hugger .streams-menu li.stream-item {
	cursor: pointer;
	font-weight: bold;
	font-size: 1em;
	line-height: 1.45;
	padding: 0.1em 0.3em 0.1em 1.3em;
	color: rgb(154, 204, 255);
	
	-webkit-transition: all 300ms;
	   -moz-transition: all 300ms;
	        transition: all 300ms;
}
#groups-streams-menu-hugger .streams-menu li.stream-item.invisible {
	opacity: 0;
	height: 0;
	visibility: hidden;
	position: absolute;
}
#groups-streams-menu-hugger .streams-menu li.stream-item.playing,
#groups-streams-menu-hugger .streams-menu li.stream-item:hover {
	color: #222;
	background: rgb(154, 204, 255);
}
#groups-streams-menu-hugger .group-item .streams-menu {
	display: none;
}
#groups-streams-menu-hugger .group-item.opened .streams-menu {
	display: block;
}

#info-header {
	position: fixed;
	z-index: 5;
	top: -7em;
	left: 1em;
	right: 1em;
	padding: 1em;
	background: transparent url(/img/bck_black.png) repeat;
	text-align: center;
	
	-webkit-transition: all 300ms;
	   -moz-transition: all 300ms;
	    -ms-transition: all 300ms;
	     -o-transition: all 300ms;
	        transition: all 300ms;
	
	-webkit-border-radius: 0.8em;
	   -moz-border-radius: 0.8em;
	        border-radius: 0.8em;
}
body.controls-visible #info-header,
body.info-header-visible #info-header {
	top: 1em;
}
#info-header h1 {
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight: bold;
	font-size: 1.4em;
	color: #fff;
	margin: 0;
}
#info-header .search-btn,
#info-header .search-field,
#info-header .close-btn,
#info-header .menu-btn {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	line-height: 1em;
	height: 1em;
	color: #fff;
	font-size: 1.4em;
	opacity: 0.4;
	cursor: pointer;
	
	-webkit-transition: all 300ms;
	   -moz-transition: all 300ms;
	        transition: all 300ms;
}
#info-header .search-btn:hover,
#info-header .close-btn:hover,
#info-header .menu-btn:hover {
	opacity: 0.8;
}
#info-header .search-btn {
	left: 1em;
}
#info-header .close-btn {
	right: 1em;
}
#info-header .menu-btn {
	left: 1em;
}

#info-header .search-btn,
body.controls-visible #info-header .menu-btn {
	display: none;
}
#info-header .menu-btn,
body.controls-visible #info-header .search-btn {
	display: inline-block;
}

#info-header .search-field {
	opacity: 0.9;
}
body.search-field-visible #info-header .search-btn,
#info-header .search-field {
	display: none;
}
body.search-field-visible #info-header .search-field {
	display: block;
	line-height: 0.9em;
}
#info-header .search-field input {
	width: 250px;
	border: none;
	padding: 0.2em;
	background: rgba(255, 255, 255, 0.7);
	font-size: 12pt;
}