body.logged-in .not-logged-in {
	display: none;
}

body:not(.logged-in) .is-logged-in {
	display: none;
}

.template {
	display: none;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

.droppable {
	position: relative;
	border-width: 0;
	border-style: dotted;
	border-color: transparent;
	border-radius: 20px;
	-o-border-radius: 20px;
	-ms-border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	transition: border-color 1s;
	-o-transition: border-color 1s;
	-ms-transition: border-color 1s;
	-moz-transition: border-color 1s;
	-webkit-transition: border-color 1s;
	z-index: 1;
	padding: 15px 10px;
}

.droppable:after {
	content: "Drop Tracks Here";
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 30px;
	font-weight: 800;
	color: white;
	z-index: 1;
}

body.drop-hint .droppable {
	border-width: 10px;
	border-color: white;
}

body.drop-hint .droppable:after {
	display: block;
}


#checkin-popup {
	z-index: 9999;
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(20, 20, 20, 0.7);
}

#checkin-popup > * {
	position: fixed;
	top: 50%;
	left: 50%;
	height: 200px;
	width: 200px;
	margin-top: -100px;
	margin-left: -100px;
	padding: 15px;
	background-color: rgb(36, 128, 189);
	color: white;
	font-weight: bolder;
	font-size: 33px;
	line-height: 100px;
	text-align: center;
	border-radius: 50%;
	-o-border-radius: 50%;
	-ms-border-radius: 50%;
	-moz-border-radius: 50%;
	border: 8px solid #1C4E7C;
}

#checkin-popup.ready > * {
	display: none;
}

#checkin-popup .checkin-button {
	display: none;
}

#checkin-popup.ready .checkin-button {
	display: block;
}


/* Playlists and Tracks */

.playlist {
	min-height: 100px;
	border-radius: 20px;
	-o-border-radius: 20px;
	-ms-border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
}

.playlist ul {
	padding: 0;
	list-style-type: none;
}

.playlist .track {
	position: relative;
	width: 95%;
	margin: 10px auto;
	padding: 10px 0 60px;
	box-shadow: 0px 1px 0px 2px #363232;
	border-radius: 10px;
	list-style-type: none;
}

.track .artwork {
	height: 50px;
	width: 50px;
	float: left;
	margin: 0px 10px;
}

.track .meta {
	display: inline-block;
	xwidth: 50%;
	overflow: hidden;
}

.track .meta .info > span {
	display: block;
}

.track.playing {
	background-color: #747474;
}

.track .status {
	display: inline-block;
	position: relative;
	float: right;
	xwidth: 40%;
	margin-right: 10px;
	xpadding-right: 40px;
	text-align: right;
}

.track progress {
	display: block;
	height: 10px;
	width: 100%;
	margin-top: 5px;
	left: 2%;
	opacity: 0;
	transition: opacity 1s;
	-o-transition: opacity 1s;
	-ms-transition: opacity 1s;
	-moz-transition: opacity 1s;
	-webkit-transition: opacity 1s;
}

.track .status .message {
	float: left;
}

.track .status .icon {
	display: none;
	width: 35px;
	height: 35px;
}

.track.loading progress,
.track.downloading progress,
.track.uploading progress {
	opacity: 1;
}

.track.loading progress,
.track.downloading progress {
	transform: rotateZ(180deg);
	-o-transform: rotateZ(180deg);
	-ms-transform: rotateZ(180deg);
	-moz-transform: rotateZ(180deg);
	-webkit-transform: rotateZ(180deg);
}

.track.processing .status .icon.processing,
.track.loading .status .icon.processing,
.track.downloading .status .icon.processing,
.track.uploading .status .icon.processing {
	display: inline-block;
}

.track.success .status .icon.success,
.track.ready .status .icon.success {
	display: inline-block;
}

.track.caution .status .icon.caution {
	display: inline-block;
}

.track.error .status .icon.error {
	display: inline-block;
}

.track.playing .status .icon.playing {
	display: inline-block;
}



html {
	background: #05202d;
}

body {
	margin: 0;
	background-color: rgba(26,25,25,.960784);
	background-size: 16px 16px;
}

