#download_audio {
  display: none;
}

.audio_form {
  margin-top: 20px;
  width: 100%;
  justify-content: left;
}

.audio_form select {
  top: 10px;
}

.btn_audio {
  margin-top: 10px;
  height: 30px;
  color: #000000;
  background-color: #faff00;
  border: none;
  cursor: pointer;
}

.btn_audio_save {
  margin-top: 10px;
  height: 30px;
  color: #ffffff;
  background-color: #de0303;
  border: none;
  cursor: pointer;
}

.msg_download_advertence {
  color: #de0303;
  top: 10px;
}

.underline_text_audio {
  text-decoration: underline;
}

.msg_download_success {
  color: #0b5d1a;
  margin-top: 5px;
}

.spinner_audio {
  font-size: 30px;
  text-align: center;
  display: none;
}

.spinner_audio::after {
  content: "...";
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% {
    content: ".";
  }

  33% {
    content: "..";
  }

  66% {
    content: "...";
  }
}

/*AUDIO PLAYER*/
.button-audio-listen {
  width: 110px;
  border-radius: 5px;
  background: #de0303;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center !important;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 10px;
}

.button-audio-listen p {
  font-size: 12px;
  margin: 0;
  font-weight: 600;
}

.rn-audio-player {
  background: #ededed;
  color: #de0303;
  border-radius: 8px;
  padding: 25px 15px; 
  width: 100%;
  margin: 20px 0;   
  box-sizing: border-box;
}

.rn-audio-player p {
  text-align: center;
  color: #de0303;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
}

.rn-progress {
  width: 70%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.rn-progress-bar {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: #DCDCDC;
  /* border: 0.5px solid #b8b4b4; */
  cursor: pointer;
}

.rn-progress-fill {
  width: 0;
  height: 100%;
  background: #de0303;
  border-radius: 4px;
  transition: width 0.1s linear;
}

.rn-time-display {
  font-size: 14px;
  color: #676565;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
}

.rn-controls-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rn-play-btn {
  background: #de0303;
  border: 2px solid #de0303;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  text-indent: 3px;
}

.rn-speed-btn {
  background: #de0303;
  border: 2px solid #de0303;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.rn-volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rn-volume-slider {
  width: 80px;
  accent-color: #de0303;
  border: none;
}

.rn-volume-icon {
  display: inline-block;
  color: white;
}

@media only screen and (max-width: 767px) {
  .rn-progress {
    width: 50%;
  }
}
