html {
	min-height: 100%;
	background-image: url('https://www.eighties.yt/img/background.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover !important;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-color: #000000;
	position: relative;
}

body {
	padding-top: 5rem;
	padding-bottom: 30px;
	background-color: transparent;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30px;
  line-height: 30px;
  background-color: rgba(0,0,0,0.7);
  text-align: right;
  font-size: 80%;
  color: rgba(255,255,255,0.6);
}

.nowplaying {
	background-color: rgba(0,0,0,0.6);
	color: white;
	border-radius: 10px;
	padding: 10px;
	font-family: Arial, Helvetica;
	font-size: 150%;
	max-width: 135vh;
	margin: auto;
	min-height: 220px; /* Youtube policy vp min 200px */
	min-width: 376px; /* Youtube policy vp min 200px */
}

.songInfo {
	display: flex;
}

.nowplaying .songInfo {
	padding-top: 10px;
	line-height: 1;
	font-weight: bold;
}

.players {
	background-color: black;
	width: 100%;
	max-height: 100%;
	position: relative; 
	padding-bottom: 56.25%; 
	height: 0; 
	overflow: hidden;
}

.player {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0; 
	left: 0;
}

#previewPlayer {
	position: relative;
	padding: 0% 0% 56.25% 0%;
	height: 0; 
	overflow: hidden; 
	width: 100%;
}

.previewPlayer {
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%;
}

.modal-dialog {
	background-color: rgba(0,0,0,0.7);
	box-shadow: 0px 0px 60px 10px #000000;
}

.modal-title {
	font-size: 1rem;
}

.resultContainer {
	position: relative;
	width: 100%;
	min-height: 200px;
	padding-bottom: 56.25%;
}

.resultPlayer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
		

#youtubePlayer {
	display: block;
	visibility: hidden;
}

#soundcloudPlayer {
	display: block;
	visibility: hidden;
}

#placeholderPlayer {
	text-align: center;
	color: white;
	font-weight: bold;
	height: 100%;
}

#placeholderPlayer > a {
	color: white !important;
	font-weight: normal;
	font-size: 90%;
}

#nextUpContent, #lastPlayedContent {
	background-color: rgba(0,0,0,0.6);
	color: white;
	border-radius: 10px;
	padding: 10px;
	font-family: Arial, Helvetica;
	display: table;
	width: 100%;
}

#roomNextUp {
	margin-top: 20px;
}

#roomLastPlayed {
	margin-top: 20px;
}

.playlistItem {
	margin: 10px 5px;
	height: 85px;
	display: table-row;
	width: 100%;
	cursor: pointer;
}

.playlistItem:hover {
	background-color: rgba(255,255,255,0.2) !important;
}

.playlistItem:nth-child(even) {
	background-color: rgba(255,255,255,0.1);
	border-radius: 10px;
}

.playlistItem:nth-child(odd) {

}
		
.playlistItem .playlistImage {
	width: 120px;
	height: 90px;
	margin: 10px 10px;
	clear: both;
	display: table-cell;
	vertical-align: middle;
}
		
.playlistItem .userImage {
	width: 75px;
	height: 75px;
	overflow: hidden;
	border-radius: 100%;
	margin: 10px 20px 10px 10px;
}

.playlistItem .userImage img {
	margin: auto;
	width: 100%;
	min-height: 100%;
}		

.playlistItem .playlistDetails {
	display: table-cell;
	width: 100%;
	vertical-align: middle;
	text-align: left;
	padding: 0px 10px 0px 0px;
	font-size: 90%;
}

.playlistItem .playlistName {
	font-weight: bold;
	font-size: 100%;
}

.playlistItem .playlistDj {
	font-weight: bold;
}

@media (max-width: 575.98px) {			

}

@media (min-width: 576px) {			
	.modal-dialog {
		max-width: 540px;
	}
}

