* {
	line-height: 1.2;
	font: inherit;
	outline: none;
	border: none;
	padding: 0;
	margin: 0;
}

*::-webkit-scrollbar {
	background: transparent;
	width: 0px;
}

html, body {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-overflow-scrolling: touch;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	color-scheme: dark;
	user-select: none;
	overflow: hidden;
	height: 100%;
	width: 100%;

}

body {
	font: 14px 'Roboto', Helvetica, Arial, Sans-serif;
	background-color: #333;
	font-size: 14px;
	color: white;
}

#app {
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
	transform: translate(-50%, -50%);
	flex-direction: column;
	position: absolute;
	max-height: 840px;
	max-width: 420px;
	display: flex;
	height: 100%;
	width: 100%;
	left: 50%;
	top: 50%;
}

#header {
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
	box-sizing: border-box;
	background-color: #000;
	position: relative;
	padding-right: 5px;
	padding-left: 15px;
	font-size: 18px;
	z-index: 1;
}

#header span, #header i {
	line-height: 50px;
}

#header span {
	font-weight: 500;
}

#header span b {
	color: #cd2323;
}

#header i {
	transition: background-color 200ms linear;
	display: inline-block;
	border-radius: 100%;
	line-height: 44px;
	cursor: pointer;
	padding: 0 10px;
	margin: 3px 0;
}

#searcher {
	background-color: inherit;
	position: absolute;
	color: inherit;
	display: none;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}

#searcher input {
	background-color: inherit;
	box-sizing: border-box;
	color: inherit;
	padding: 15px;
	height: 100%;
	width: 100%;
}

#playList {
	overflow: auto;
	flex: 1;
}

.nerdcast {
	background-position: center;
	background-size: cover;
	position: relative;
	height: 200px;
}

.nerdcast::before {
	background: linear-gradient(to top, black 0%, transparent 100%);
	position: absolute;
	height: 120px;
	width: 100%;
	content: '';
	bottom: 0;
}

.nerdcast .bottom {
	box-sizing: border-box;
	position: absolute;
	padding: 0 10px;
	bottom: 12px;
	width: 100%;
}

.nerdcast .play {
	background-color: #666;
	border-radius: 100%;
	text-align: center;
	line-height: 36px;
	display: block;
	float: left;
	width: 36px;
}

.nerdcast .info {
	width: calc(100% - 36px);
	box-sizing: border-box;
	padding-left: 10px;
	padding-top: 2px;
	float: left;
}

#playerTitle,
.nerdcast .title {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.nerdcast .subtitle {
	color: #888;
}

.nerdcast .progress {
	background-color: #cd2323;
	position: absolute;
	height: 3px;
	bottom: 0;
	width: 0;
	left: 0;
}

#footer {
	box-shadow: 0 -2px 5px 0 rgba(0, 0, 0, 0.3);
	background-color: #222;
	position: relative;
	color: #f1f3f4;
}

#footer:empty {
	display: none;
}

#playerInfo {
	padding: 0 16px;
	padding-top: 16px;
	position: relative;
}

#playerExpand {
	transition: transform 400ms;
	transform: rotate(180deg);
	border-radius: 100%;
	position: absolute;
	font-size: 32px;
	right: 20px;
	top: 15px;
}

.expanded #playerExpand {
	transform: rotate(0deg);
}

#playerTitle, #playerSubtitle {
	width: calc(100% - 32px);
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

#playerTitle {
	font-weight: 500;
}

#playerSubtitle {
	color: #888;
}

#playerInsertion {
	padding: 16px;
	padding-top: 10px;
	padding-bottom: 0;
}

#playerInsertion:empty::before,
#playerInsertion a {
	background-color: #222;
	min-height: 144px;
	display: block;
	width: 100%;
	content: '';
}

#playerInsertion a::after {
	display: table;
	content: '';
	clear: both;
}

#playerInsertion img {
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
	float: left;
	width: 100%;
}

#footer {
	display: none;
}

#footer.open {
	display: block;
}

#playerControls {
	position: relative;
	text-align: center;
	margin-top: 15px;
	padding: 0 20px;
	z-index: 1;
}

#playerControls::after {
	display: table;
	clear: both;
	content: '';
}

#playerControls i {
	margin-bottom: -12px;
	margin-top: -12px;
	border-radius: 100%;
	line-height: 64px;
	font-size: 38px;
	height: 64px;
	width: 64px;
	float: left;
}

#playerPlay {
	font-size: 48px;
}

#playerPlay::before {
	vertical-align: top;
	content: 'play_arrow';
}

#playerPlay.playing::before {
	font-size: 38px;
	content: 'pause';
}

#playerControls span {
	width: calc(50% - 96px);
	line-height: 40px;
	display: block;
	float: left;
}

#playerAudio {
	height: 40px;
	width: 100%;
}

#playerJump {
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
	transform: translateX(-50%);
	text-transform: uppercase;
	background-color: #cd2323;
	white-space: nowrap;
	position: absolute;
	border-radius: 3px;
	padding: 8px 16px;
	font-weight: 500;
	display: none;
	color: white;
	top: -50px;
	left: 50%;
}

@keyframes ripple {
	0% {
		transform: translate(-50%, -50%) scale(0);
		opacity: 0.5;
	}

	60% {
		opacity: 1;
	}

	100% {
		transform: translate(-50%, -50%) scale(2);
		opacity: 0;
	}
}

.ripple, .ripplew {
	position: relative;
	overflow: hidden;
}

.ripple.abs, .ripplew.abs { position: absolute; }
.ripple.fix, .ripplew.fix { position: fixed; }

.ripple-container {
	pointer-events: none;
	position: absolute;
}

.ripple-container .ripple-effect {
	background-color: rgba(0, 0, 0, 0.1);
	transform: translate(-50%, -50%);
	animation: ripple 500ms ease-in;
	will-change: transform, opacity;
	border-radius: 100%;
	position: absolute;
	opacity: 0;
	left: 50%;
	top: 50%;
}

.ripple-container .ripple-effect.white {
	background-color: rgba(255, 255, 255, 0.2);
}

.md-ico {
	font-family: 'Material Icons';
	text-rendering: optimizeLegibility;
	font-feature-settings: 'liga' 1;
	vertical-align: middle;
	font-style: normal;
	text-transform: none;
	line-height: 1;
	font-size: 24px;
	display: inline-block;
	overflow: hidden;
	-webkit-font-smoothing: antialiased;
}

audio::-webkit-media-controls-panel {
	padding: 5px;
}
/*
audio::-webkit-media-controls-mute-button {
	display: none;
}
*/
audio::-webkit-media-controls-play-button {
	display: none;
}

audio::-webkit-media-controls-current-time-display {
	display: none;
}

audio::-webkit-media-controls-time-remaining-display {
	display: none;
}

audio::-webkit-media-controls-enclosure {
	background-color: #222;
}

#playerPrevious, #playerNext {
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
	transform: translateY(-50%);
	background-color: #f1f3f4;
	border-radius: 100%;
	text-align: center;
	position: absolute;
	line-height: 64px;
	font-size: 42px;
	width: 64px;
	color: #222;
	top: 50%;
}

#playerPrevious {
	text-indent: -3px;
	left: -130px;
}

#playerNext {
	text-indent: 3px;
	right: -130px;
}
