@keyframes spin {
  from {
    transform: rotateZ(0); }
  to {
    transform: rotateZ(1turn); } }

.green-audio-player {
  width: 100%;
  height: 40px;
  margin-top:-15px;
  /*box-shadow: 0 2px 10px 0 #ff9746; /*0 4px 16px 0 rgba(0, 0, 0, 0.07);*/
  /*border:1px solid orange;*/
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 4px;
  user-select: none;
  background-color: #fff;
  box-sizing: border-box;
  outline: none; }
  .green-audio-player.player-accessible .play-pause-btn:hover,
  .green-audio-player.player-accessible .controls:hover,
  .green-audio-player.player-accessible .volume__button:hover,
  .green-audio-player.player-accessible .volume__controls:hover,
  .green-audio-player.player-accessible .download:hover {
    outline: dotted 1px #999; }
  .green-audio-player svg,
  .green-audio-player img {
    display: block; }
  .green-audio-player svg path {
    fill: black;
  }
  .green-audio-player .holder {
    position: relative; }
    .green-audio-player .holder .loading .loading__spinner {
      position: absolute;
      left: -3px;
      bottom: 2px;
      width: 16px;
      height: 16px;
      border: 2px solid #b0b0b0;
      border-right-color: rgba(0, 0, 0, 0);
      border-radius: 50%;
      animation: spin 0.4s linear infinite; }
    .green-audio-player .holder .play-pause-btn {
      visibility: hidden;
      cursor: pointer;
      outline: none;
      display: flex;
      width: 24px;
      height: 24px;
      padding: 5px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
      border-radius: 20px;
      background: #FF5A00;

/* button */
box-shadow: 0px 0px 10px 0px rgba(204, 204, 204, 0.50);
     }
      .green-audio-player .holder .play-pause-btn:focus {
        outline: none; }
  .green-audio-player .slider {
    flex-grow: 1;
    background-color: #d8d8d8;
    cursor: pointer;
    position: relative; }
    .green-audio-player .slider .gap-progress {
      background-color: #FF5A00;
      border-radius: inherit;
      position: absolute;
      pointer-events: none; }
      .green-audio-player .slider .gap-progress .pin {
        height: 16px;
        width: 16px;
        border-radius: 8px;
        background-color: #FF5A00;
        position: absolute;
        pointer-events: all;
        box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.32); }
        .green-audio-player .slider .gap-progress .pin::after {
          content: "";
          display: block;
          background: rgba(0, 0, 0, 0);
          width: 200%;
          height: 200%;
          margin-left: -50%;
          margin-top: -50%;
          border-radius: 50%; }
  .green-audio-player .controls {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 18px;
    color: #55606e;
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
    margin-left: 15px;
    margin-right: 15px;
    outline: none; }
   .green-audio-player .controls .controls__current-time {font-size:14px !important;}
   .green-audio-player .controls .controls__total-time {display: none !important;}
    .green-audio-player .controls .controls__slider {
      margin-left: 16px;
      margin-right: 16px;
      border-radius: 2px;
      height: 4px; }
      .green-audio-player .controls .controls__slider .controls__progress {
        width: 0;
        height: 100%; }
        .green-audio-player .controls .controls__slider .controls__progress .progress__pin {
          right: -8px;
          top: -6px; }
    .green-audio-player .controls span {
      cursor: default; }
    .green-audio-player .controls:focus {
      outline: none; }
  .green-audio-player .volume {
    position: relative; }
    .green-audio-player .volume .volume__button {
      cursor: pointer;
      outline: none; }
      .green-audio-player .volume .volume__button svg{
      width:20px !important;
      height:20px !important; }
      .green-audio-player .volume .volume__button:focus {
        outline: none; }
      .green-audio-player .volume .volume__button.open path {
        fill: black; }
    .green-audio-player .volume .volume__controls {
      width: 30px;
      height: 135px;
      background-color: rgba(0, 0, 0, 0.62);
      border-radius: 7px;
      position: absolute;
      left: -3px;
      bottom: 52px;
      flex-direction: column;
      align-items: center;
      display: flex;
      z-index: 2;
      outline: none; }
      .green-audio-player .volume .volume__controls .volume__slider {
        margin-top: 12px;
        margin-bottom: 12px;
        width: 6px;
        border-radius: 3px; }
        .green-audio-player .volume .volume__controls .volume__slider .volume__progress {
          bottom: 0;
          height: 100%;
          width: 6px; }
          .green-audio-player .volume .volume__controls .volume__slider .volume__progress .volume__pin {
            left: -5px;
            top: -8px; }
      .green-audio-player .volume .volume__controls:focus {
        outline: none; }
      .green-audio-player .volume .volume__controls.hidden {
        display: none; }
      .green-audio-player .volume .volume__controls.top {
        bottom: 52px;
        left: -3px; }
      .green-audio-player .volume .volume__controls.middle {
        bottom: -54px;
        left: 54px; }
      .green-audio-player .volume .volume__controls.bottom {
        bottom: -164px;
        left: -3px; }
  .green-audio-player .download {
    display: none;
    margin-left: 16px;
    cursor: pointer;
    outline: none; }
    .green-audio-player .download:focus {
      outline: none; }
  .green-audio-player:focus {
    outline: none; }