@media (max-width: 767.98px) {
	html {
		overflow-x: hidden;
	}

	body {
		padding-top: 56px;
	}

	.container {
		max-width: 100%;
	}
	
	#roomPlayer {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0px;
	}

	.nowplaying {
		max-width: 100%;
	}
	
	#nowplaying {
		border-radius: 0px;
		padding: 0px;
	}
	
	#songInfo {
		padding: 0px 10px 5px 10px;
		font-size: 80%;
	}
	
	.dj {
		height: 50px;
		display: table-cell;
		vertical-align: middle;
		padding-bottom: 7px;
		padding-top: 7px;
	}
	
	.dj_avatar {
		display: none !important;
	}

	#roomNextUp > h2, 
	#roomLastPlayed > h2 {
		padding-left: 15px;
	}
				
	#roomNextUp {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0;
	}

	#nextUpContent {
		border-radius: 0;
	}

	#roomLastPlayed {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0;
	}

	#lastPlayedContent {
		border-radius: 0;
	}
	
	#rightColumn {
		margin-top: 10px;
		flex: 0 0 100%;
		max-width: 100%;
	}
	
	.hideOnSmallDevice {
		display: none;
	}

	.modal-dialog {
		margin-left: 0;
		margin-right: 0;
	}

	footer {
		text-align: left;
		font-size: 76%;
		color: rgba(255,255,255,0.76);
	}
	
	body:not(.modal-open){
		padding-right: 0px !important;
		overflow-x: hidden;
	}

	.modal-open .show {
		padding-right: 0 !important;
	}
}

@media (min-width: 768px) {			
	.modal-dialog {
		max-width: 720px;
	}
}

@media (min-width: 992px) {	
	.modal-dialog {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {									
	.modal-dialog {
		max-width: 1120px;
	}
}

h1, h2 {
	color: white;
	text-shadow: 0px 0px 20px black;
}

.navbar {
	background-color: rgba(0,0,0,0.7);
}

.navbar-brand {
	font-weight: bold;
}

.progress {
	height: 4px;
	border-radius: 0;
	background-color: black;
}

#rightColumn {
	display: none;
}		

#history, #historyAsc, #mostgrabbed, #mostPlayed, #mostPropped, #users, #searchResults, #infoBox, #tabbyBox, #profile {
	background-color: rgba(0,0,0,0.7);
	color: white;
	border-radius: 10px;
	padding: 10px;
	font-family: Arial, Helvetica;
	font-size: 100%;
}

#previewPlayerBox {
	color: white;
	padding-top: 20px;
	background-image: url('https://www.eighties.yt/img/background.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-color: #000000;
}

.modal-content {
	background-color: transparent;
	padding: 0px;
}

.modal-content .close {
	color: #FFF !important;
}

.modal-header {
	border-bottom: 0px;
}

.scrollbar::-webkit-scrollbar-track
{
	background-color: rgba(0,0,0,0.4);
}

.scrollbar::-webkit-scrollbar
{
	width: 5px;
	background-color: transparent;
}

.scrollbar::-webkit-scrollbar-thumb
{
	background-color: #dc3545;
}

.twitter-typeahead {
	width: 100%;
}

.tt-menu {
	width: 100%;
	display: table;
}

.tt-highlight {
	color: orange;
	font-weight: bold;
}

.navbar, .navbar-dark {
	background-color: black;
}

.navbar .dropdown-menu {
	background-color: rgba(0,0,0,0.7);
}

.navbar .dropdown-item {
	color: white;
}

.navbar .dropdown-item:hover {
	background-color: black;
}

.nav-custom {
	color: white;
	cursor: pointer;
}

.nav-custom:hover {
	background-color: rgba(255,255,255,0.1);
}

.nav-link {
	color: white !important;
}

.active {
	background-color: rgba(255,255,255,0.1);
}

#songInfoContents {
	display: table;
}

.dj_avatar {
	width: 50px;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
}

.dj_avatar > img {
	height: 50px;
	width: 50px;
	float: left;
	margin-right: 15px;
}

#progressbar {
	background-color: #f01832;
}

.miniPlayer {
	font-size: 120%;
}

.miniPlayer .dj_avatar > img {
	height: 40px;
	width: 40px;
}

.modal.show .modal-dialog {
	margin: auto;
}