.gp-pf-audio-player {
  --gp-pf-audio-progress: 0%;
  box-sizing: border-box;
  width: 100%;
  padding: 20px 24px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-family: inherit;
}

.gp-pf-audio-player *,
.gp-pf-audio-player *::before,
.gp-pf-audio-player *::after {
  box-sizing: border-box;
}

.gp-pf-audio-player__title {
  margin: 0 0 18px;
  overflow: hidden;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gp-pf-audio-player__media {
  display: none;
}

.gp-pf-audio-player__seek {
  display: block;
  width: 100%;
  height: 4px;
  margin: 0 0 8px;
  padding: 0;
  appearance: none;
  background: linear-gradient(
    to right,
    currentColor 0%,
    currentColor var(--gp-pf-audio-progress),
    #e5e5e5 var(--gp-pf-audio-progress),
    #e5e5e5 100%
  );
  border: 0;
  border-radius: 999px;
  color: #111;
  cursor: pointer;
}

.gp-pf-audio-player__seek:disabled {
  cursor: default;
  opacity: 0.55;
}

.gp-pf-audio-player__seek::-webkit-slider-thumb {
  width: 14px;
  height: 14px;
  appearance: none;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #fff;
}

.gp-pf-audio-player__seek::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #fff;
}

.gp-pf-audio-player__times {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  color: #777;
  font-size: 12px;
  line-height: 1.3;
}

.gp-pf-audio-player__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.gp-pf-audio-player__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  line-height: 1;
}

.gp-pf-audio-player__button:hover,
.gp-pf-audio-player__button:focus-visible {
  background: #f5f5f5;
}

.gp-pf-audio-player__play {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 1px solid #ddd;
  border-radius: 50%;
}

.gp-pf-audio-player__play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.gp-pf-audio-player.is-playing .gp-pf-audio-player__play-icon {
  width: 13px;
  height: 16px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(
    to right,
    currentColor 0%,
    currentColor 35%,
    transparent 35%,
    transparent 65%,
    currentColor 65%,
    currentColor 100%
  );
}

.gp-pf-audio-player__volume {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: #666;
  font-size: 12px;
}

.gp-pf-audio-player__volume-input {
  width: 72px;
  cursor: pointer;
}

.gp-pf-audio-player__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .gp-pf-audio-player {
    padding: 18px;
  }

  .gp-pf-audio-player__controls {
    gap: 10px;
  }

  .gp-pf-audio-player__volume {
    flex: 1 1 100%;
    justify-content: center;
    margin-left: 0;
  }
}
