@keyframes spin {
  from {
    transform: rotateZ(0); }
  to {
    transform: rotateZ(1turn); } }

.aia-green-audio-player {
  width: 400px;
  min-width: 300px;
  height: 56px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.07);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 28px;
  padding-right: 24px;
  user-select: none;
  background-color: #1c5789;
}
@media screen and (max-width:767px){
  .aia-green-audio-player {
    height: 50px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.aia-green-audio-player svg,
.aia-green-audio-player img {
  display: block;
}
.aia-green-audio-player .play-pause-btn {
  display: none;
  cursor: pointer;
}
  
.aia-green-audio-player .loading .loading__spinner {
  width: 21px;
  height: 21px;
  border: 2px solid white;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.4s linear infinite;
}

.aia-green-audio-player .backward-15s-btn {
  margin-right: 27px;
  cursor: pointer;
}
.aia-green-audio-player .forward-15s-btn {
  margin-left: 23px;
  cursor: pointer;
}

.aia-green-audio-player .slider {
  -webkit-box-flex:1;
  -ms-flex-positive:1;
      flex-grow:1;
  background-color: #ffffff;
  cursor: pointer;
  position: relative;
}
.aia-green-audio-player .slider .gap-progress {
  background-color: #50bddb;
  border-radius: inherit;
  position: absolute;
  pointer-events: none;
}
.aia-green-audio-player .slider .gap-progress .pin {
  height: 16px;
  width: 16px;
  border-radius: 8px;
  background-color: #50bddb;
  position: absolute;
  pointer-events: all;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.32);
}
.aia-green-audio-player .slider .gap-progress .pin::after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0);
  width: 200%;
  height: 200%;
  margin-left: -50%;
  margin-top: -50%;
  border-radius: 50%;
}
@media screen and (max-width:767px){
  .aia-green-audio-player .slider .gap-progress .pin {
    height: 20px;
    width: 20px;
    border-radius: 10px;
  }
}

.aia-green-audio-player .controls {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 25px;
}
.aia-green-audio-player .controls .controls__slider {
  margin-left: 21px;
  margin-right: 24px;
  border-radius: 0;
  height: 4px;
}
.aia-green-audio-player .controls .controls__slider .controls__progress {
  width: 0;
  height: 100%;
}
.aia-green-audio-player .controls .controls__slider .controls__progress .progress__pin {
  right: -8px;
  top: -6px;
}
.aia-green-audio-player .controls span {
  cursor: default;
  color: white;
}
.aia-green-audio-player .controls span.controls__time-separator {
  display: none;
  margin: 0 .5rem;
}
@media screen and (max-width:767px){
  .aia-green-audio-player .controls {
    margin-right: 0px;
    font-size: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: 1.5;
    padding-bottom: 2px;
  }
  .aia-green-audio-player .controls .controls__slider {
    position: fixed;
    left: 0;
    bottom: 49px;
    width: 100vw;
    margin: 0;
    height: 10px;
  }
  .aia-green-audio-player .controls span.controls__time-separator {
    display: inline-block;
  }

  .aia-green-audio-player .controls .controls__slider .controls__progress .progress__pin {
    right: -5px;
    top: -5px;
  }
}

.aia-green-audio-player .volume {
  display: none;
  position: relative;
}
.aia-green-audio-player .volume .volume__button {
  cursor: pointer;
}
.aia-green-audio-player .volume .volume__button.open path {
  fill: #44bfa3;
}
.aia-green-audio-player .volume .volume__controls {
  width: 30px;
  height: 135px;
  background-color: rgba(0, 0, 0, 0.62);
  border-radius: 7px;
  position: absolute;
  left: -3px;
  bottom: 52px;
  flex-direction: column;
  align-items: center;
  display: flex;
  z-index: 2;
}
.aia-green-audio-player .volume .volume__controls.hidden {
  display: none;
}
.aia-green-audio-player .volume .volume__controls.top {
  bottom: 52px;
  left: -3px;
}
.aia-green-audio-player .volume .volume__controls.middle {
  bottom: -54px;
  left: 54px;
}
.aia-green-audio-player .volume .volume__controls.bottom {
  bottom: -164px;
  left: -3px;
}
.aia-green-audio-player .volume .volume__controls .volume__slider {
  margin-top: 12px;
  margin-bottom: 12px;
  width: 6px;
  border-radius: 3px;
}
.aia-green-audio-player .volume .volume__controls .volume__slider .volume__progress {
  bottom: 0;
  height: 100%;
  width: 6px;
}
.aia-green-audio-player .volume .volume__controls .volume__slider .volume__progress .volume__pin {
  left: -5px;
  top: -8px;
}

.aia-green-audio-player .download {
  display: none;
  margin-left: 16px;
  cursor: pointer;
}

.aia-green-audio-player--fixed {
  position: fixed;
  left: 0;
  bottom: -1px;
  width: 100vw;
  box-shadow: none;
  z-index: 100;
  transition: transform .45s ease-in-out;
  transform: translateY(0);
}
.aia-green-audio-player--fixed.hide {
  transition: none;
  transform: translateY(55px);
}
@media screen and (max-width:767px){
  .aia-green-audio-player--fixed.hide {
    transform: translateY(51px);
  }
}