@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
.p3-wrapper {
	font-family: 'Roboto', sans-serif;
	position: relative;
	z-index: 998;
}
.p3-wrapper a {
	color: inherit;
	text-decoration: none;
}
.p3-player {
	max-width: 440px;
	height: 400px;
	margin: 0 auto;
	position: relative;
	transition: max-width ease .4s;
}
.p3-artwork {
	width: 170px;
	height: 170px;
	background-size: cover;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	box-shadow: 4px 1px 9px rgba(0,0,0,.2);
	-moz-box-shadow: 4px 1px 9px rgba(0,0,0,.2);
	-webkit-box-shadow: 4px 1px 9px rgba(0,0,0,.2);
	border-radius: 8px;
	z-index: 9999;
}
.p3-metadata {
	min-height: 360px;
	background-color: #e81717;
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 152px;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	border-radius: 8px;
	box-sizing: border-box;
	z-index: 5;
}
.p3-title {
	font-size: 26px;
	line-height: 29px !important;
	color: rgba(255,255,255,1);
	text-transform: capitalize;
	text-overflow: ellipsis;
	text-align: center !important;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.p3-artistInfo {
	font-size: 18px;
	line-height: 21px;
	font-weight: 400;
	color: rgba(255,255,255,.7);
	text-transform: capitalize;
	text-overflow: ellipsis;
	text-align: center !important;
	margin-top: 4px;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.p3-streamer {
	font-size: 16px;
	font-weight: 500;
	color: #F1DB1F;
	text-align: center;
	margin-top: 5px;
}
.p3-station {
	color: #fff;
	font-size: 14px;
}
.p3-infoText {
	height: 30px;
	font-size: 16px;
	line-height: 30px;
	color: #fff;
	padding-top: 0;
	left: 50%;
	top: 180px;
	transform: translateX(-50%);
	position: absolute;
	text-align: center;
	z-index: 10;
}
.p3-ppBtn {
	width: 64px;
	height: 64px;
	background-color: #fff;
	font-size: 32px;
	color: #000;
	line-height: 64px;
	text-align: center;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	box-sizing: border-box;
	border-radius: 50%;
	cursor: pointer;
	-webkit-box-shadow: 0 3px 6px rgba(0,0,0,.13), 0 3px 6px rgba(0,0,0,.19);
	-moz-box-shadow: 0 3px 6px rgba(0,0,0,.13),0 3px 6px rgba(0,0,0,.19);
	box-shadow: 0 3px 6px rgba(0,0,0,.13), 0 3px 6px rgba(0,0,0,.19);
	z-index: 10;
}
.p3-ppBtn.playBtn:before {
	content: "\e037";
}
.p3-ppBtn.pauseBtn:before {
	content: "\e034";
}
.p3-controls {
	width: auto;
	height: 60px;
	position: absolute;
	right: 6px;
	top: 55px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	overflow: hidden;
	z-index: 10;
}
.p3-volWrapper {
	width: 100%;
	height: 104px;
	background-color: transparent;
	position: absolute;
	bottom: 0px;
	left: 0;
	border-radius: 8px;
	z-index: 10;
}
.p3-volSlider {
	z-index: 10;
}
.p3-volSliderBar {
	width: 100px;
	height: 8px;
	background-color: rgba(255,255,255,.3);
	position: absolute;
	right: 16px;
	bottom: 48px;
	border-radius: 8px;
	transition: background-color ease .7s;
	z-index: 5;
}
.p3-volWrapper input[type=range] {
	width: 100px;
	height: 8px;
	background: none;
	margin: 0;
	padding: 6px 0px 6px 0px;
	-webkit-appearance: none;
	transform: rotate(0deg);
  transform-origin: bottom;
	box-sizing: content-box;
	cursor: pointer;
	border: 0 !Important;
	right: 16px !important;
	position: absolute;
	bottom: 40px;
}
.p3-volWrapper input[type=range]:focus {
	outline: none;
}
.p3-volWrapper input[type=range]::-webkit-slider-runnable-track {
	width: 100%;
	height: 8px;
	background-color: rgba(255,255,255,.0);
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 8px;
	box-sizing: content-box;
	cursor: pointer;
	animate: 0.2s;
}
.p3-volWrapper input[type=range]:focus::-webkit-slider-runnable-track {
	background-color: rgba(255,255,255,.0);
}
.p3-volWrapper input[type=range]::-webkit-slider-thumb {
	width: 12px;
	height: 12px;
	background-color: rgba(255,255,255,1);
	margin-top: -4px;
	border-radius: 50%;
	cursor: pointer;
	-webkit-appearance: none;
}
.p3-volWrapper input[type=range]:hover::-webkit-slider-thumb {
	margin-top: -4px;
	-webkit-appearance: none;
	transform: scale(1.2);
}
.p3-volWrapper input[type=range]::-moz-range-track {
	width: 100%;
	height: 6px;
	background-color: rgba(255,255,255,.0);
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
	animate: 0.2s;
}
.p3-volWrapper input[type=range]::-moz-range-thumb {
	width: 10px;
	height: 10px;
	background-color: rgba(255,255,255,1);
	border-radius: 50%;
	cursor: pointer;
}
.p3-volIcon {
	color: rgba(255,255,255,1);
	font-size: 26px;
	transition: color ease .7s;
	cursor: pointer;
	position: absolute;
	right: 125px;
	top: 40px;
}
.p3-likeIcon, .p3-shareIcon, .p3-popupIcon, .p3-historyIcon, .p3-listIcon, .p3-minimizeIcon {
	width: 40px;
	height: 40px;
	background-color: #fff;
	font-size: 22px;
	color: rgba(0,0,0,1);
	margin-left: 0px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	cursor: pointer;
	z-index: 999;
}
.p3-volIcon:hover, .p3-historyIcon:hover {
	color: rgba(255,255,255,1);
	text-align: left;
}
.p3-vol1:before {
	content: "\e04f";
}
.p3-vol2:before {
	content: "\e04d";
	position: relative;
	right: 2px;
}
.p3-vol3:before {
	content: "\e050";
}
.p3-likeIcon:before {
	content: "\e87d";
}
.p3-shareIcon:before {
	content: "\e80d";
}
.p3-popupIcon:before {
	content: "\e89e";
}
.p3-closeIcon:before {
	content: "\e5cd";
}
.p3-historyIcon:before {
	content: "\e889";
}
.p3-listIcon:before {
	content: "\e05f";
}
.p3-minimizeIcon:before {
	content: "\e15b";
}
.p3-maximize:before {
	content: "\e145";
}
.p3-close:before {
	content: "\e5cd";
}
.p3-socialShare {
	width: 70px;
	height: 70px;
	background-color: rgba(255,255,255,.3);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: -2px;
	top: 0;
	border-radius: 50px;
	z-index: 10;
}
.p3-socialShare .social-link {
	width: 22px;
	height: 22px;
	color: #fff;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 60% 60%;
	margin: 0 2px;
	border-radius: 50%;
}

/* Responsive classes */
@media only screen and (max-width: 640px) {
	.p3-player {
		height: 380px;
	}
	.p3-metadata {
		min-height: 350px;
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 192px;
	}
	.p3-ppBtn {
		width: 56px;
		height: 56px;
		font-size: 32px;
		line-height: 56px;
	}
	.p3-artwork {
		width: 150px;
		height: 150px;
	}
	.p3-artistInfo {
		font-size: 16px !important;
		line-height: 19px !important;
		font-weight: 400;
		margin-top: 4px;
	}
	.p3-title {
		margin-top: 0px !important;
		margin-bottom: 0 !important;
		font-size: 19px;
		line-height: 22px !important;
	}
	.p3-streamer {
		font-size: 14px;
		font-weight: 500;
	}
	.p3-controls {
		height: 40px;
		left: 50%;
		right: auto;
		top: 155px;
		transform: translateX(-50%);
	}
	.p3-infoText {
		height: 25px;
		font-size: 13px;
		line-height: 25px;
		padding-left: 0px;
		top: 190px;
	}
	.p3-volWrapper {
		height: 26px;
	}
	.p3-volSlider, .p3-volSliderBar {
		display: none;
	}
	.p3-likeIcon, .p3-shareIcon, .p3-popupIcon {
		width: 26px;
		height: 26px;
		font-size: 18px;
		line-height: 26px;
		top: auto;
		bottom: 0;
		box-shadow: 0px 1px 9px rgba(0,0,0,.0);
		-moz-box-shadow: 0px 1px 9px rgba(0,0,0,.0);
		-webkit-box-shadow: 0px 1px 9px rgba(0,0,0,.0);
		z-index: 999;
	}
	.p3-volIcon {
		margin-top: 3px;
		font-size: 20px;
		left: 110px;
	}
}

/* Helper Classes*/
.dn {
	display: none;
}
.op0 {
	opacity: 0;
}
.liked {
	color: #e81717;
}

/* Animations */
.swing-in-top-fwd {
	-webkit-animation: swing-in-top-fwd 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	        animation: swing-in-top-fwd 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
.swing-out-top-bck {
	-webkit-animation: swing-out-top-bck 0.5s cubic-bezier(0.600, -0.280, 0.735, 0.045) both;
	        animation: swing-out-top-bck 0.5s cubic-bezier(0.600, -0.280, 0.735, 0.045) both;
}
.rotate-in-center {
	-webkit-animation: rotate-in-center 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: rotate-in-center 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.blink-1 {
	-webkit-animation: blink-1 0.6s both;
	        animation: blink-1 0.6s both;
}
.fade-out {
	-webkit-animation: fade-out .4s ease-out both;
	        animation: fade-out .4s ease-out both;
}
@-webkit-keyframes swing-in-top-fwd {
	0% {
		-webkit-transform: rotateX(-100deg);
				transform: rotateX(-100deg);
		-webkit-transform-origin: top;
				transform-origin: top;
		opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
}
@keyframes swing-in-top-fwd {
	0% {
		-webkit-transform: rotateX(-100deg);
				transform: rotateX(-100deg);
		-webkit-transform-origin: top;
				transform-origin: top;
		opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
}
@-webkit-keyframes swing-out-top-bck {
	0% {
		-webkit-transform: rotateX(0deg);
				transform: rotateX(0deg);
		-webkit-transform-origin: top;
				transform-origin: top;
		opacity: 1;
	}
	100% {
		-webkit-transform: rotateX(-100deg);
				transform: rotateX(-100deg);
		-webkit-transform-origin: top;
				transform-origin: top;
		opacity: 0;
	}
}
@keyframes swing-out-top-bck {
	0% {
		-webkit-transform: rotateX(0deg);
				transform: rotateX(0deg);
		-webkit-transform-origin: top;
				transform-origin: top;
		opacity: 1;
	}
	100% {
		-webkit-transform: rotateX(-100deg);
				transform: rotateX(-100deg);
		-webkit-transform-origin: top;
				transform-origin: top;
		opacity: 0;
  }
}
@-webkit-keyframes rotate-in-center {
	0% {
		-webkit-transform: rotate(-360deg);
				transform: rotate(-360deg);
		opacity: 0;
	}
	100% {
		-webkit-transform: rotate(0);
				transform: rotate(0);
		opacity: 1;
	}
}
@keyframes rotate-in-center {
	0% {
		-webkit-transform: rotate(-360deg);
				transform: rotate(-360deg);
		opacity: 0;
	}
	100% {
		-webkit-transform: rotate(0);
				transform: rotate(0);
		opacity: 1;
	}
}
@-webkit-keyframes blink-1 {
	0%,
	50%,
	100% {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}
@keyframes blink-1 {
	0%,
	50%,
	100% {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}
@-webkit-keyframes fade-out {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes fade-out {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
