@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;  
}

a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

a:hover {
  text-decoration: underline;
}

p{
  font-size: 12px;
}

/* ahora el header, main y footer los tamaños de altura se da por los vh 
  el header tiene un 15vh
  el main tiene una clase mainvideo y tiene una altura de 78vh
  el footer tiene un 7vh
  elegi esos tamaños para q quede como antes y era los qm ejor se ajustaban
*/
header {
  background: linear-gradient(to right, #000000, #242424);
  height: 15vh;
  width: 100vw;
}

.headercontenedor{
  max-width: 1200px;
  width: 95%;
  height: 100%;
  margin: 0 auto;
}
.contenedorlogos img{
  max-width: 80px;
}

.contenedorlogos.cespal img{
  max-width: 130px;
}
.contenedorlogos.canal3 img{
  max-width: 200px;
}
.contenedorlogos.live img{
  max-width: 150px;
  align-items:start;
  padding-left: 10px;
  
}

.videoybanner{
  display: flex;
  flex-direction: row;
  align-items: center;
  height: auto;
  width: auto;
}

/* --------------------------- */

.player {
  margin: 1em auto;
  width: 50vw;
  /* border:solid 10px; */
  height: 78hv;
}

/* lo descomente y lo agrege en el html para poder acomodar mejor las cosas 
este es el del principal para el index, no le puse el css al elemento y lo hice por clase por q es distitnto para el panel de control*/
.mainvideo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 75vh;
}
/* este es para el cambiarhorarios*/
.mainhorarios {
  display: flex;
  flex-direction: column;
  /* justify-content: space-around; */
  align-items: center;
  min-height: 75vh;
  height: 75vh;
  overflow: auto;
}

.mainnoticias{
  height: 75vh;
  background-color: white;
}

