@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700');
.dj_cast .player-wpr-in {
	max-width: 428px;
	min-width: 270px;
	height: 312px;
	background-color: #000;
	opacity: 0.8;
	font-family: 'Roboto Condensed', Arial, sans-serif;
	position: absolute;
	/*margin: 0 auto;*/
	border-radius: 8px;
	overflow: hidden;
	margin-top: 45px;
	margin-bottom: 20px;
	margin-left: 20px;
    -webkit-animation: player-wpr-in 1.5s forwards;
	animation-name: player-wpr-in;
    animation: player-wpr-in 1.5s forwards;
	z-index: 1000000;
}

.dj_cast .player-wpr-out {
	max-width: 428px;
	min-width: 270px;
	height: 428px;
	background-color: #000;
	font-family: 'Roboto Condensed', Arial, sans-serif;
	position: absolute;
	/*margin: 0 auto;*/
	border-radius: 8px;
	overflow: hidden;
	margin-top: 45px;
	margin-bottom: 20px;
	margin-left: 20px;
	-webkit-animation: player-wpr-out 0.5s forwards;
	animation-name: player-wpr-out;
    animation: player-wpr-out 0.5s forwards;
	z-index: 1000000;
}
    
@keyframes player-wpr-in {
    100% { transform: translateX(0%); }
}

@-webkit-keyframes player-wpr-in {
    100% { -webkit-transform: translateX(0%); }
}
    
@keyframes player-wpr-out {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-110%); }
}

@-webkit-keyframes player-wpr-out {
    0% { -webkit-transform: translateX(0%); }
    100% { -webkit-transform: translateX(-110%); }
}	

.dj_cast .player-ctr {
	height: 428px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 10;
}
.dj_cast .blur {
	width: 100%;
	height: 428px;
	background-size: cover;
	position: absolute;
	top: 0;
	-webkit-filter: blur(20px):
	-ms-filter: blur(20px);
	filter: blur(20px);
	transform: scale(1.15);
	opacity: 0.94;
	z-index: 1;
}
.dj_cast .album-cover-wpr {
	width: 210px;
	margin: -28 auto;
}
.dj_cast .album-cover {
	width: 210px;
	height: 210px;	
	background: url(../img/logo.jpg);
	background-size: 100% 100%;
	position: relative;
	margin: -35px auto 0 auto;		
	border-radius: 4px;
	-webkit-box-shadow: 4px 6px 30px 0px rgba(0,0,0,0.6);
	-moz-box-shadow: 4px 6px 30px 0px rgba(0,0,0,0.6);
	box-shadow: 4px 6px 30px 0px rgba(0,0,0,0.6);
	z-index: 2;
}
.dj_cast .track-info-wpr {
	max-width: 440px;
	height: 40px;
	box-sizing: border-box;
	color: rgba(255,255,255,1);
	font-size: 16px;
	text-align: center;
	position: relative;
	margin: 0 60px;
	margin-top: -140px; /* aangepast van -90 naar -140 */
	padding-top: 8px;
	border-left: 1px solid rgba(255,255,255,.87);
	border-right: 1px solid rgba(255,255,255,.87);
	overflow: hidden;
	z-index: 4;
}
.dj_cast .track-info-ctr {
	max-width: 280px;	
	position: relative;
	margin: 0 auto;
	overflow: hidden;
}
.dj_cast .songtitle {
	color: rgba(255,255,255,.7);
}
.dj_cast .artist-name {
	color: rgba(255,255,255,.7);
}

/* Animations */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.animated.bounceIn {
  animation-duration: .75s;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
.marquee {
  white-space: nowrap;
  position: relative;
  transform: translateX(-50%);
  display: inline-block;
  left: 50%;
  padding-top: 0px;
  animation: linear infinite;
  overflow: hidden;
  text-align: left;
  animation-duration: 10s;
  animation-name: movement-smooth;
  animation-direction: normal;
}
.marquee:hover { 
	animation-play-state: paused 
}
.marquee.marquee-speed-custom:before {
  animation-duration: inherit;
}
.marquee.marquee-speed-normal:before {
  animation-duration: 10s;
}
@keyframes movement-smooth {
  from {
    transform: translateX(0%);
    left: 100%;
  }
  to {
    transform: translateX(-100%);
    left: 0%;
  }
}
.marquee.marquee-movement-smooth:before {
  animation-name: movement-smooth;
}
.marquee.marquee-direction-left:before,
.marquee.marquee-direction-normal:before {
  animation-direction: normal;
}