.audio.green-audio-player {
  width: 100%;
  margin: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  user-select: none;
  -webkit-user-select: none;
}
.audio.green-audio-player .play-pause-btn {
  display: none;
  cursor: pointer;
}
.audio.green-audio-player .spinner {
  width: 16px;
  height: 16px;
  background-image: url('../img/loading.png');
  background-size: cover;
  background-repeat: no-repeat;
  animation: spin 0.4s linear infinite;
}
.audio.green-audio-player .slider {
  flex-grow: 1;
  background: rgba(0, 0, 0, 0.1);
  border-left: rgba(0, 0, 0, 0.25) solid 1px;
  border-right: rgba(255, 255, 255, 0.75) solid 1px;
  cursor: pointer;
  position: relative;
}
.audio.green-audio-player .slider .progress {
  background-color: #ff00aa;
  border-radius: inherit;
  position: absolute;
  pointer-events: none;
}
.audio.green-audio-player .slider .progress .pin {
  height: 8px;
  width: 8px;
  background-color: #6e6e6e;
  position: absolute;
  pointer-events: all;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.32);
}
.audio.green-audio-player .controls {
  font-size: 10px;
  line-height: 12px;
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
}
.audio.green-audio-player .controls .slider {
  margin-left: 6px;
  margin-right: 6px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  border-top: rgba(0, 0, 0, 0.25) solid 1px;
  border-bottom: rgba(255, 255, 255, 0.75) solid 1px;
}
.audio.green-audio-player .controls .slider .progress {
  width: 0;
  height: 100%;
}
.audio.green-audio-player .controls .slider .progress .pin {
  right: -6px;
  top: -4px;
}
.audio.green-audio-player .controls span {
  cursor: default;
}
.audio.green-audio-player .volume {
  position: relative;
}
.audio.green-audio-player .volume .volume-btn {
  cursor: pointer;
}
.audio.green-audio-player .volume .volume-btn.open path {
  fill: #ff00aa;
}
.audio.green-audio-player .volume .volume-controls {
  width: 1px;
  height: 80px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  flex-direction: column;
  align-items: center;
  display: flex;
}
.audio.green-audio-player .volume .volume-controls.hidden {
  display: none;
}
.audio.green-audio-player .volume .volume-controls .slider {
  margin-top: 0px;
  margin-bottom: -30px;
  margin-left: 20px;
  width: 1px;
  border-radius: 2px;
}
.audio.green-audio-player .volume .volume-controls .slider .progress {
  bottom: 0;
  height: 100%;
  width: 1px;
}
.audio.green-audio-player .volume .volume-controls .slider .progress .pin {
  left: -5px;
  top: -8px;
}

.audio.green-audio-player svg, .audio.green-audio-player img {
  display: block;
}

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