
    h5 {
  font: 10px sans-serif;
  margin-top: 30px;
  text-align: center;
}
h5.linea {
  position: relative;
  z-index: 1;
} 
h5.linea:before {
  border-top: 3px solid #cacccf;
  content: "";
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 95%;
  z-index: -1;
}
h5.linea span {

  background: #fff; 
  padding: 0 15px;
} 

.titulo{

color:white; 
font-weight: 
bold; font-size: 20px

  }

  .titulo_update{

color:White; 
font-weight: 
bold; font-size: 20px

  }
  .modal-header {

    border-bottom: none;
    padding: 15px 15px 0 15px;
    background-image:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),var(--url);
    /*height: 208px;*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

    .close {
      background: none;
      border: none;
      float: right;
      font-size: 40px;
      line-height: 20px;
      padding: 0;

      &:hover {
        color: @hover-blush;
      }
    }
  }

.cwhite{
   color:white; 
   text-shadow: 0.1em 0.1em 0.2em black
}

.sombra{
  
   text-shadow: 0.1em 0.1em 0.2em black
}





  .titulo_tabla{
background: linear-gradient(90deg, rgba(3,42,39,1) 0%, rgba(6,86,102,1) 100%);
color:White; 
font-weight: 
bold; font-size: 10px;


  }



  .centrar_botones{
 text-align: center;
font-weight: bold;

  }



   
   .titulo-estilo {
      font-size: 40px;
      font-weight: bolder;
      margin-bottom: -40px; /* ajusta este valor según tus necesidades */
       margin-top: -20px; /* ajusta este valor según tus necesidades */
    }
    .bordegris{
      border:solid;
      border-color: grey;
     
    }
@keyframes onda {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.play-icon {
  position: relative;
  display: inline-block;
}

.play-icon::before {
  content: '';
  position: absolute;
  top: 0%; /* Mover un poco hacia arriba */
  left: 0%; /* Mover un poco hacia la derecha */
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: onda 1.5s infinite;
  pointer-events: none;
}

.play-icon i {
  position: relative;
  z-index: 1;
  font-size: 2rem; /* Ajusta el tamaño del icono según sea necesario */
  color: white;
}