.gtf-audio-player {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.4rem 2rem;
  max-width: 100%;
}

.gtf-audio-player__play {
  flex: 0 0 auto;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  background-color: #2153a6;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .15s ease;
}

.gtf-audio-player__play:hover,
.gtf-audio-player__play:focus {
  background-color: #193e7b;
}

.gtf-audio-player__play svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: currentColor;
}

.gtf-audio-player__play .gtf-audio-player__pause-icon {
  display: none;
}

.gtf-audio-player.-playing .gtf-audio-player__play-icon {
  display: none;
}

.gtf-audio-player.-playing .gtf-audio-player__pause-icon {
  display: block;
}

.gtf-audio-player__main {
  flex: 1 1 auto;
  min-width: 0;
}

.gtf-audio-player__progress-wrap {
  padding: .5rem 0;
  cursor: pointer;
}

.gtf-audio-player__progress-bar {
  position: relative;
  height: .5rem;
  background-color: #e5e5e5;
  border-radius: .25rem;
}

.gtf-audio-player__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #2153a6;
  border-radius: .25rem;
  pointer-events: none;
}

.gtf-audio-player__progress-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #2153a6;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.gtf-audio-player__time {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  color: #666;
  line-height: 1;
}

.gtf-audio-player__volume {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.gtf-audio-player__volume-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  top: -3px;
}

.gtf-audio-player__volume-btn svg {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

.gtf-audio-player__volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 8rem;
  height: .4rem;
  border-radius: .2rem;
  background-color: #e5e5e5;
  outline: none;
  cursor: pointer;
  position: relative;
  top: -3px;
}

.gtf-audio-player__volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: #2153a6;
  cursor: pointer;
}

.gtf-audio-player__volume-slider::-moz-range-thumb {
  width: 1.2rem;
  height: 1.2rem;
  border: none;
  border-radius: 50%;
  background-color: #2153a6;
  cursor: pointer;
}

@media (max-width: 767px) {
  .gtf-audio-player {
    gap: 1rem;
    padding: .8rem 1.2rem;
  }
  .gtf-audio-player__play {
    width: 4rem;
    height: 4rem;
  }
  .gtf-audio-player__play svg {
    width: 1.8rem;
    height: 1.8rem;
  }
  .gtf-audio-player__volume-slider {
    display: none !important;
  }

.gtf-audio-player__volume-btn {
    display: none !important;
  }

}