/*  
  a {
    color: #fff;
    text-decoration: none;
  } */
  
  /* FIXME: tamaño del reproductor en dispositivos de escritorio */
  .holder {
    /* margin: 0.23rem 0 0.23rem 0; */
    margin: -1.77rem 0 -1.77rem 0;
    display: flex;
    align-items: center;

    /* margin: -5.77rem 0 0.23rem 0;
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    flex-wrap: wrap;
    align-items: flex-end; */
  }
  
  .shadow {
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.22);
  }
  
  /* Important stuff */
  
  /* .set {
    position: absolute;
    right: 1em;
    top: 0;
    z-index: 999;
  } */
   
  .audio-player {
  
      position: fixed;
      bottom: 0px;

      border: 1px solid #dfdfdf;
      width: 100vw;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
      background: #fff;
 
    
  }
  
  .audio-player .user_avatar {
    width: 100%;
    justify-content: space-around;
    margin: 0 auto;
    position: relative;
  }
  
  .audio-player .user_avatar .live,
  .audio-player .user_avatar .listeners {
    background: #fff;
    padding: 8px 10px 0 10px;
    font-size: 15px;
    font-weight: 700;
    color: #555 !important;
    border-radius: 4px;
    margin: 3px;
    text-align: center;
  }
  
  .live i {
    -moz-animation-duration: 1s;
    -moz-animation-name: blink;
    -moz-animation-iteration-count: infinite;
    -moz-animation-direction: alternate;
    -webkit-animation-duration: 1s;
    -webkit-animation-name: blink;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-duration: 1s;
    animation-name: blink;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    color: red;
  }
  
  @-moz-keyframes blink {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  
  @-webkit-keyframes blink {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  
  @keyframes blink {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  
  .audio-player .user_avatar img {
    display: block;
    margin: 0 auto;
    height: 100px;
    width: 100px;
    padding: 0.65em;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #dfdfdf;
    background: #fff;
    margin-top: -4em;
  }
  
  #dur:hover {
    cursor: pointer;
  }
  
  .audio-player .cover img {
    height: 100px;
    width: auto;
    object-fit: cover;
    border-radius: 14px;
    padding: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }
  
  .audio-player .title {
    padding: 0;
    margin-top: 2.5rem;
    font-weight: 800;
    font-size: 20px;
  }
  
  .audio-player .like {
    padding: 6px 17px;
    background: #fff;
    font-size: 16px;
    color: #555;
    margin: 1rem 0;
    font-weight: 900;
    text-decoration: none;
    position: relative;
  }
  
  .audio-player .player-controls {
    align-items: center;
    justify-content: center;
    flex: 4;
    position: relative;
    padding: 0 2rem;
    margin: 0 auto;
  }
  
  .audio-player .player-controls p {
    color: #000;
  }
  
  .progress_bar {
    border: 2px solid #ccc;
    width: 100%;
    min-height: 15px;
    display: flex;
    padding: 0.45em 0;
    align-items: center;
  }
  
  .range {
    position: relative;
  }
  
  .range input[type=range] {
    appearance: none;
    padding: 0;
    width: 100%;
    height: 22px;
    cursor: pointer;
    display: block;
  }
  
  .range input[type=range]:focus {
    outline: none;
  }
  
  .range input[type=range][disabled] {
    opacity: 0.3;
    cursor: default;
    background: transparent;
  }
  
  .range .rangeslider {
    position: relative;
    height: 22px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
  }
  
  .range .rangeslider:before {
    box-sizing: border-box;
    width: 100%;
    height: 4px;
    background: #e6e6e6;
    border-radius: 100px;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .range input::-webkit-slider-runnable-track {
    box-sizing: border-box;
    width: 100%;
    height: 4px;
    background: #e6e6e6;
    border-radius: 100px;
    margin: 11px 0;
  }
  
  .range input::-moz-range-track {
    box-sizing: border-box;
    width: 100%;
    height: 4px;
    background: #e6e6e6;
    border-radius: 100px;
    margin: 11px 0;
  }
  
  .range input::-ms-track {
    box-sizing: border-box;
    width: 100%;
    height: 4px;
    background: #e6e6e6;
    border-radius: 100px;
    color: transparent;
    padding: 11px 0;
    background: transparent;
    border-color: transparent;
  }
  
  .range input::-ms-fill-lower,
  .range input::-ms-fill-upper {
    box-sizing: border-box;
    width: 100%;
    height: 4px;
    background: #e6e6e6;
    border-radius: 100px;
  }
  
  .range input::-ms-fill-lower {
    background: #60cd18;
  }
  
  .range .rangeslider-fill-lower {
    background-color: #60cd18;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    will-change: width;
  }
  
  .range input::-webkit-slider-thumb {
    box-sizing: border-box;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, .5);
    border: 6px solid #fff;
    height: 24px;
    width: 24px;
    border-radius: 100px;
    background: #333940;
    cursor: pointer;
    appearance: none;
    transform: translateY(-50%);
    margin-top: 2px;
  }
  
  .range input::-moz-range-thumb {
    box-sizing: border-box;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, .5);
    border: 6px solid #fff;
    height: 24px;
    width: 24px;
    border-radius: 100px;
    background: #333940;
    cursor: pointer;
  }
  
  .range input::-ms-thumb {
    box-sizing: border-box;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, .5);
    border: 6px solid #fff;
    height: 24px;
    width: 24px;
    border-radius: 100px;
    background: #333940;
    cursor: pointer;
  }
  
  .range .rangeslider-thumb {
    box-sizing: border-box;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, .5);
    border: 6px solid #fff;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #333940;
    cursor: pointer;
    position: absolute;
    touch-action: pan-x;
    top: 50%;
    transform: translateY(-50%);
    will-change: left;
  }
  
  .audio-player #play-btn,
  .ctrl_btn {
    margin: 0 1rem 2rem 0;
    color: #363732;
  }
  
  .audio-player #play-btn {
    padding: 1rem 1.2rem;
    font-size: 24px;
  }
  
  .audio-player .ctrl_btn {
    font-size: 22px;
  }
  
  .audio-player #play-btn:hover {
    cursor: pointer;
  }
  
  .audio-player .volumeControl {
    display: flex;
    flex-basis: 20%;
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
  }
  
  .audio-player .volumeControl .wrapper {
    display: flex;
    flex-basis: 100%;
    align-items: center;
    color: #363732;
  }
  
  .audio-player .volumeControl .wrapper:hover i.fa {
    color: #363732;
  }
  
  .audio-player .volumeControl .outer {
    border-radius: 2px;
    box-shadow: -2px 3px 4px rgba(0, 0, 0, 0.23);
    overflow: hidden;
    height: 0.3rem;
    flex-basis: 80%;
    margin-left: 0.4rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .audio-player .volumeControl .outer .inner {
    background-color: #363732;
    width: 100%;
    display: inline-block;
    height: 100%;
  }
  
  .audio-player .volumeControl .outer:hover {
    cursor: pointer;
  }
  
  .start-time,
  .end-time {
    font-size: 14px;
    font-weight: 800;
    font-family: 'Darker Grotesque', sans-serif;
    transition: 1s ease-in-out;
    line-height: 0;
  }
  
  .start-time {
    float: left;
    position: relative;
    left: 0;
  }
  
  .end-time {
    float: right;
    position: relative;
    right: 0;
  }
  
  .ctrl {
    display: flex;
    justify-content: space-between;
  }
  
  .action {
    margin: 1rem auto;
    text-align: left;
  }
  
  .action span {
    font-size: 14px;
    font-family: 'Darker Grotesque', sans-serif;
  }


  /* LOADER */

/* HTML: <div class="loader"></div> */
.loader {
  height: 4px;
  width: 100%;
  --c: no-repeat linear-gradient(#FE6C17 0 0);
  background: var(--c), var(--c), #fff3cd;
  background-size: 60% 100%;
  animation: l16 3s infinite;
}
@keyframes l16 {
  0%   {background-position:-150% 0,-150% 0}
  66%  {background-position: 250% 0,-150% 0}
  100% {background-position: 250% 0, 250% 0}
}

/* fin LOADER */

/* BTNS CONTACTO FULLHD */
/* .btns-contacto {
  
  } */
  
  /* FIN BTNS CONTACTO FULLHD */

/* MEDIA QUERYES */
  
  @media screen and (max-width: 950px) {
    ul.dropdown {
      right: 20%;
      left: unset;
    }
    .holder {
      display: block;
      justify-content: all;
      align-items: all;
      margin: 40% auto 50% auto;
    }
    .audio-player {
        /* TODO: Aqui se adapta el fondo del navegador a la mayoria de pantallas */
        height: 96vh;
      width: 100vw;
      padding: 0rem 4rem;
    }
    .audio-player .cover img {
      height: 100%;
      width: 80%;
      object-fit: cover;
      display: block;
      margin: 0 auto;
    }
    .audio-player .player-controls {
      position: relative;
      padding: 0 0;
      margin: 0 auto;
    }
    .audio-player #play-btn,
    .ctrl_btn {
      margin: 15px 6px;
    }
    .audio-player .volumeControl,
    .audio-player .volumeControl .wrapper {
      display: block;
    }
    .audio-player .volumeControl .wrapper .fa-volume-up {
      margin: 10px;
      opacity: 0.6;
    }
    .audio-player .title {
      text-align: center;
    }
    .start-time {
      left: 0.85em;
    }
    .end-time {
      right: 1em;
    }
    .ctrl,
    .action {
      display: block;
      text-align: center;
    }
    .action a {
      display: block;
    }
    .set {
      position: relative;
    }
    .audio-player .user_avatar {
      margin: 0 0 1em 0;
      display: flex;
      justify-content: space-around;
    }
    .audio-player .user_avatar img {
      display: none;
    }
  
    .footer {
      position: fixed;
      left: 0;
      bottom: 0;
      width: 100%;
      background-color: #1984bc;
      color: white;
      text-align: center;
    }
  }

   @media screen and (min-width: 768px) and (max-width: 991px) {
    ul.dropdown {
      right: 20%;
      left: unset;
    }
    .holder {
      display: block;
      justify-content: all;
      align-items: all;
      margin: 40% auto 50% auto;
    }
    .audio-player {
        /* TODO: Aqui se adapta el fondo del navegador a la mayoria de pantallas */
        height: 96vh;
      width: 100vw;
      padding: 0rem 4rem;
    }
    .audio-player .cover img {
      height: 100%;
      width: 40%;
      object-fit: cover;
      display: block;
      margin: 0 auto;
    }
    .audio-player .player-controls {
      position: relative;
      padding: 0 0;
      margin: 0 auto;
    }
    .audio-player #play-btn,
    .ctrl_btn {
      margin: 15px 6px;
    }
    .audio-player .volumeControl,
    .audio-player .volumeControl .wrapper {
      display: block;
    }
    .audio-player .volumeControl .wrapper .fa-volume-up {
      margin: 10px;
      opacity: 0.6;
    }
    .audio-player .title {
      text-align: center;
    }
    .start-time {
      left: 0.85em;
    }
    .end-time {
      right: 1em;
    }
    .ctrl,
    .action {
      display: block;
      text-align: center;
    }
    .action a {
      display: block;
    }
    .set {
      position: relative;
    }
    .audio-player .user_avatar {
      margin: 0 0 1em 0;
      display: flex;
      justify-content: space-around;
    }
    .audio-player .user_avatar img {
      display: none;
    }
  
    .footer {
      position: fixed;
      left: 0;
      bottom: 0;
      width: 100%;
      background-color: #1984bc;
      color: white;
      text-align: center;
    }
  }


  /* EFECTOS */
.en-vivo-animado i {
  animation: pulsar-color 1.5s infinite alternate;
  color: red; /* Color inicial */
}

@keyframes pulsar-color {
  from {
    opacity: 0.7;
    transform: scale(1);
    color: red;
  }
  to {
    opacity: 1;
    transform: scale(1.1);
    color: rgb(255, 165, 0); /* Naranja */
  }
}
  /* FIN EFECTOS */
  
  