::-webkit-scrollbar {
	width: 8px;
	height: 10px;
}

::-webkit-scrollbar-track {
	background: transparent;
	box-shadow: none;
	margin: 0 5px;
	padding: 0 3px;
}

::-webkit-scrollbar-thumb {
	background: #f6d300;
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 1) inset;
	border: none;
	cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
	background: #d1b200;
}
html,body{
	width: 100vw;
	height: 100vh;
	overflow: auto;
	height: -webkit-fill-available;
}

html{
	background-color: #000;
	background-position: center center;
	background-repeat: repeat;
}

@supports (-webkit-touch-callout: none){
	html,body{
		height: -webkit-fill-available;
	}
}

body{
	background-color: rgba(0, 0, 0, .15);
}

.player-wrap{
	height: 100vh;
	overflow: hidden;
	width: 400px;
	max-width: 100%;
}

@media (max-width: 430px) {
	.player-wrap{
		width: 100%;
		margin: 0 auto;
	}
}

.player-wrap .player-header,
.player-wrap .player-footer{
	height: 60px;
	color: rgba(246, 211, 0, 1);
	line-height: 60px;
	text-align: center;
	font-family: "Roboto";
}
.player-wrap .player-footer{
	color: rgba(246, 211, 0, 1);
	line-height: 60px;
	text-align: center;
}

.player-wrap .player-wave {
	height: 150px;
	border: solid 1px ;
	box-shadow: 0 0 0 1px rgba(246, 211, 0, .5);
}
.player-wrap .player-wave canvas {
	width: 100%;
	height: 150px;
}

.player-wrap .player-progress{
	height: 50px;
}

.player-wrap .player-progress .timer {
	color: rgba(246, 211, 0, .5);
}

.player-wrap .player-progress .outer-line {
	width: 100%;
	height: 10px;
	background-color: #F6D300;
	box-shadow: 0 0 0 1px #000;
	cursor: pointer;
	padding: 3px;
}

.player-wrap .player-progress .outer-line .outer-line-wrap {
	width: 100%;
	height: 100%;
	position: relative;
}

.player-wrap .player-progress .outer-line .outer-line-wrap .slider {
	position: absolute;
	top: -8px;
	left: -10px;
	width: 20px;
	height: 20px;
	z-index: 5;
}

.player-wrap .player-progress .outer-line .outer-line-wrap .slider::after,
.player-wrap .player-progress .outer-line .outer-line-wrap .slider::before {
	content: "";
	position: absolute;
	background-color: #F6D300;
	border-radius: 50%;
	pointer-events: none;
}

.player-wrap .player-progress .outer-line .outer-line-wrap .slider::before {
	width: 14px;
	height: 14px;
	left: 3px;
	top: 3px;
	box-shadow: 0 0 0 2px #000;
}

.player-wrap .player-progress .outer-line .outer-line-wrap .slider::after {
	width: 6px;
	height: 6px;
	left: 7px;
	top: 7px;
	background-color: #000;
}

.player-wrap .player-progress .outer-line .outer-line-wrap .slider.move {
	transform: scale(1.0);
}

.player-wrap .player-progress .outer-line .outer-line-wrap .slider.move::before {
	box-shadow: 0 0 0 3px #000;
}

.player-wrap .player-progress .outer-line .outer-line-wrap .slider.move::after {
	background-color: #f00;
}

.player-wrap .player-progress .outer-line .line,
.player-wrap .player-progress .outer-line .buffer {
	position: absolute;
	top: 0;
	left: 0;
	height: 4px;
	background-color: #000;
	z-index: 2;
}

.player-wrap .player-progress .outer-line .buffer {
	z-index: 1;
	background-color: rgba(0, 0, 0, .3);
}

.player-wrap .player-control{
	height: 60px;
}

.player-wrap .player-list{
	height: calc(100vh - 380px);
}
.player-wrap .player-list .list-title{
	height: 30px;
}
.player-wrap .player-list .list-title a{
	height: 30px; 
	line-height: 30px;
	padding: 0 15px;
	background-color: rgba(0, 0, 0, .3);
	color: rgba(246, 211, 0, .75);
	margin-right: 1px;
}
.player-wrap .player-list .list-title a.active{
	background-color: rgba(246, 211, 0, 1);
	color: #000;
}
.player-wrap .player-list .list-details{
	height: calc(100vh - 410px);
	border: solid 1px rgba(246, 211, 0, 1);
	background-color: rgba(0, 0, 0, .3);
	overflow-x: hidden;
	overflow-y: scroll;
}