h1 {
	color: #c9c5c2;
	font-family: Arial,sans-serif;
	font-size: 17px;
	font-weight: 400;
	text-shadow: 1px 1px 1px #000;
	margin: 5px 0 10px 2px;
	padding: 0;
}

h4 {
	color: #7A8CB4;
}

p {
	color: #FFF;
	font-family: 'Droid Sans',Arial,sans-serif;
	font-size: 17px;
	line-height: 26px;
	margin: 20px 0;
	padding: 0 20px 0 0;
}

ul {
	border-bottom: 1px dotted #212828;
	padding-top: 10px;
	padding-bottom: 10px;
}

ul li {
	list-style: bullet;
	color: #fff;
	margin: 0;
	padding: 0;
}

img {
	width: 100%;
}

header.BG {
	background: #254257;
	height: 55px;
}

header img {
	margin-top: 3%;
}

header.BG ul {
	border: 0;
	float: right;
	font-size: 14px;
	padding: 0;
}

header.BG ul li {
	float: left;
	margin: 16px 10px 0 0;
	list-style-type: none;
}

header.BG ul li a {
	color: #FFF;
}

.row.header {
	margin: 10px 0;
}

.btn-success {
	color: #fff;
	background-color: #254257;
	border-color: #254257;
}

.btn-success.active,.btn-success: active,.btn-success: focus,.btn-success: hover,.open .dropdown-toggle.btn-success {
	color: #fff;
	background-color: #225275;
	border-color: #225275;
}

.navbar-right {
	color: #FFF;
	margin-top: 10px;
}

.nav>li>a {
	padding: 2px 15px;
}

.dropdown-menu {
	background-color: #225275;
	top: 90%;
	width: 200px;
	padding-top: 20px;
	z-index: 1000;
}

.container.middle {
	position: relative;
	z-index; 1;
}

.row.content {
	padding: 0;
	box-shadow: 0 0 2px 0 #222;
	border-top: 2px solid #000;
}

#height {
	overflow-y: scroll;
}

#chat {
	background: #373e4e;
	position: absolute;
	bottom: 21px;
	right: 18px;
	width: 31.3%;
	height: 50%;
}

.playlist {
	background: #4A4B4D;
}

.artist {
	font-size: 13px;
}

.upload-button {
	position: relative;
	display: inline-block;
	float: right;
	margin: 3px 36px 0 0;
	border-radius: 5px;
	font-weight: 700;
	width: 139px;
	text-align: center;
	border: 2px solid rgba(9,34,162,.08);
	background: #FFF;
}

.upload-button input.upload {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.tracks {
	background: #4c4c4c;
	background: -moz-linear-gradient(top,rgba(76,76,76,1)0,rgba(0,0,0,1)86%,rgba(17,17,17,1)100%,rgba(19,19,19,1)100%);
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(76,76,76,1)),color-stop(86%,rgba(0,0,0,1)),color-stop(100%,rgba(17,17,17,1)),color-stop(100%,rgba(19,19,19,1)));
	background: -webkit-linear-gradient(top,rgba(76,76,76,1)0,rgba(0,0,0,1)86%,rgba(17,17,17,1)100%,rgba(19,19,19,1)100%);
	background: -o-linear-gradient(top,rgba(76,76,76,1)0,rgba(0,0,0,1)86%,rgba(17,17,17,1)100%,rgba(19,19,19,1)100%);
	background: -ms-linear-gradient(top,rgba(76,76,76,1)0,rgba(0,0,0,1)86%,rgba(17,17,17,1)100%,rgba(19,19,19,1)100%);
	background: linear-gradient(to bottom,rgba(76,76,76,1)0,rgba(0,0,0,1)86%,rgba(17,17,17,1)100%,rgba(19,19,19,1)100%);
	filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#4c4c4c', endColorstr='#131313', GradientType=0);
	z-index: 1;
	position: relative;
	padding: 5px;
}

.tracks h1 {
	display: inline-block;	
}

.tracks.foot {
	margin-top: -30px;
}
.collapse {
	display: block;
}
#middle {
	bottom: 55px;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 45px;
}

#relative {
	position: relative;
}

