.playMusic_control_container{
  height:400px;
  width:200px;
  overflow:hidden;
  background-color: #2b2b2b;
}
.videoBG2{
    background-size: 100% 100% !important;
}
.music{
  position: relative;
  margin:22% auto auto;
  width: 200px;
  height: 200px;
}
.music .cd{
   width: 150px;
   height: 150px;
   background: url(cd.png) center no-repeat;
   background-size: 100%;
   z-index: 1;
   margin:0 auto;
}
.music .shine{
  position: absolute;
  display: inline-block;
  top: 158px;
  right:70px;
  width: 1px;
  height: 1px;
  background-color: #3882ef;
  box-shadow: 0 0 16px 8px #3882ef;
  border-radius: 10px;
  z-index: 2;
  opacity: 0;
}
.music .stick{
  position: absolute;
  top: -26px;
  right: 8px;
  width: 20px;
  height: 150px;
  background: url(stick.png) center no-repeat;
  background-size: 100%;
  -webkit-transform-origin:14px 21px;
  -webkit-transform:rotate(-6deg);
  -webkit-transition: all 0.5s ease;
  z-index: 3;
}
.music.on .stick{
  -webkit-transform-origin:14px 21px;
  -webkit-transform:rotate(13deg);
}
.music.on .shine{
  -webkit-transition: all 1s 0.8s ease;
  transition: all 1s 0.8s ease;
  -webkit-animation: ani-shine infinite 1s alternate;
  animation: ani-shine infinite 1s alternate;
  opacity: 1;
}

@-webkit-keyframes ani-shine{
  0% {-webkit-transform: scale(1)}
  100% {-webkit-transform: scale(0.9)}
}
@keyframes ani-shine{
  0% {transform: scale(1)}
  100% {transform: scale(0.9)}
}
.liric{
    margin-top: -30px;
    color: #ccc;
    text-align: center;
}

.btns{
  margin-top:50px;
  text-align: center;
}
.btns>div{
  display: inline-block;
  width: 40px;
  height: 40px;
}
.btns .btn-prev{
  background: url(btn_prev.png) no-repeat center;
  background-size: 100%;
}
.btns .btn-play{
  background: url(btn_play.png) no-repeat center;
  background-size: 100%;
}
.btns .btn-play.on{
  background: url(btn_pause.png) no-repeat center;
  background-size: 100%;
}
.btns .btn-next{
  background: url(btn_next.png) no-repeat center;
  background-size: 100%;
}

.progress{
    height: 3px;
    width: 70%;
    margin: 40px auto auto;
    background-color:rgba(255,255,255,0.1);
    border-radius: 6px;
    overflow:hidden;
}
.progress div{
    font-size: 0;
    width: 0;
    height: 3px;
    background-color:#999; 
}