@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600);

*,
:before,
:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	background: #e8e8e8;
	font-family: 'Open Sans', sans-serif;
	height: 100vh;
	overflow: hidden;
}

.content-wrapper {
  width: 100%;
  height: 100%;
} 

.player-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	position: fixed;
	bottom: 0px;
	left: 0px;
	right: 0px;
}

h1 {
	font-family: 'Open Sans', sans-serif;
	font-size: 13pt;
	font-weight: 600;
	text-transform: uppercase;
	color: rgb(255, 255, 255);
	cursor: default;
}

h2 {
	font-family: 'Open Sans', sans-serif;
	font-size: 13pt;
	font-weight: 300;
	color: rgb(255, 255, 255);
	cursor: default;
}

.player {
	max-width: calc(100% - 10px);
	background: rgb(36,35,42);
	background: linear-gradient(0deg, rgba(36,35,42,1) 0%, rgba(47,45,56,1) 50%, rgba(36,35,42,1) 100%);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-left: 15px;
	margin-right: 15px;
	margin-top: 30px;
	padding: 15px 15px 45px 15px;
	border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	text-align: center;
	max-height: 100%;
}

.player ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-height: 100%;
}

.player ul li {
	display: block;
	position: relative;
}

.player ul .arm-artwork {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 190px;
	flex: 1 1 190px;
	margin-bottom: 15px;
}

.player ul .info {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.arm-artwork .play {
	position: relative;
	display: block;
}

#arm {
	width: 110px;
	height: 110px;
	position: absolute;
	z-index: 1;
	top: 50px;
	right: -15px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: 77.5% 18.5%;
	-ms-transform-origin: 77.5% 18.5%;
	transform-origin: 77.5% 18.5%;
	background-image: url(../arm.png);
	background-size: cover;
	-webkit-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
}

.artwork {
	display: inline-block;
	height: 0px;
	width: 100%;
	background: url(../lpDisk-min.png), url(../stockThumb.png) center no-repeat;
	background-size: 100%, 40%;
	padding-bottom: 100%;
}

.info h1 {
	margin: 15px 0;
}

.info h2 {
	white-space: nowrap;
	margin: 5px;
	width: auto;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

#slider {
	height: 4px;
	background: rgb(21, 21, 24);
	border-radius: 2px;
	overflow: hidden;
}

#timer {
	color: rgb(99, 99, 103);
	line-height: 0;
	font-size: 9pt;
	float: right;
	margin-bottom: 25px;
}

.button-items {
	position: relative;
}

.controls {
	margin-top: 15px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	height: 48px;
	width: 100%;
}

.controls.vote-control {
	color: #FFF;
	text-align: center;
	height: auto;
	position: absolute;
	top: 15px;
}

.vote-control p {
	margin-top: 0;
	margin-bottom: 0;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 33.3333%;
	flex: 1 1 33.3333%;
	line-height: 22px;
	position: relative;
	z-index: 2;
}

.vote-control .votes-down:after,
.vote-control .votes-up:after {
	content: "";
	width: 22px;
	height: 22px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(50% - 11px);
	display: block;
	background: #27262e;
	border-radius: 50%;
	z-index: -1;
}

#play g {
	stroke: rgb(254, 254, 254);
	stroke-width: 1;
	stroke-miterlimit: 10;
}

#play g path {
	fill: rgb(254, 254, 254);
}

#play:hover {
	cursor: pointer;
}

#play:hover g {
	stroke: rgb(239, 109, 188);
	cursor: pointer;
}

#play:hover g path {
	fill: rgb(239, 109, 188);
	cursor: pointer;
}

#play.playing {
	visibility: hidden;
	opacity: 0;
	display: none;
}

#play {
	display: inline;
	cursor: pointer;
}

#pause {
	display: none;
	cursor: pointer;
}

#play.playing+#pause {
	display: inline;
}

#pause,
#play {
	x: 0px;
	y: 0px;
	enable-background: new 0 0 25 25;
	width: 48px;
	height: 48px;
	cursor: pointer;
	-webkit-box-shadow: 0px 0px 4px 2px #3a3a3a;
	box-shadow: 0px 0px 4px 2px #3a3a3a;
	border-radius: 100%;
	left: 0px;
	right: 0px;
	margin: auto;
}