.message__offscreen {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal; }

.container-fragmento {border-radius: 10px;border: 1px solid #D9D9D9;;max-width:216px;}
.container-leer-fragmento {height: 40px;}
/* .container-leer-fragmento div.content-fragmento {padding:7px !important;} */
.container-fragmento a {margin-bottom:0px !important;}
/* .container-fragmento div.content-fragmento {width: 100%;color:#FF5A00 !important;display: block;margin: 0 auto;padding: 5px;text-align: center;} */
.container-fragmento div.content-fragmento i {color:#FF5A00 !important;font-size:23px;display:inline-block;vertical-align: bottom;}
/* .container-fragmento div.content-fragmento span {color:#FF5A00 !important;display:inline-block;font-family: Fort-Book;margin-left:5px;font-size: 14px;font-weight: normal;font-stretch: normal;font-style: normal;line-height: normal;letter-spacing: normal;color: orange} */
.TextoEscucharFragmento{
  color: #FF5A00 !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: normal !important;
  margin-top: 4px;
  display: inline-block;
  vertical-align: bottom;
}
.TextoLeerFragmento{
  color: #FF5A00;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.contenedorEscucharFragmento{
  max-width: 337px !important;
  width: 324px !important; 
  margin-left: 15px;
  background-color: white;
}
.contenedorEscucharFragmentoSolo{
  width: 29vw !important; 
  height: 5rem;
  max-width: 100%;
  background-color: white;
}
.textoEscuchar{
  height: 27px;
  text-align: center;
  border-radius: 10px;
  background:white;
  padding-top: 10px;
}
.container-leer-fragmento {margin-bottom:15px;}      
.container-fragmento div.content-fragmento span {color:#ff6f00 !important;display:inline-block;font-family: Fort-Book;margin-left:5px;font-size: 14px;font-weight: normal;font-stretch: normal;font-style: normal;line-height: normal;letter-spacing: normal;color: orange}
@media (max-width: 480px) {
  .green-audio-player {
    width: 100%;
  }
}

@media (max-width: 1000px) {
  .container-fragmento{
    max-width: 100% !important;
    
  }
  .container-leer-fragmento{
    margin-bottom: 3% !important;
  }
  .contenedorEscucharFragmento{
    width: 100% !important;
    margin-left: 0px;
    background-color: white;
  }
  .contenedorEscucharFragmentoSolo{
    width: 100% !important; 
    height: 8vh;
    max-width: 100%;
    background-color: white;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .green-audio-player .holder .play-pause-btn {
    visibility: hidden;
    cursor: pointer;
    outline: none;
    display: flex;
    width: 22px;
    height: 22px;
    padding: 5px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 20px;
    background: #FF5A00;
  
    /* button */
    box-shadow: 0px 0px 10px 0px rgba(204, 204, 204, 0.50);
   }
}
