.weachieve-audio-player {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 400px;
}

.weachieve-audio-playpause {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #fb273c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  position: relative;
}

.weachieve-audio-playpause::before {
  content: "";
  border-left: 10px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 2px;
}

.weachieve-audio-playpause.playing::before {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 3px solid #fff;
  border-right: 3px solid #fff;
  border-top: none;
  border-bottom: none;
  margin-left: 0;
}

.weachieve-audio-map-progress {
  flex: 1;
  height: 3px;
  background: #f3c6c6;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.weachieve-audio-map-progress-filled {
  width: 0%;
  height: 100%;
  background: #fb273c;
  border-radius: 2px;
}