a.delete {
	background: #57575A;
	-webkit-border-radius: 28;
	-moz-border-radius: 28;
	border-radius: 69px;
	font-family: Arial;
	color: #fff;
	padding: 0 7px;
	font-weight: 700;
	text-shadow: 1px 1px 1px #222;
	text-decoration: none;
	text-decoration: none;
	float: right;
	margin-right: 20px;
	margin-top: -35px;
	font-size: 17px;
}

.info_banner {
	background: #4c4c4c;
	background: -moz-linear-gradient(top,rgba(76,76,76,1)0,rgba(0,0,0,1)86%,rgba(17,17,17,1)100%,rgba(19,19,19,1)100%);
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(76,76,76,1)),color-stop(86%,rgba(0,0,0,1)),color-stop(100%,rgba(17,17,17,1)),color-stop(100%,rgba(19,19,19,1)));
	background: -webkit-linear-gradient(top,rgba(76,76,76,1)0,rgba(0,0,0,1)86%,rgba(17,17,17,1)100%,rgba(19,19,19,1)100%);
	background: -o-linear-gradient(top,rgba(76,76,76,1)0,rgba(0,0,0,1)86%,rgba(17,17,17,1)100%,rgba(19,19,19,1)100%);
	background: -ms-linear-gradient(top,rgba(76,76,76,1)0,rgba(0,0,0,1)86%,rgba(17,17,17,1)100%,rgba(19,19,19,1)100%);
	background: linear-gradient(to bottom,rgba(76,76,76,1)0,rgba(0,0,0,1)86%,rgba(17,17,17,1)100%,rgba(19,19,19,1)100%);
	filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#4c4c4c', endColorstr='#131313', GradientType=0);
	width: 98%;
	padding: 10px 0 10px 10px;
	border-radius: 0 0 5px;
}

.tabs-menu {
	height: 30px;
	background: #313536;
	margin: 0;
	padding-top: 0;
	z-index: 101;
}

.tabs-menu li {
	height: 30px;
	line-height: 30px;
	float: left;
	margin-right: 10px;
	list-style-type: none;
}

.tabs-menu li.current {
	position: relative;
	z-index: 5;
}

.tabs-menu li a {
	padding: 10px;
	text-transform: uppercase;
	color: #968ea3;
	text-decoration: none;
}

.tabs-menu .current a {
	color: #FFF;
	font-weight: 700;
}

.tab {
	float: left;
	margin-top: 20px;
	width: 100%;
}

.tab-content {
	padding: 0 20px 130px 0;
	display: none;
}

#tab-1 {
	display: block;
}

.onclick-menu {
	position: absolute;
	top: 32px;
	right: 0px;
	margin-top: 15px;
	display: inline-block;
}

.onclick-menu:before {
	content: "+";
	background: #968ea3;
	-webkit-border-radius: 28;
	-moz-border-radius: 28;
	border-radius: 69px;
	font-family: Arial;
	color: #fff;
	padding: 0 8px;
	font-weight: 700;
	text-shadow: 1px 1px 1px #222;
	text-decoration: none;
	text-decoration: none;
	float: right;
	margin-right: 20px;
	margin-top: -32px;
	font-size: 19px;
	outline: 0;
}

.onclick-menu: focus {
	pointer-events: none;
}

.onclick-menu: focus .onclick-menu-content {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.onclick-menu-content {
	position: absolute;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: visibility .5s;
	background: #313536;
	left: -20px;
	text-align: center;
}

ul.onclick-menu-content {
	margin: 0;
	padding: 0;
}

ul.onclick-menu-content li {
	list-style-type: none;
	padding: 3px 0;
	border-bottom: 1px dashed #434943;
}

ul.onclick-menu-content li: last-child {
	border-bottom: none;
}

button {
	background: #313536;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: none;
}

.content {
	xwidth: 960px;
	margin: 0 auto;
	overflow: hidden;
}

#top-stuff {
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 12;
}