.player-wrap .player-list .list-details a{
	height: 30px;
	line-height: 30px;
	padding: 0 10px;
	color: rgba(246, 211, 0, 1);
	font-family: "Roboto";
	white-space: nowrap;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	letter-spacing: 1px;
	background-color: rgba(246, 211, 0, 0);
	transition: all .2s;
	user-select: none;
	position: relative;
}
.player-wrap .player-list .list-details a:not(:last-child){
	margin-bottom: 1px;
}
.player-wrap .player-list .list-details a:hover{
	background-color: rgba(246, 211, 0, .75);
	text-decoration: none;
	color: #000;
}
.player-wrap .player-list .list-details a.active{
	background-color: rgba(246, 211, 0, 1);
	color: #000;
}

.player-wrap .btn-player {
	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;
	height: 30px;
	width: 30px;
	padding: 0;
	text-align: center;
	border: none;
	border-radius: 50%;
	background-color: transparent;
	color: rgba(246, 211, 0, 1);
	background-color: rgba(0, 0, 0, 0);
	font-size: 16px;
	transition: all .15s ease;
	cursor: url(/resources/cursor/Arrow.cur), pointer;
}

.player-wrap .btn-player:hover {
	color: #000;
	background-color: #F6D300;
	transform: scale(1.2);
}

.player-wrap .btn-player:disabled{
	cursor: not-allowed;
	opacity: .5;
}

.player-wrap .hm {
	cursor: url(/resources/cursor/Hand.cur), pointer;
}

.player-wrap .hm em {
	text-decoration: none;
	font-style: normal;
}

.player-wrap .hm span {
	display: inline-block;
	height: 35px;
	line-height: 35px;
	color: rgba(246, 211, 0, 1);
	cursor: pointer;
	padding: 0 6px;
	border-radius: 10px;
}

.player-wrap .hm span:hover {
	background-color: #0f0f0f;
	color: #F6D300;
}

.player-wrap .hm .hovermenu,
.player-wrap .hm .dropmenu {
	background-color: #F6D300;
	border-color: #000;
	padding: 15px;
}

.player-wrap .hm .hovermenu::after,
.player-wrap .hm .dropmenu::after {
	background-color: #F6D300;
	border-color: #000;
}

.player-wrap .hm .hovermenu li,
.player-wrap .hm .dropmenu li {
	color: #000000;
	height: 20px;
	line-height: 20px;
}

.player-wrap .hm .hovermenu li.active,
.player-wrap .hm .dropmenu li.active,
.player-wrap .hm .hovermenu li:hover,
.player-wrap .hm .dropmenu li:hover {
	background-color: #000000;
	color: #F6D300;
	text-align: center;
}

.player-wrap .inner-scale{
	font-family: "OS";
	letter-spacing: 0;
	display: inline-block;
	transform: scale(0.8);
}

.player-notice {
	position: fixed;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 3000;
	top: 0;
	left: 0;
}
.player-notice.top {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.player-notice.middle {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.player-notice .message{
	background: rgba(0, 0, 0, 0.8);
	color: #FFF;
	margin: 100px 30px;
	padding: 15px;
	border-radius: .25em;
	max-width: 300px;
	line-height: 1.5;
	white-space: normal;
	word-break: break-all;
	letter-spacing: 1px;
	user-select: none;
	font-family: "ROBOTO";
	font-size: 12px;
	text-align: center;
}
.player-notice.red .message {
	background: #CC0000;
}

.player-notice.warning .message {
	background: #FF6600;
}

.player-notice.primary .message {
	background: #0099FF;
}

.player-notice.animate {
	visibility: visible;
	animation: show-hide .3s;
	animation-fill-mode: forwards;
}

.show-hide {
	animation: show-hide .3s;
	animation-fill-mode: forwards;
}

.hide-show {
	animation: hide-show .3s;
	animation-fill-mode: forwards;
}

@keyframes show-hide {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes hide-show {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}