#pause rect {
	fill: rgb(255, 255, 255);
}

#pause:hover rect {
	fill: rgb(239, 109, 188);
}

.thumbs-up,
.thumbs-down {
	width: 42px;
	height: 42px;
	cursor: pointer;
	-webkit-box-shadow: 0px 0px 4px 2px #3a3a3a;
	box-shadow: 0px 0px 4px 2px #3a3a3a;
	border-radius: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.thumbs-up svg,
.thumbs-down svg {
	padding: 9px;
	height: 44px;
	width: 44px;
	border-radius: 100%;
	border: 2px solid #FFF;
	overflow: visible;
}

@-webkit-keyframes spinning {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spinning {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.is-playing .artwork {
	-webkit-animation: spinning;
	animation: spinning;
	-webkit-animation-duration: 4s;
	animation-duration: 4s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-delay: 1.3s;
	animation-delay: 1.3s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

.is-playing #arm {
	-webkit-transform: rotate(-25deg);
	-ms-transform: rotate(-25deg);
	transform: rotate(-25deg);
}

.feather-music {
	margin-right: 15px;
}

.current-song {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: black;
	padding: 5px;
	border: 1px solid #333;
	border-radius: 2px;
	width: 280px;
	max-width: 100%;
	color: #fff;
}

.title-wrapper {
	width: calc(100% - 37px);
	text-align: left;
	overflow: hidden;
}

#title {
	white-space: nowrap;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.title-wrapper.animate {
	overflow: hidden;
}

.title-wrapper.animate #title {
	-webkit-animation: slide-left;
	animation: slide-left;
	-webkit-animation-duration: 10s;
	animation-duration: 10s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

@-webkit-keyframes slide-left {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
	50% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
	70% {
		-webkit-transform: translateX(calc(-100% + 180px));
		transform: translateX(calc(-100% + 180px));
	}
	100% {
		-webkit-transform: translateX(calc(-100% + 180px));
		transform: translateX(calc(-100% + 180px));
	}
}

@keyframes slide-left {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
	50% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
	70% {
		-webkit-transform: translateX(calc(-100% + 180px));
		transform: translateX(calc(-100% + 180px));
	}
	100% {
		-webkit-transform: translateX(calc(-100% + 180px));
		transform: translateX(calc(-100% + 180px));
	}
}

.bar-wrapper {
	height: 300px;
	position: relative;
}

.bar {
	position: relative;
	bottom: 0;
	width: 5px;
	display: inline-block;
	border: 1px solid red;
	height: 5px;
	border-bottom: 3px solid #fff;
}

.liveChat {
	z-index: 3;
	position: absolute;
	background: rgb(40, 43, 47);
	color: #fff;
	border-radius: 0 0 15px 15px;
	top: 0px;
	height: 43px;
	overflow: hidden;
	-webkit-transition: all ease .3s;
	-o-transition: all ease .3s;
	transition: all ease .3s;
	margin: auto;
}

.liveChatInner {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	overflow: hidden;
	max-height: calc(100vh - 120px);
	padding-bottom: 15px;
}

.liveChat.open {
	height: unset;
	-webkit-transition: all ease .3s;
	-o-transition: all ease .3s;
	transition: all ease .3s;
}

.liveChatBanner {
	text-align: center;
	padding: 10px 5px;
	border-bottom: 1px solid rgb(60, 62, 67);
}

.innerChat {
	max-height: calc(100% - 160px);
	margin: 0px 15px 15px 15px;
	background: #24232a;
	padding: 10px;
	border-radius: 5px;
	overflow-y: scroll;
}

.innerChat .msg {
	display: inline-block;
	margin-bottom: 5px;
	max-width: 90%;
	padding: 10px;
	background: #282b2f;
	border-radius: 5px;
	width: 100%;
}

.chatInput {
	padding: 15px 15px 15px 15px;
}

#yourMsg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.chatMessage {
	width: 100%;
	border-radius: 5px;
	height: 40px;
	margin-right: 15px;
	padding-left: 10px;
}

.chatInput svg {
	height: 40px;
	width: 40px;
	padding: 0 5px;
}

#sendMessage {
	-webkit-appearance: none;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	display: inline-block;
}

.msg p {
	margin: 0px;
}

.msg.announcement {
	max-width: unset;
	display: inline-block;
	margin: 0 0 3px 0;
	background: none;
	text-align: center;
	font-size: 14px;
	color: #c7c7c7;
}

.msg.yours {
	float: right;
	background: #2f3c4b;
}

.liveChat.new-msg:after {
	content: ".";
	position: absolute;
	right: 15px;
	top: 0px;
	height: 43px;
	line-height: 7px;
	font-size: 60px;
	color: red;
}

.liveChat:before {
	content: "^";
	position: absolute;
	left: 20px;
	top: 0px;
	height: 43px;
	line-height: 46px;
	font-size: 18px;
	color: white;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
	-webkit-transform: scale(1.5, 1);
	-ms-transform: scale(1.5, 1);
	transform: scale(1.5, 1);
}

.liveChat.open:before {
	-webkit-transform: scale(1.5, -1);
	-ms-transform: scale(1.5, -1);
	transform: scale(1.5, -1);
}

.liveChat.new-msg.open:after {
	display: none;
}

.msg-sender,
.msg-time {
	display: inline-block;
}

.msg-sender {
	width: 49%;
}

.msg-time {
	width: 49%;
	text-align: right;
	color: #7b7b7b;
}

.innerChat::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #7b7b7b;
}

