<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#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-subscription {
  width: 120px;
  border-radius: 0;
  background: #faff00;
  border: none;
  color: #343431;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.button-audio-subscription span {
  margin-left: 10px;
}

.container_audio_player {
  width: 100%;
  display: grid;
  align-items: center;
  justify-content: left;
  margin-bottom: 20px;
}

audio::-webkit-media-controls-panel {
  background-color: #faff00;
}

audio::-webkit-media-controls-mute-button,
audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-timeline-container,
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display,
audio::-webkit-media-controls-timeline,
audio::-webkit-media-controls-volume-slider-container,
audio::-webkit-media-controls-volume-slider,
audio::-webkit-media-controls-seek-back-button,
audio::-webkit-media-controls-seek-forward-button,
audio::-webkit-media-controls-fullscreen-button,
audio::-webkit-media-controls-rewind-button,
audio::-webkit-media-controls-return-to-realtime-button,
audio::-webkit-media-controls-toggle-closed-captions-button {
  font-weight: 600;
}

.modalAudima {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
  align-items: center;
  display: none;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 15px 30px 15px;
  border-radius: 10px;
  width: 30%;
  height: -moz-min-content;
  height: min-content;
  text-align: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  animation-name: animatetop;
  animation-duration: 0.4s;
  position: relative;
}

.modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: 700;
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
}

.imgSuscription {
  margin: 0 auto;
}

.modal-content h1 {
  font-size: 25px;
  font-weight: 500;
  line-height: 30px;
}

.mt2 {
  margin-top: 1rem;
}

.modal-content h4 {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

.mb2 {
  margin-bottom: 1rem;
}

.mt1 {
  margin-top: 0.5rem;

}

.justify-center {
  justify-content: center;
}

.flex {
  display: flex;
}

.center {
  text-align: center;
}

.mr2 {
  margin-right: 1rem;
}

.ml2,
.mx2 {
  margin-left: 1rem;
}

.btnSuscribite {
  border: none;
  background-color: #faff00;
  padding: 0.5rem 1rem;
  font-family: var(--font-guardian-regular);
  font-size: var(--font-size-3);
  cursor: pointer;
}

.btnSuscriptor {
  border: none;
  border-bottom: 3px solid black;
  padding: 0.5rem 1rem;
  background: none;
  font-family: var(--font-guardian-regular);
  font-size: var(--font-size-3);
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .modal-content {
    padding: 10px 65px 10px;
  }
  .btnSuscribite {
    font-size: 12px;
  }
  .btnSuscriptor {
    font-size: 12px;
  }
  .modal-content h1 {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
  }
  .modal-content h4 {
    font-size: 20px;
    line-height: 20px;
  }
}
</pre></body></html>