.maincontacto{
  height: 75vh;
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.maincolsultas{
  height: 75vh;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.imagencelular{
  display: none;

}

.achicarimagen{
  height: 25px!important;
}

.video-container {
  position: relative;
}

footer {
  background-color: #000000;
  color: white;
  text-align: center;
  /* padding: 10px; */
  height: 10vh;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: -webkit-fill-available;

} 

video {
  min-width: 40%;
  max-width: 100%;

}

.menu-toggle{
  display: none;
}

.vjs-theme-sea .vjs-big-play-button {
  width: 103px;
  height: 79px;
  object-fit: contain;
  background-color: rgba(255, 255, 255, 0.25);
  border: none;
  margin: 0 auto;
  line-height: 79px;
  top: 50%;
  left: 50%;
  border-radius: 30px;
  margin-top: -51.5px;
  margin-left: -39.5px;
}

.vjs-theme-sea .vjs-control-bar {
  height: 4em;
  background-color: rgba(255, 255, 255, 0.4);
}

.vjs-theme-sea .vjs-button:hover {
  color: #4176bc;
  background: linear-gradient(to top, #d0ddee, #fff);
}

.vjs-theme-sea .vjs-button > .vjs-icon-placeholder::before {
  line-height: 2.2;
}

.vjs-theme-sea .vjs-time-control {
  line-height: 4em;
}

.vjs-theme-sea .vjs-volume-panel {
  display: none;
}

.vjs-theme-sea .vjs-picture-in-picture-control {
  display: none;
}

.vjs-theme-sea .vjs-progress-control .vjs-play-progress {
  background-color: rgba(65, 118, 188, 0.9);
}

.vjs-theme-sea .vjs-progress-control .vjs-play-progress:before {
  display: none;
}

.vjs-theme-sea .vjs-progress-control .vjs-slider {
  background-color: rgba(65, 118, 188, 0.1);
}

.vjs-theme-sea .vjs-progress-control .vjs-load-progress div {
  background: rgba(255, 255, 255, 0.5);
}

.vjs-theme-sea .vjs-progress-control .vjs-progress-holder {
  margin: 0;
  height: 100%;
}

.vjs-theme-sea .vjs-progress-control .vjs-time-tooltip {
  background-color: rgba(65, 118, 188, 0.5);
  color: #fff;
}

.vjs-theme-sea .vjs-progress-control .vjs-mouse-display .vjs-time-tooltip {
  background-color: rgba(255, 255, 255, 0.7);
  color: #4176bc;
}



.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.popup-content {
  background-color: white;
  border-radius: 10px; /* Bordes redondeados */
  text-align: center;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0; /* Inicialmente, el popup estará oculto */
  animation: fadeIn 1s ease-in-out forwards; /* Animación de entrada */
}
.popup-content h2 {
  font-size: 24px; /* Tamaño del título */
  margin-bottom: 20px; /* Espacio entre el título y el formulario */
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  opacity: 1; /* Establece la opacidad inicial en 1 */
}

.close:hover {
  color: rgb(7, 7, 104);
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

label, input {
  margin: 5px;
}

/* button {
  background-color: blue;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  cursor: pointer;
}

button:hover {
  background-color: rgb(5, 5, 110);
} */

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



/* Agrega una clase para aplicar la animación de achicar */
.shrink-form {
  animation: shrinkAnimation 0.5s ease-in-out forwards;
}

@keyframes shrinkAnimation {
  0% {
    height: auto;
  }
  100% {
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }
}

.imagenes2 {
  /* text-align: center; */ /* Centra las imágenes horizontalmente */
  width: 80%;
  margin-top: -15px; /* Espacio superior de 10px */
  position: absolute;
  display:flex;
  justify-content: space-evenly;
  align-items: center;
  
}

.imagen2 {
  width: 40px; /* Tamaño de 10px para las imágenes */
  margin: 0 5px; /* Espacio horizontal entre las imágenes */
}
.imagen3 {
  width: 100px; /* Tamaño de 10px para las imágenes */
  margin: 0 5px; /* Espacio horizontal entre las imágenes */
}

.imagen4 {
  width: 120px; /* Tamaño de 10px para las imágenes */
  margin: 0 5px; /* Espacio horizontal entre las imágenes */
}


/*--- Boton switch ---*/
/* 
.switch-button {
  display: none;
  justify-content: flex-end;
}

.switch-button .switch-button__checkbox {
  display: none;
}

.switch-button .switch-button__label {
  background-color: red;
  width: 3.8rem;
  height: 1.5rem;
  border-radius: 1.5rem;
  display: inline-block;
  position: relative;
}

.switch-button .switch-button__label:before {
  transition: .2s;
  display: block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fdffff;
  content: '';
  border-radius: 50%;
  box-shadow: inset 0px 0px 0px 1px black;
}

.switch-button .switch-button__checkbox:checked+.switch-button__label {
  background-color: green;
}

.switch-button .switch-button__checkbox:checked+.switch-button__label:before {
  transform: translateX(2.2rem);
}
 */


/* switch rojo y verde activado o no */

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

input:checked+.slider {
  background-color: rgb(16, 4, 83);
}

input:focus+.slider {
  box-shadow: 0 0 1px rgb(0, 0, 0);
}

input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}


/* Rounded sliders */

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.imgbases{
  width: 1.5rem;
  height: 1.5rem;
}

.iconbase{
  position: absolute;
  bottom: 10px;
  right: 10px;
  
}
/* clase de los baner del costado, son dos pero cree una sola por q son iguales */
.banner{
 /*  width: 20vw; */
  /* height: 70vh; */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  margin: 2%;
}
/* esta clase es para acomodar los iframe para comodar como se ve el video */
.videobanner{
  border: none;
  width:270px;
  /* border-radius: 5px; */
  /* box-shadow: 8px 8px 20px 20px rgb(0 0 0); */
  height: auto;
  
}
/* comoda los video en el slider */
.videobannerslider{
  border: none;
  /* width:90%; */
  /* border-radius: 5px; */
  /* box-shadow: 8px 8px 20px 20px rgb(0 0 0); */
  height: auto;
  
}

.fondo{
  background-image: url("img/background_3.png"), url("");
}

.banner-title{
  color: #000000;
}


.banner-zocalo{
  color: #000000;
}

.Carrucel{
  display: none;
}

.youtube-link {
  width: 5%;
  height: 2%;
  /* background-color: red; */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 90px;
  right: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.youtube-link img {
  width: 70px;
  height: auto;
  transition: opacity 0.5s ease; /* Transición suave */
}

.youtube-link:hover {
  transform: scale(1.1);
}


/* slider */


/* estas son als secciones del slider */
.secciones {
  display: flex;
  width: 500%;
  transition: transform 0.5s ease-in-out;
}
/* el stilo del iframe dentro de la seccion va de la mano con la clase .Carrucel que esta dentro del media,por q uno acomoda la seccion y el otro el elemento*/
.secciones iframe {
  width: 270px;
  height: 20vh;
}

/* Botones radio ocultos */
/* input[type="radio"] {
  display: none;
} */

/* Controles para cada Carrucel */
.navigation-manual {
  position: absolute;
  width: 100%;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.manual-btn {
  border: 2px solid #40E0D0;
  padding: 5px;
  cursor: pointer;
  transition: background-color 0.5s;
  border-radius: 50%;
  margin: 0 5px;
}

.manual-btn:hover {
  background-color: #40E0D0;
}

#radio1:checked ~ .secciones {
  transform: translateX(0);
}

#radio2:checked ~ .secciones {
  transform: translateX(-20%);
}

#radio3:checked ~ .secciones {
  transform: translateX(-40%);
}

#radio4:checked ~ .secciones {
  transform: translateX(-60%);
}

/* Automático (opcional) */
.auto-btn {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.auto-btn div {
  pointer-events: auto;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
}

/* .seccionestitulos {
  position: absolute;
  margin-top: -4rem;
  display: flex;
  width: 500%;
  transition: transform 0.5s ease-in-out;
}

.titulosslider{
  color: #fdffff;
  width: 300px;

}
 */

.seleccionorden{
  display: flex;
  flex-direction: row;
}
.agregar{
  display: flex;
  flex-direction: column;
}
.internoseleccion{
  display: flex;
  flex-direction: column;
  margin: 10px;
}

.panel{
  display: flex;
  flex-direction: column;
}

.modificar{
  display: flex;
  flex-direction: column;
}

/* switch de habilitar agregar y editar */

.switch {
  position: relative;
  width: 60px;
  height: 30px;
}

input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}

.esconder{
  display: none;
}

.elegir{
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-around;
}

.selects{
  width: 100%;
  padding: 5px;
  margin: 2px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  border-color: black;
}

.div-contenido {
  display: none; /* Inicialmente, ocultamos todos los contenidos */
}

.div-contenido.visible {
  display: block; /* La clase visible hace que se muestre el contenido */
  height: 90%;
  width: 100%;
  border-top: 2px solid white;    /* Borde superior blanco */

}

.div-seleccion {
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seleccionado{
  color: #000000;
  background-color: #ffffff;
/*   border-radius: 20px 20px 0 0; */

}

.diasseleccionables{
  color: #ffffff;
  display: flex;
  flex-direction: row;
  width: 75vw; 
  height: 40px;
  /* background-color: #242424; */
  justify-content: center;
/*   border-radius: 20px 20px 0 0; */
  margin-top: 10px;
}

.diasconhorarios{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 3em;
/*   background-color: #242424; */
}

.redes{
  height: 2vw;
  margin: 5px;
}
.redes:hover{
  transform: scale(1.2); /* Agrandar al 120% */
}

.acciones{
  height: 60%;
  margin: 5px;
}
.acciones:hover{
  transform: scale(1.2); /* Agrandar al 120% */
}
.contenedoresdes{
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
}
.contenedorcontacto{
  display: flex;
  flex-direction: row;
  
}
.horario{
  color: #ffffff;
  border-left: 2px solid white;   /* Borde izquierdo blanco */
  border-bottom: 2px solid white; /* Borde inferior blanco */
  width: auto;
  height: 7vh;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-weight: bold; /* Hace el texto en negrita */
}

.horario:hover{
  background-color: #ffffff;
  color: #000000;
}

.agregarengrilla{
  color: #ffffff;
  border-left: 2px solid white;   /* Borde izquierdo blanco */
  border-bottom: 2px solid white; /* Borde inferior blanco */
  width: auto;
  height: 7vh;
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.vinculos{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 30vw;
  color: #ffffff;

}

.titulo{
  font-size: 2em;
  color: #ffffff;
  font-weight: bold;
}

.titulonegro{
  font-size: 2em;
  margin: 0;
  font-weight: bold;
}
.textoviculos{
  font-size: 1em;
  font-weight: bold; 
}

.dias{
  font-size: 1.5em;
  font-weight: bold; 
}

.botoncontacto{
  background-color: #d9d9d9; /* gris claro */
  color: #000000;            /* texto negro */
  font-weight: bold;         /* negrita */
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
}

.input-subrayado {
  border: none;
  border-bottom: 2px solid #000000; /* línea gris */
  outline: none;
  width: 70%;
  font-size: 14px;

  background: transparent;
}


.opcion-radio {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  color: #000;
}

.opcion-radio input[type="radio"] {
  margin-right: 6px;
  accent-color: #d9d9d9; /* color gris claro del radio button */
}



















/* scroll */

::-webkit-scrollbar {
  width: 8px; /* Grosor del scroll */
}

::-webkit-scrollbar-track {
  background: #222; /* Color de fondo */
  border-radius: 10px; /* Bordes redondeados */
}

::-webkit-scrollbar-thumb {
  background: #888; /* Color del scroll */
  border-radius: 10px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #fff; /* Cambia de color al pasar el mouse */
}


::-webkit-scrollbar {
  width: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.container:hover ::-webkit-scrollbar {
  opacity: 1; /* Aparece al pasar el mouse */
}


/* slider */

.slider {
  width: 15.7%;
  margin: auto;
  overflow: hidden;
  height: auto;
  /* margin-top: 15px; */
}

.slider ul {
  display: flex;
  padding: 0;
  /* 100% por cada imagen que se utilice si son 5 imagenes serian 500% */
  width: 300%;
  /* para q vaya pasando en 20 segundos invinitas veces 
      el alternate hace q vuelva a linicio y arranque de nuevo
  */
  animation: girar 20s infinite alternate;
}

.slider li {
  width: 100%;
  list-style: none;
  vertical-align: middle;
}

.slider img {
  width: 100%;
  border-radius: 15px;
}


/* animacion de slider */

@keyframes girar {
  /* los porcentajes son la cantidad de tiempo que pusimos antes 
  */
  0% {
      margin-left: 0;
  }
  35% {
      margin-left: 0;
  }
  /*los porcentajes entre medio de de cada imagen es el tiempo que tarda en cambiar */
  40% {
      margin-left: -100%;
  }
  65% {
      margin-left: -100%;
  }
  70% {
      margin-left: -200%;
  }
  100% {
      margin-left: -200%;
  }
}



.bordeRojo{
  border-color: red;
}

.divaGuardar{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

.botoncanal {
  background: linear-gradient(145deg, #555, #111);
  color: #fff;
  font-size: 18px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 4px 4px 8px #000, -4px -4px 8px #222;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}

.botoncanal::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 80%);
  transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.botoncanal:active::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.botoncanal:active {
  transform: scale(0.95);
  box-shadow: inset 2px 2px 6px #000, inset -2px -2px 6px #222;
}


.horaprograma {
  background-color: #ffffff; /* Fondo oscuro */
  color: #111; /* Texto blanco */
  font-size: 16px;
  padding: 8px;
  border: 2px solid #444; /* Borde gris oscuro */
  border-radius: 6px;
  outline: none;
  box-shadow: inset 2px 2px 5px #000, inset -2px -2px 5px #222;
  transition: all 0.2s ease-in-out;
  appearance: none; /* Oculta los estilos por defecto */
  text-align: center;
}

/* Efecto cuando el input está en foco */
.horaprograma:focus {
  border-color: #888; /* Cambia el borde a gris claro */
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.txtprograma {
  background-color: #ffffff; /* Fondo oscuro */
  color: #111; /* Texto blanco */
  font-size: 16px;
  padding: 8px;
  border: 2px solid #444; /* Borde gris oscuro */
  border-radius: 6px;
  outline: none;
  box-shadow: inset 2px 2px 5px #000, inset -2px -2px 5px #222;
  transition: all 0.2s ease-in-out;
  appearance: none; /* Oculta los estilos por defecto */
  width: 100%;
}

/* Efecto cuando el input está en foco */
.txtprograma {
  border-color: #888; /* Cambia el borde a gris claro */
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}


/* poop up */

/* Estilo general */
body {
  background: #1a1b1b;
  background-size: cover;
  height: 100vh;
  margin: 0;
}

/* Estilo del botón */
.botoncanal {
  background-color: #333;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}
.botoncanal:hover {
  background-color: #555;
}

/* Estilo del popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.popup-contenido {
  background-color: #111;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  text-align: center;
  width: 300px;
}

.popup-contenido p {
  margin-bottom: 15px;
  font-size: 18px;
  color: white;
}



/* fin poopup */

.publi{


}


.Titulovivo{
  width: 83vw;
  display: flex;
  align-content: center;
  height: 15vh;

}

.Titulovivo p{
    color: white;
  }

/* login */

.login-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1e1e1e;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  width: 300px;
  text-align: center;
}

.login-container h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.login-container input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 6px;
  background-color: #333;
  color: white;
  font-size: 1rem;
}

.login-container input::placeholder {
  color: #aaa;
}

.login-container button {
  width: 100%;
  padding: 0.75rem;
  background-color: #00cc99;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-container button:hover {
  background-color: #00b386;
}

/* fin login */



/* menu q se despliega */

.side-menu {
  position: fixed;
  top: 0;
 /*  right: 0; */
  width: 50vw;
  height: 100%;
  background-color: #111;
  padding-top: 60px;
  transition: transform 0.3s ease;
  transform: translateX(100%);
  z-index: 1000;
}

.side-menu ul {
  list-style: none;
  padding: 0;
}

.side-menu ul li {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid white;
}
.side-menu ul li:last-child {
    border-bottom: none; /* Elimina el borde del último li para mejor estética */
}
.side-menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
}

.side-menu ul li a:hover {
  color: #ccc;
}

.side-menu.show {
  transform: translateX(0);
}

.hidden {
  display: none;
}


.imgcerrar{
  width: 7vw;
  position: fixed;
  top: 15px;
  right: 15px;
}


/* slider para movil */
.slidermovil {
  display: none;
  width: 70vw;
  margin: auto;
  overflow: hidden;
  height: auto;
  /* margin-top: 15px; */
}

.slidermovil ul {
  display: flex;
  padding: 0;
  /* 100% por cada imagen que se utilice si son 5 imagenes serian 500% */
  width: 300%;
  /* para q vaya pasando en 20 segundos invinitas veces 
      el alternate hace q vuelva a linicio y arranque de nuevo
  */
  animation: girar 20s infinite alternate;
}

.slidermovil li {
  width: 100%;
  list-style: none;
  vertical-align: middle;
}

.slidermovil img {
  width: 100%;
  border-radius: 15px;
}

.video-js .vjs-big-play-button {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.contactosfooter{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 10px;
  margin-top: 10px;
}

.contactosfooter p{
  margin-top: 0px;
}

h6{
  margin: 15px;
}

.formcontacto{
  width: 70vw;
  margin-left: 50px;
}


/* tabla */
.contenedorconsultas table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
  margin-inline: 10px;
  border-radius: 8px;
  overflow: hidden;
}

/* Cabecera */
.contenedorconsultas thead {
  background-color: #333;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contenedorconsultas th {
  padding: 12px 15px;
  text-align: left;
}

/* Filas */
.contenedorconsultas td {
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
  color: #333;
}

/* Zebra striping */
.contenedorconsultas tbody tr:nth-child(even) {
  background-color: #eaeaea;
}

/* Hover */
.contenedorconsultas tbody tr:hover {
  background-color: #d6d6d6;
  cursor: default;
}

























/* medias */


@media (min-width: 768px) {

  .tres-columnas{
      display: flex;
      justify-content: space-between;
      align-items: center;

  }
  .headercontenedor{
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
  }

  .contenedorlogos{
      flex: 0 0 calc(33.33% -1rem)
  }
  .banner{
    display: none;
  }
  
}

/* ------------------------- */

@media (max-width: 768px) {
  header {
    
    /* padding: 10px; */
  }
  
  .tres-columnas{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  
  .contenedorlogos.cespal img{
    display: none;
  }

  .contenedorlogos.canal3 img{
    height: 100px;
  }

  p{
    font-size: 10px;
  }

  .slider{
    display: none;
  }
  .Titulovivo{
    /* display: none; */
    width: 95%;
    display: flex;
    justify-content: center;
  }

  .vinculos{
    display: none!important;
  }
  .menu-toggle{
    display: flex!important;
    margin: 25px;
    height: 30%;
    margin-right: 25px;
  }
  .slidermovil{
    display: block!important;
  }
  .videoybanner{
    flex-direction: column;
  }
}


@media (max-width: 500px) {
  .player{
      width: 95vw !important;
  }
  .imagen{
    max-width: 100% !important; 
    max-height: 100% !important; 
    height: auto !important;
  }
  
}
@media (max-width: 300px) {
  .secciones iframe {
    width: 60vw !important;
  }
  .Carrucel {
    width: 60vw !important;
  }
  
}

@media screen and (max-width: 600px) {
  .popup-content {
    width: 80%; /* Ancho del popup para pantallas pequeñas */
    max-width: 400px; /* Máximo ancho del popup */
  }

}


/* media para comodar los baner para q los videos del costado no opaque el pricipal  modifica  lla altura de los bañer para no rompa tampoco*/
@media screen and (min-height: 700px) {
  .banner {
    height: 70vh;
  }
}

/* cuando se ba achicando de los costado este media crea el slider, deshabilitando los baners y habilitando el slider */
@media (max-width: 950px) {
  .banner{
    display: none;
  }
  .player {
    height: min-content;

  }
  .mainvideo{
    
    flex-direction: column;
    justify-content: flex-start;
    height: 70vh;
  }
  .Titulovivo p {
    font-size: 20px;
    font-weight: bold;
  }
  /* este es el q acomoda las partes del slider junto a .secciones iframe */
  .Carrucel {
    display: block;
    align-content: center;
    position: relative;
    width: 270px;
    height: 40vh;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
  }
  .mainhorarios{
    flex-direction: column;
    min-height: 65vh;
    height: 70vh;

  }
  footer{
    position: relative !important; 
    height: 15vh;
    flex-direction: column;
    align-items: flex-start;
  }
  footer p {
    font-size: 10px;
    margin-left: 10px;
    font-weight: bold;
    margin-left: 45px;
  }

  footer .contenedoresdes{
    margin-left: 45px;

  }
  footer .redes{
    height: 4vh;
  }

  .imagen{
    display: none;
  }
  .imagencelular{
    display: block;

  }
  .diasseleccionables {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    justify-content: flex-start;
    width: 95vw;
  }

  .diasseleccionables::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .diasseleccionables div {
    padding: 0 10px;
    font-weight: bold;
    font-size: 18px;
  }


  .mainnoticias{
    display: block;
    overflow-x: auto;
    align-items: center; 
  }

  .maincontacto{
    height: 70vh;
    display: block;
    overflow-x: auto;
    align-items: center; 
    padding-left: 5px;
  }

  .maincolsultas {
    align-items: flex-start;
    
    
  }

  .contenedorconsultas{
    width: 100vw;
    scrollbar-width: none; /* Firefox */
    overflow-x: auto;
  }

  .contenedorconsultas::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  .panelconsultas{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-inline: 15px;
  }
  
  .panelconsultas button {
    margin-top: 15px;
  } 

  .Noticia{
    margin: auto;
    margin-top: 10px;
    width: 90%;
    height: 30vh;
    background-color: #00b386;
  }

  .divhorario{
    width: 95vw;
  }


}

@media screen and (max-width: 450px) {
  .flex-item:nth-child(1),
  .flex-item-icon:nth-child(n) {
      width: 25%;
  }
  .flex-item:nth-child(2),
  .flex-item-icon:nth-child(3n) {
      width: 50%;
  }
  .flex-item:nth-child(3) {
      width: 25%;
  }
  .switch-button .switch-button__label {
      width: 3rem;
      height: 1.2rem;
      border-radius: 1.2rem;
  }
  .switch-button .switch-button__label:before {
      width: 1.2rem;
      height: 1.2rem;
  }
  .switch-button .switch-button__checkbox:checked+.switch-button__label {
      background-color: green;
  }
  .switch-button .switch-button__checkbox:checked+.switch-button__label:before {
      transform: translateX(1.75rem);
  }
  .fa-user-plus,
  .fa-sign-out-alt,
  .fa-edit {
      font-size: 22px;
  }
  .fa-bars {
      font-size: 28px;
  }
  #verpasswd {
      margin-left: 50%;
  }
}