#top-bar-out {
	display: block;
	position: relative;
	width: 100%;
	height: 40px;
	background: -moz-linear-gradient(center top,#333,#111);
	background: -webkit-gradient(linear,left top,left bottom,from(#333),to(#111));
	background: -o-linear-gradient(top,#333,#111);
	filter: progid: DXImageTransform.Microsoft.gradient(startColorStr='#333333', EndColorStr='#111111');
	box-shadow: 0 1px 2px #666;
	-webkit-box-shadow: 0 1px 2px #666;
}

#topnav {
	text-align: right;
}

#session {
	cursor: pointer;
	display: inline-block;
	height: 20px;
	padding: 0 12px;
	vertical-align: top;
	white-space: nowrap;
}

#session.active,#session: hover {
	background: rgba(255,255,255,.1);
	color: fff;
}

a#signin-link {
	color: #bababa;
	position: relative;
}

a#signin-link em {
	font-size: 10px;
	font-style: normal;
	margin-right: 4px;
}

a#signin-link strong {
	color: #fff;
}

#signin-dropdown {
	background-color: #202020;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	box-shadow: 0 1px 2px #666;
	-webkit-box-shadow: 0 1px 2px #666;
	min-height: 200px;
	min-width: 160px;
	position: absolute;
	right: 0;
	display: none;
	z-index: 1;
}

#signin-dropdown form {
	cursor: pointer;
	padding: 10px;
	text-align: left;
}

#signin-dropdown .textbox span {
	color: #BABABA;
}

#signin-dropdown .textbox input {
	width: 200px;
}

fieldset {
	border: none;
}

form.signin .textbox label {
	display: block;
	padding-bottom: 7px;
}

form.signin .textbox span {
	display: block;
}

form.signin p,form.signin span {
	color: #999;
	font-size: 11px;
	line-height: 18px;
}

form.signin .textbox input {
	background: #666;
	border-bottom: 1px solid #333;
	border-left: 1px solid #000;
	border-right: 1px solid #333;
	border-top: 1px solid #000;
	color: #fff;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	font: 13px Arial,Helvetica,sans-serif;
	padding: 6px 6px 4px;
}

form.signin .remb {
	padding: 9px 0;
	position: relative;
	text-align: right;
}

form.signin .remb .remember {
	text-align: left;
	position: absolute;
	left: 0;
}

.button {
	background: -moz-linear-gradient(center top,#f3f3f3,#ddd);
	background: -webkit-gradient(linear,left top,left bottom,from(#f3f3f3),to(#ddd));
	background: -o-linear-gradient(top,#f3f3f3,#ddd);
	filter: progid: DXImageTransform.Microsoft.gradient(startColorStr='#f3f3f3', EndColorStr='#dddddd');
	border-color: #000;
	border-width: 1px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	color: #333;
	cursor: pointer;
	display: inline-block;
	padding: 4px 7px;
	margin: 0;
	font: 12px;
}
.button: hover {
	background: #ddd;
}
.btn {
	float: right;
	border-width: 1px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	color: #333;
	cursor: pointer;
	display: inline-block;
	font-size: 15px;
    margin: 3px 5px;
    padding: 2px 10px;
	color: #FFF;
}
.btn-sm {
	margin-top: 15px;
}
.btn-danger {
color: #fff;
background-color: #968ea3;
border-color: #787085;
}
.btn-danger:hover {
color: #fff;
background-color: purple;
border-color: #787085;
}
.onclick-menu {
	display: none;
}
.modal-content {
	padding: 10px 0 80px 0;
}

footer {
	background: #2e4f66;
	background: -moz-linear-gradient(top,rgba(46,79,102,1)0,rgba(5,32,45,1)100%);
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(46,79,102,1)),color-stop(100%,rgba(5,32,45,1)));
	background: -webkit-linear-gradient(top,rgba(46,79,102,1)0,rgba(5,32,45,1)100%);
	background: -o-linear-gradient(top,rgba(46,79,102,1)0,rgba(5,32,45,1)100%);
	background: -ms-linear-gradient(top,rgba(46,79,102,1)0,rgba(5,32,45,1)100%);
	background: linear-gradient(to bottom,rgba(46,79,102,1)0,rgba(5,32,45,1)100%);
	filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#2e4f66', endColorstr='#05202d', GradientType=0);
	box-shadow: 0 1px 0 #000 inset,0 2px 0 rgba(255,255,255,.2)inset;
	padding-bottom: 35px;
}

footer img {
	display: inline-block;
	width: 20%;
	margin: 3% 2% 0 0;
}

 /* Lastly, apply responsive CSS fixes as necessary */
      @media (max-width: 767px) {
        #footer {
          margin-left: -20px;
          margin-right: -20px;
          padding-left: 20px;
          padding-right: 20px;
        }
	  }

#notifications {
	position: fixed;
	top: -1px;
	left: 0px;
	height: 1px;
	width: 100%;
	margin-top: 1px;
	z-index: 10000;
}