.innerChat::-webkit-scrollbar {
	width: 6px;
	background-color: #7b7b7b;
}

.innerChat::-webkit-scrollbar-thumb {
	background-color: #000000;
}

.messageLabel {
	display: none;
}

.hidden-title {
	display: none;
}

.voted-up .thumbs-up svg {
	border-color: #00ff43;
	stroke: #00ff43;
}

.voted-down .thumbs-down svg {
	border-color: #ff0000;
	stroke: #ff0000;
}

@media (min-width: 768px) {
	.content-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.liveChat {
		position: relative;
		max-width: 600px;
		max-height: unset;
		height: 100vh;
		left: unset;
		right: 0;
		border-radius: 0px;
	}
	.liveChat:before {
		display: none;
	}
	.liveChat.open {
		height: 100vh;
	}
	.player-wrapper {
		position: relative;
		max-height: 600px;
	}
	.liveChat.new-msg:after {
		display: none;
	}
	.liveChatInner {
		max-height: 100%;
	}
}

/* DASHBOARD CSS */
.dashboard {
	height: unset;
	overflow: initial;
}

.dashboard .header {
	background: rgb(40, 43, 47);
	padding: 15px 0;
	margin-bottom: 15px;
}

.dashboard .header h1 {
	display: inline-block;
}

.dashboard .header svg {
	display: inline-block;
	vertical-align: middle;
	margin-left: 15px;
}

.dashboard .container {
	max-width: 1080px;
	width: 96%;
	margin-left: auto;
	margin-right: auto;
}

.dashboard .main-data-section {
	margin-top: 15px;
	padding: 15px 0;
}

.dashboard .data-header {
	background: #dddddd;
    border: 1px solid #aaa;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #666;
	font-size: 1rem;
}

.dashboard .data-header th {
	padding: 0.9rem;
}

.dashboard .data-header > div:last-child {
	border-right: none;
}

.dashboard .select-sorting {
	margin-top: 5px;
	margin-bottom: 5px;
}

.dashboard .select-sorting span {
	display: block;
	cursor: pointer;
	margin-right: 5px;
	display: inline-block;
}

.dashboard .select-sorting svg {
	width: 18px;
	height: 18px;
}

.dashboard .data-rows {
	width: 100%;
}

.dashboard .data-row {
	background: #F0F0F0;
	color: #444;
	font-size: 0.9rem;
}

.dashboard td {
	padding: 0.2rem 0.9rem;
}

.dashboard .base-upvotes,
.dashboard .base-downvotes,
.dashboard .base-upvote-percentage,
.dashboard .base-downvote-percentage {
	text-align: center;
}

.goback {
	display: inline-block;
	float: right;
	cursor: pointer;
}

.goback a {
	color: #FFF;
}

#castme,
#appme {
	cursor: pointer;
	border: none;
	background-color: transparent;
	border-radius: 0px;
	outline: none;
	width: 48px;
	height: 48px;
	position: fixed;
	top: 3px;
	left: 3px;
	font-size: 0px;
	z-index: 99;
	background-size: 70%;
	background-position: center;
	background-repeat: no-repeat;
}

