.playerContainer{
  height: 380px;
  width: 300px;
  margin: 0 auto;
}

.audioPlayerHolder{
  width: 100%;
  height: 100%;
  padding-bottom: 10px;
  background-color: #3f3d41;
  border: 1px solid #FFFFFF;
  text-align: center;
}
.audioControls{
  width: 100%;
  text-align: center;
}

.audioControls {
  width: 100%;
  height: 80px;
  margin: 0;
  display: block;
}

.extraInfo {
  display: none;
  width: 100%;
  border: 1px solid #ffffff;
  border-top: 1px dashed #ffffff;
  background-color: #aaa5aa;
  padding: 5% 2%;
  word-wrap: break-word;
}

button {
  outline: none;
  border: 0;
  cursor: pointer;
}

.audioBackgroundImages {
  position: relative;
  width: 75px;
  height: 75px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  background-color: #FFF;
  border: 2px solid #283786;
  box-shadow: 0 0 0 3px #FFF;
  margin: 0 5px;
}

.audioBackgroundImages:hover {
  transition: 0.1s;
  background-color: #9896c0;
   -webkit-transition: color 0.1s ease;
  transition: color 0.1s ease;
}

.imageforPlayer {
  position: relative;
  height: 280px;
}
.imageBorder{
  background-color: #fff;
} 
.audioImage {
  width: 220px;
  height: 220px;
  margin: 20px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  z-index: 50;
  left: 20px;
  top: 10px;
}

.circle {
  border-radius: 50%;
  width: 240px;
  height: 240px;
  background-color: .ffffff;
  position: absolute;
  top: 20px;
  z-index: 0;
  left: 30px;
}


/*rewind button*/

.rewind {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  
}


/*PLAY PAUSE*/

.play-button {
  height: 30px;
  width: 30px;
  display: block;
  margin: 60px auto;
  overflow: hidden;
  position: absolute;
  top: -39px;
  left: 23px;
}

.pp_left {
  height: 100%;
  float: left;
  background-color: #283786;
  width: 50%;
  -webkit-transition: transform 0.25s ease;
  transition: transform 0.25s ease;
  overflow: hidden;
}

.pp_triangle-1 {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.pp_triangle-2 {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.pp_triangle-1,
.pp_triangle-2 {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  width: 0;
  height: 0;
  border-right: 30px solid #FFF;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.playBtn:hover .play-button .pp_triangle-1,
.playBtn:hover .play-button .pp_triangle-2 {
  border-right: 30px solid #9896c0;
  transition: 0;
}

.pp_right {
  height: 100%;
  float: right;
  width: 50%;
  background-color: #283786;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.paused .play-button {
  left: 21px;
}

.paused .pp_left {
  width: 40%;
}

.paused .pp_right {
  width: 40%;
}

.paused .pp_triangle-1 {
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}

.paused .pp_triangle-2 {
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}


/* EXTRAINFO */

.extraInfoBtn {
  color: #000;
  text-align: center;
}

.extraInfoBtnLabel {
  position: absolute;
  font-size: 2em;
  color: #283786;
  top: 15px;
  left: 0;
  vertical-align: middle;
  height: 100%;
  width: 100%;
  text-align: center;
 
}


/* animations */

.pulsate {
  -webkit-animation-name: pulsate;
  animation-name: pulsate;
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.bounce {
  -moz-animation: bounce 0.6s 1;
  -webkit-animation: bounce 0.6s 1;
  animation: bounce 0.6s 1;
}
.rotateonce {
  -moz-animation: rotateonce 0.6s 1;
  -webkit-animation: rotateonce 0.6s 1;
  animation: rotateonce 0.6s 1;
}
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(.95);
  }
  50% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(.95);
  }
}

@-moz-keyframes pulsate {
  0% {
    -moz-transform: scale(.95);
  }
  50% {
    -moz-transform: scale(1);
  }
  100% {
    -moz-transform: scale(.95);
  }
}

@-o-keyframes pulsate {
  0% {
    -o-transform: scale(.95);
  }
  50% {
    -o-transform: scale(1);
  }
  100% {
    -o-transform: scale(.95);
  }
}

@keyframes pulsate {
  0% {
    transform: scale(.95);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(.95);
  }
}

@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(5px);
  }
}

@-o-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -o-transform: translateY(0);
  }
  40% {
    -o-transform: translateY(5px);
  }
}

@-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(5px);
  }
}

@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(5px);
  }
}+
@-webkit-keyframes rotateonce {
  0% {
    -webkit-transform: rotate(0deg);
  }
    100% {
    -webkit-transform: rotate(-360deg);
  }
}

@-moz-keyframes rotateonce {
  0% {
    -moz-transform: rotate(0deg);
  }  
  100% {
    -moz-transform: rotate(-360deg);
  }
}

@-o-keyframes rotateonce {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(-360deg);
  }
}

@keyframes rotateonce {
  0% {
    transform: rotate(0deg);
  }
 
  100% {
    transform: rotate(-360deg);
  }
}