#notifications .notification {
	position:relative;
	left: 20%;
	width: 40%;
	background-color: rgba(150, 150, 150, 0.8);
	text-align: center;
	line-height: 25px;
	font-size: 18px;
	padding: 10px;
	font-weight: bold;
	color: #ffffff;
	border-top: 2px dashed black;
	transition: border-radius 0.5s;
	-o-transition: -o-border-radius 0.5s;
	-ms-transition: -ms-border-radius 0.5s;
	-moz-transition: -moz-border-radius 0.5s;
	-webkit-transition: -webkit-border-radius 0.5s;
}

#notifications .notification:first-child {
	border-top: none;
}

#notifications .notification:last-child {
	border-radius: 0px 0px 20px 20px;
	-o-border-radius: 0px 0px 20px 20px;
	-ms-border-radius: 0px 0px 20px 20px;
	-moz-border-radius: 0px 0px 20px 20px;
	-webkit-border-radius: 0px 0px 20px 20px;
}

#notifications .notification.success {
	background-color: rgba(0, 255, 120, 0.8);
}

#notifications .notification.warning {
	background-color: rgba(255, 230, 0, 0.8);
}

#notifications .notification.error {
	background-color: rgba(255, 30, 50, 0.8);
}


#notifications .notification .close {
	height: 20px;
	width: 20px;
	float: right;
	background-color: rgba(100, 100, 100, 0.8);
	opacity: 1;
	font-size: 15px;
	font-weight: bold;
	line-height: 20px;
	border-radius: 20px;
	-o-border-radius: 20px;
	-ms-border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	transition: background-color 0.2s;
	-o-transition: background-color 0.2s;
	-ms-transition: background-color 0.2s;
	-moz-transition: background-color 0.2s;
	-webkit-transition: background-color 0.2s;
}

#notifications .notification .close:after {
	content: "X";
	color: #ffffff;
}

#notifications .notification .close:hover {
	background-color: rgba(255, 0, 0, 0.5);
}

@media screen and (max-width: 1920px) {
	#height_container {
		height: 685px;
	}

	#height {
		height: 625px;
	}
}


@media screen and (max-width: 1440px) {
	#height,#height_container {
		height: 500px;
	}
}


@media screen and (max-width: 1366px) {
	#height_container {
		height: 460px;
	}

	#height {
		height: 400px;
	}
}


@media screen and (max-width: 1280px) {
	#height_container {
		height: 470px;
	}

	#height {
		height: 470px;
	}
}


@media screen and (max-width: 768px) {
	#height,#height_container {
		height: 725px;
	}

	header img {
		width: 80%;
		margin-top: 3%;
		margin-left: 4%;
	}

	#chat {
		display: none;
	}
}


@media screen and (max-width: 720px) {
	#height,#height_container {
		height: 400px;
	}
}


@media screen and (max-width: 600px) {
	header img {
		width: 74%;
		margin-top: 3.5%;
		margin-left: 5%;
	}

	footer img {
		width: 15%;
	}

	footer .col-xs-12 {
		text-align: center;
		margin-top: 2.5%;
		padding-bottom: 175px;
	}
}


@media screen and (max-width: 480px) {
	#height,#height_container {
		height: 280px;
	}

	header img {
		width: 100%;
		margin-left: 6%;
		margin-top: 8%;
	}

	.tab-content {
		padding: 0;
	}
	
	.track .artwork {
		display: none;
	}

	footer img {
		width: 22%;
		margin: 5% 0 0 2%;
	}
}