#castme {
	background-image: url("data:image/svg+xml,%3Csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:sketch='http://www.bohemiancoding.com/sketch/ns'%3E%3C!-- Generator: Sketch 3.2.2 (9983) - http://www.bohemiancoding.com/sketch --%3E%3Ctitle%3Eic_cast_black_24dp%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' sketch:type='MSPage'%3E%3Cg id='ic_cast_black_24dp' sketch:type='MSArtboardGroup' stroke='none'%3E%3Cg id='ic_remove_circle_white_24dp' sketch:type='MSLayerGroup'%3E%3Cpath d='M1,18 L1,21 L4,21 C4,19.34 2.66,18 1,18 L1,18 Z M1,14 L1,16 C3.76,16 6,18.24 6,21 L8,21 C8,17.13 4.87,14 1,14 L1,14 Z M1,10 L1,12 C5.97,12 10,16.03 10,21 L12,21 C12,14.92 7.07,10 1,10 L1,10 Z M21,3 L3,3 C1.9,3 1,3.9 1,5 L1,8 L3,8 L3,5 L21,5 L21,19 L14,19 L14,21 L21,21 C22.1,21 23,20.1 23,19 L23,5 C23,3.9 22.1,3 21,3 L21,3 Z' id='cast' fill='%23444' sketch:type='MSShapeGroup'%3E%3C/path%3E%3Crect id='bounds' sketch:type='MSShapeGroup' x='0' y='0' width='24' height='24'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3Cg id='assets' sketch:type='MSLayerGroup' transform='translate(-208.000000, -106.000000)'%3E%3Cg id='64px' transform='translate(0.000000, 114.000000)'%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#castme.disabled {
	opacity: .3;
	pointer-events: none;
}

#castme.connected {
	background-image: url("data:image/svg+xml,%3Csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:sketch='http://www.bohemiancoding.com/sketch/ns'%3E%3C!-- Generator: Sketch 3.2.2 (9983) - http://www.bohemiancoding.com/sketch --%3E%3Ctitle%3Eic_cast_connected_black_24dp%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' sketch:type='MSPage'%3E%3Cg id='ic_cast_connected_black_24dp' sketch:type='MSArtboardGroup'%3E%3Cg id='ic_remove_circle_white_24dp' sketch:type='MSLayerGroup'%3E%3Cpath d='M1,18 L1,21 L4,21 C4,19.34 2.66,18 1,18 L1,18 Z M1,14 L1,16 C3.76,16 6,18.24 6,21 L8,21 C8,17.13 4.87,14 1,14 L1,14 Z M19,7 L5,7 L5,8.63 C8.96,9.91 12.09,13.04 13.37,17 L19,17 L19,7 L19,7 Z M1,10 L1,12 C5.97,12 10,16.03 10,21 L12,21 C12,14.92 7.07,10 1,10 L1,10 Z M21,3 L3,3 C1.9,3 1,3.9 1,5 L1,8 L3,8 L3,5 L21,5 L21,19 L14,19 L14,21 L21,21 C22.1,21 23,20.1 23,19 L23,5 C23,3.9 22.1,3 21,3 L21,3 Z' id='cast-on' fill='%23444' sketch:type='MSShapeGroup'%3E%3C/path%3E%3Crect id='bounds' sketch:type='MSShapeGroup' x='0' y='0' width='24' height='24'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3Cg id='assets' sketch:type='MSLayerGroup' transform='translate(-336.000000, -106.000000)'%3E%3Cg id='64px' transform='translate(0.000000, 114.000000)'%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
} 

#data-nowplaying {
	display: none;
}

#appme {
	left: unset;
	right: 0px;
	background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fab' data-icon='whatsapp' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' class='svg-inline--fa fa-whatsapp fa-w-14 fa-3x'%3E%3Cpath fill='%23444' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z' class=''%3E%3C/path%3E%3C/svg%3E");
}

.time-slider {
	height: 8px;
    background: #a7a8aa;
    border: 1px solid #333;
    position: relative;
}

.time-inner {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: #EEE
}

.time-inner.run-animation {	
	animation-name: timerKeys;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@keyframes timerKeys {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}
