html,body{
    margin: 0;
    font-family: 'Encode Sans', sans-serif!important;
    background-color: #0e0e0e!important;
   
}
.navbar-nav .dropdown-menu {
    position: absolute!important;
    z-index: 100 !important;
}
.mensaje_exito{
    color: green;
    font-weight: bold;
    font-size: 14px;
}
#progress-text{
    color: white;
}
.status {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 5px;
    transition: background-color 0.3s ease;
}

.status.online {
    background-color: green;
}

.status.offline {
    background-color: red;
}
.disabled {
    /* pointer-events: none; */
    cursor: not-allowed;
    opacity: 0.6;
}
.form-check-input:checked {
    background-color: #fd590d!important;
    border-color: #fd660d!important;
}
 #menu li:hover {
    background:rgb(255, 81, 0)!important;
 }
 h1,h2,h3,span,.title,.interaccion_dividida2,p{
    color: white!important;
 }
 .text-light{
    color: white!important;
 }
 
.button{
    background-color: #323232!important;
 }
 .social-icons img{
    width:40px;
 }
 /*CARRUCEL TOP*/
 [role=button] {
 
    border: 1px solid gray;
    border-radius: 50%;
    margin-left: 5px;
}
.owl-prev{
    border-radius: 10px 0px 0px 10px;
    background: rgb(145, 0, 0);
    border:1px solid white;
}
.owl-next{
    border-radius: 0px 10px 10px 0px;
    background: rgb(145, 0, 0);
    border:1px solid white;
}
.game-section .owl-theme.custom-carousel .owl-dots {
 
    margin-top: 10px!important;
    margin-bottom: 20px;
}
 /*CARRUCEL TOP*/
 /*TABLA*/
 #datatables{
    color:white!important;
 }
 .table>:not(caption)>*>* {
    color:white!important;
    background-color: #0a0909c4!important;
 }
 tbody, td, tfoot, th, thead, tr {
     
    border: 1px solid #c1c1c1 !important;
 
 }
 /*COPIAR CLIPBOARD*/
 .copy-container {
    display: flex;
    align-items: center;
}

/* Estilo del label */
#affiliateUrl {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin: 0;
}
/* Estilo del botón */
.copy-button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: 1px solid #ced4da;
    padding: 6px 12px;
    background-color: #353535;
    color: #fff;
    cursor: pointer;
    outline: none;
    margin-left: -1px; /* Para conectar visualmente el botón con el label */
    transition: background-color 0.3s;
    border-radius: 0px 7px 7px 0px;
}
/*TAZ TAZ*/
.taztaz_art{
    background-color: black !important;
    color: white;

}
/*TAZ TAZ*/
/* Efecto hover del botón */
.copy-button:hover {
    background-color: #363636;
}
 /*COPIAR CLIPBOARD*/
 /*TABLA*/
.active{

    color:white;
    font-weight: bold;
}
.pedidos{
    min-height: 1200px;
}
.pedidos .busqueda{
    padding:5px;
    border-radius: 3px;
    border:1px solid rgb(192, 192, 192);
    background:white;
}
#cerrar_icon{
	padding: 3px 10px 3px 10px;
    color:white;
    background: #adadad;   
    cursor:pointer;
    display: inline-block;
}
.search-container .search-button{
    margin-left: -10px;
    border-radius:0px 7px 7px 0px;
}
.promocionar{
    color:white;
    border-radius: 7px;
    padding: 10px;
    font-weight: bold;
    background: red;
}
.promocionar:hover{
    color:white;
    border-radius: 7px;
    padding: 10px;
    font-weight: bold;
    background: rgb(170, 0, 0);
}
/*ANIMACION ABAJO HACIA ARRIBA*/
.slide-up {
  
    position: relative;
    animation: slideUp 2s ease-in-out forwards;
}
.configuraciones label{
    color:black;
}
.text-light{
    color: white;
}
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/*ANIMACION ABAJO HACIA ARRIBA*/
 /*ANIMACION LINEA NOTAS*/
.linea_notas {
    background-image: url(../imagenes/menu.png); 
    height: 50px;
    margin: 10px 0;
    width: 100%;
    background-size: contain;
    background-repeat: repeat-x; /* Hace que la imagen se repita horizontalmente */
    animation: scrollBackground 10s linear infinite; /* Aplica la animación */
}

@keyframes scrollBackground {
    from {
        background-position: 0 0; /* Comienza en la posición original */
    }
    to {
        background-position: -100% 0; /* Se mueve hacia la izquierda */
    }
}
 /*ANIMACION LINEA NOTAS*/

/*ANINACION GENERAL*/
.scroll-animate-left, .scroll-animate-right {
    position: relative;
    opacity: 0; /* Oculto inicialmente */
    transition: all 1s ease-out; /* Transición suave */
}

/* Efecto de desplazamiento de izquierda a derecha */
.scroll-animate-left {
    left: -100%; /* Empieza fuera de la pantalla a la izquierda */
}

.scroll-animate-left.animate {
    left: 0; /* Termina en su posición predeterminada */
    opacity: 1; /* Hacer visible */
}

/* Efecto de desplazamiento de derecha a izquierda */
.scroll-animate-right {
    right: -100%; /* Empieza fuera de la pantalla a la derecha */
    left: auto; /* Asegura que no afecte el posicionamiento */
}

.scroll-animate-right.animate {
    right: 0; /* Termina en su posición predeterminada */
    opacity: 1; /* Hacer visible */
}
/*Animacion avatar*/
/* Define la animación */
@keyframes zoomInOut {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1); /* Aumenta al 30% más grande */
    }
    100% {
      transform: scale(1);
    }
  }
  
  /* Aplica la animación a la clase .imagenavatar_animada */
  .imagenavatar_animada {
    animation: zoomInOut 2s ease-in-out infinite; /* Ajusta la duración y el tipo de animación */
  }
  
/*Animacion avatar*/
 /*ANINACION GENERAL*/

#mensaje_error{
    color:red;
    margin-top:10px;
    margin-bottom:10px;
}
.fuente_standar{
    font-size:18px;
}
.body-inner{
    margin-top:77px;
    min-height: 1000px;
    overflow-y:hidden;
    background-color: #0B1828;
    padding-bottom: 50px;
  
}
.contiene_pestana .pestana{
    float:left;
    width:33%;
    border:1px solid rgb(221, 221, 221);
    background:rgb(240, 240, 240);
 
    padding:5px;
}
.contiene_pestana a{
    color:black;
}
.contiene_pestana .seleccionada{
    background:rgb(168, 90, 0);
 
}
.contiene_pestana .seleccionada a{
    color:white; 
}
 
/*ROTACION*/
.rotate {
    animation: rotation 15s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/*ROTACION*/
/*SACUDIDA*/
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.cta-buttons .btn_registrarse {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
}
/*SACUDIDA*/

.success{
    color:green!important;
}
.botonpagar{
    background: rgb(255, 136, 0)!important;
    color:rgb(255, 255, 255)!important;
}
#muestratotal{
    color:black!important;
}
.btnmajec{
    background-color: rgb(19, 116, 0);
    color:white;
    border-radius: 5px;
    padding: 10px;
}
.btnmajec:hover{
    background-color: rgb(45, 141, 0);
    color:white;
    border-radius: 5px;
    padding: 10px;
}
.col-100{
    width:100px;
}
.col-200{
    width:200px;
}
.col-300{
    width:300px;
}
.col-400{
    width:400px;
}
textarea:focus,input:focus {
    outline: none; /* Elimina el borde al enfocar */
    border: 1px solid #ccc; /* Mantiene el borde sin cambio al enfocar */
    box-shadow: none; /* Elimina cualquier sombra del borde al enfocar */
}
a{
    text-decoration: none!important;
}
 
 
.text-center{
    text-align: center;
}
.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}
.m-t-10{
    margin-top: 10px;   
}
.m-t-20{
    margin-top:20px;
}
.m-t-30{
    margin-top:30px;
}
.m-t-40{
    margin-top:40px;
}
.m-t-50{
    margin-top:50px;
}

.m-r-10{
    margin-right:10px;
}
.m-r-20{
    margin-right:20px;
}
.m-r-30{
    margin-right:30px;
}
.m-r-40{
    margin-right:40px;
}
.m-r-50{
    margin-right:50px;
}
.m-b-10{
    margin-bottom: 10px;   
}
.m-b-20{
    margin-bottom:20px;
}
.m-b-30{
    margin-bottom:30px;
}
.m-b-40{
    margin-bottom:40px;
}
.m-b-50{
    margin-bottom:50px;
}

.m-l-10{
    margin-left:10px; 
}
.m-l-20{
    margin-left:20px;
}
.m-l-30{
    margin-left:30px;
}
.m-l-40{
    margin-left:40px;
}
.m-l-50{
    margin-left:50px;
}
.p-l-10{
    padding-left:10px;    
}
.p-l-20{
    padding-left:20px;
}
.p-l-30{
    padding-left:30px;
}
.p-l-40{
    padding-left:40px;
}
.p-l-50{
    padding-left:50px;
}
.p-r-10{
    padding-right:10px;    
}
.p-r-20{
    padding-right:20px;
}
.p-r-30{
    padding-right:30px;
}
.p-r-40{
    padding-right:40px;
}
.p-r-50{
    padding-right:50px;
}
.p-b-10{
    padding-bottom:10px;    
}
.p-b-20{
    padding-bottom:20px;
}
.p-b-30{
    padding-bottom:30px;
}
.p-b-40{
    padding-bottom:40px;
}
.p-b-50{
    padding-bottom:50px;
}
.p-t-10{
    padding-top:10px;    
}
.p-t-20{
    padding-top:20px;
}
.p-t-30{
    padding-top:30px;
}
.p-bt40{
    padding-top:40px;
}
.p-t-50{
    padding-top:50px;
}
/*MODAL*/
 /*SLIDER*/
 
 .contiene_videos_top_horizontal{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow:hidden;
    min-height: 500px;
    margin-top: 30px;
}
 .contieneanuncios{
    width:100%;
    margin:0 auto;
    max-width:800px;  
    overflow:hidden;
 }
 .contenedor_anuncio{
    float:left;
    height:150px;
    width:25%;
    border:1px solid white;
 }
 .contenedor_anuncio img{
    width:100%; 
    height:100%; 
    object-fit: cover;
 }
 .pandapp-pagination {
    position: relative;
    margin-top: 60px;   
    float: right;
    transform: translateX(-50%);
    display: flex;
}


.pandapp-slider {
    width: 100%;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    box-shadow: -2px 3px 28px -11px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: -2px 3px 28px -11px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -2px 3px 28px -11px rgba(0, 0, 0, 0.75);
}

.pandapp-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.pandapp-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    background-color: inherit;
    padding: 0px;
    text-align: center;
    font-size: 24px;
    color: #333;
}

 

.pandapp-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #000000;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.pandapp-pagination-bullet-active {
  background-color: rgb(246, 138, 48);
}

.pandapp-button-prev,
.pandapp-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  user-select: none;
}

.pandapp-button-prev {
  left: 10px;
}

.pandapp-button-next {
  right: 10px;
}

 /*SLIDER*/
/*INDEX HOME*/

.portada {
    background: url(../imagenes/secciones/portada.jpg) no-repeat center center/cover;
    color: white;
    text-align: center;
  
    height:800px;
    border:1px solid black;

}
.capa{
 
   padding: 100px 20px;
   padding-top:300px;
   background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
   width: 100%;
   height:800px;

}
.portada h1 {
    font-size: 60px;
    font-weight:bold;
}
.portada p {
    font-size: 1.2em;
}
.portada .cta-buttons {
    margin-top: 20px;

}
.portada .cta-buttons button {
    padding: 15px 30px;
    font-size: 1em;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    color:white;
}
.portada .cta-buttons button:hover {
    background-color: #444;
}
.centrar_index{

   text-align: center;
   margin: 0 auto;
  
   overflow: hidden;
   padding-top: 50px;
   
}
.seccion{
   max-width:1200px;
   margin:0 auto;
   padding: 50px;
   margin-top:30px;
   margin-bottom:30px;
   overflow:hidden;
}
.seccion h2{
   font-size:50px;
   font-weight:bold;
   color:yellow!important;
}
.seccion .izquierda{
   float:left;
   width: 50%;
   text-align:left;
   color: white;
}
 
 
.seccion .derecha{
   float:right;
   width: 50%;
   text-align:left;
   color: white;
}
.seccion .izquierda img,.seccion .derecha img{
   border-radius:20px;
}

/*FORMULARIO DE PAGO*/
    /* Estructura General */
    .formulario_de_pago .content {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    
    .formulario_de_pago .container {
        max-width: 600px;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        font-family: 'Arial', sans-serif;
    }
    
    /* Estilos para Títulos y Texto */
    .formulario_de_pago h1 {
        font-size: 28px;
        color: #333333;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .formulario_de_pago h4 {
        font-size: 18px;
        color: #666666;
        margin-bottom: 10px;
    }
    
    .formulario_de_pago div {
        color: #555555;
        margin-bottom: 15px;
        text-align: center;
    }
    
    /* Estilos para Imagen */
    .formulario_de_pago .anuncio-imagen {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        border-radius: 8px;
        object-fit: cover;
    }
    
    /* Estilos para la Interacción */
    .formulario_de_pago .cuadro-interaccion {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    
    .formulario_de_pago .interaccion-dividida {
        flex: 1;
        margin: 0 5px;
    }
    
    .formulario_de_pago label {
        font-size: 14px;
        color: #444444;
        margin-bottom: 5px;
        display: block;
    }
    
    .formulario_de_pago .fecha_pago{
        width: 100%;
        padding: 8px;
        border-radius: 4px;
        border: 1px solid #cccccc;
        font-size: 14px;
    }
    
    /* Estilos para el Botón */
    .formulario_de_pago .boton-pagar {
        display: block;
        width: 100%;
        padding: 10px;
        font-size: 16px;
        color: #ffffff;
        background-color: #007BFF;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        text-align: center;
    }
    
    .formulario_de_pago .boton-pagar:hover {
        background-color: #0056b3;
    }
/*FORMULARIO DE PAGO*/
/*CONFIGURACION*/
.tabs_c {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    border-bottom: 2px solid #ddd;
}

.tabs_c li {
    margin-right: 10px;
}

.tabs_c li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #555;
    border: 1px solid #ddd;
    border-bottom: none;
    background-color: #f9f9f9;
    border-radius: 5px 5px 0 0;
}

.tabs_c li.active a {
    background-color: #fff;
    color: #000;
    font-weight: bold;
    border-top: 2px solid #007bff;
    border-left: 2px solid #007bff;
    border-right: 2px solid #007bff;
}

.tabs_c li a:hover {
    background-color: #eee;
    color: #000;
}

/*CONFIGURACION*/

/*CARRUCEL INDEX*/
.seccion_topmusicos{
    background:radial-gradient(at 10.945907584141779% 90.51953300416784%, hsla(321.0878661087866, 97.55102040816327%, 48.0392156862745%, 1) 0%, hsla(321.0878661087866, 97.55102040816327%, 48.0392156862745%, 0) 100%), radial-gradient(at 65.88701274259623% 11.106780562389474%, hsla(230.96234309623432, 97.55102040816327%, 48.0392156862745%, 1) 0%, hsla(230.96234309623432, 97.55102040816327%, 48.0392156862745%, 0) 100%), radial-gradient(at 28.709603843524146% 55.99612551660385%, hsla(321.0878661087866, 97.55102040816327%, 48.0392156862745%, 1) 0%, hsla(321.0878661087866, 97.55102040816327%, 48.0392156862745%, 0) 100%), radial-gradient(at 99.7519368640428% 53.4780517062232%, hsla(230.96234309623432, 97.55102040816327%, 48.0392156862745%, 1) 0%, hsla(230.96234309623432, 97.55102040816327%, 48.0392156862745%, 0) 100%), radial-gradient(at 52.12881136784482% 12.418780358437198%, hsla(321.0878661087866, 97.55102040816327%, 48.0392156862745%, 1) 0%, hsla(321.0878661087866, 97.55102040816327%, 48.0392156862745%, 0) 100%), radial-gradient(at 87.45088444604845% 30.581489903061776%, hsla(230.96234309623432, 97.55102040816327%, 48.0392156862745%, 1) 0%, hsla(230.96234309623432, 97.55102040816327%, 48.0392156862745%, 0) 100%), radial-gradient(at 70.89264398669586% 91.88565802176876%, hsla(321.0878661087866, 97.55102040816327%, 48.0392156862745%, 1) 0%, hsla(321.0878661087866, 97.55102040816327%, 48.0392156862745%, 0) 100%);
   color:white;
}
.seccion_topmusicos h2{
   color:white;
}
/* .carousel_home { */
   /* width: 80%; */
   /* margin: 0px auto; */
   /* overflow: hidden; */
   /*  */
   /* border-radius: 10px; */
   /* text-align: center; */
/* } */
/*  */
/* .carousel-title { */
   /* font-size: 2em; */
   /* margin-bottom: 20px; */
/* } */
/*  */
/* .carousel-inner2 { */
   /* display: flex; */
   /* transition: transform 0.5s ease-in-out; */
/* } */
/*  */
/* .carousel-item2{ */
  /* min-width: 25%; 100% / 5 items*/
   /* max-width: 400px;         */
   /* box-sizing: border-box; */
   /* border-radius: 27px; */
   /* background: black; */
   /* margin-right: 15px; */
   /* margin-top:10px; */
/* } */
/*  */
/* .carousel-item2 img { */
   /* width: 100%; */
   /* height: auto; */
   /* border-bottom: 2px solid #ddd; */
   /* border-radius: 27px 27px 0px 0px; */
/* } */
/*  */
/* .artist-info { */
   /* padding: 15px; */
/* } */
/*  */
/* .artist-name { */
   /* font-size: 1.2em; */
   /* font-weight: bold; */
/* } */
/*  */
/* .artist-description { */
   /* font-size: 0.9em; */
   /* color: white; */
   /* display: -webkit-box; */
   /* -webkit-line-clamp: 3; */
   /* line-clamp: 3; */
   /* -webkit-box-orient: vertical; */
   /* overflow: hidden; */
   /* text-overflow: ellipsis; */
   /* max-height: 4.5em; */
   /* line-height: 1.5em; */
/* } */
/*CARRUCEL INDEX*/
/*GRID VIDEOS INDEX*/
.categoria_seleccionada{
    background:red!important;
   
}
.categoria_seleccionada a{ 
    color:white;
}
.seccion_gridvideos .container {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
   gap: 20px;
}
.seccion_gridvideos .video-card {
   border: 1px solid #ddd;
   border-radius: 8px;
   overflow: hidden;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease; /* Asegúrate de que todas las propiedades tengan una transición suave */
   width: 95%; /* Añade un ancho inicial */

}
.seccion_gridvideos  .video-card:hover {    
    width:100%;
 }
.seccion_gridvideos .thumbnail {
   width: 100%;
   height: 170px;
   border-radius: 8px 8px 0px 0px;
}
.seccion_gridvideos .details {
   padding: 10px;
   width: 100%;
}
.seccion_gridvideos .title {
   font-size: 1em;
   font-weight: bold;
   margin-bottom: 5px;
}

@media (max-width: 600px) {
   .seccion_gridvideos .container {
       grid-template-columns: 1fr;
   }
}
/*GRID VIDEOS INDEX*/
/*CATEGORIAS*/
.seccion_generos{
    background:radial-gradient(at 10.945907584141779% 90.51953300416784%, hsla(321.0878661087866, 97.55102040816327%, 48.0392156862745%, 1) 0%, hsla(321.0878661087866, 97.55102040816327%, 48.0392156862745%, 0) 100%), radial-gradient(at 65.88701274259623% 11.106780562389474%, hsla(230.96234309623432, 97.55102040816327%, 48.0392156862745%, 1) 0%, hsla(230.96234309623432, 97.55102040816327%, 48.0392156862745%, 0) 100%), radial-gradient(at 28.709603843524146% 55.99612551660385%, hsla(321.0878661087866, 97.55102040816327%, 48.0392156862745%, 1) 0%, hsla(321.0878661087866, 97.55102040816327%, 48.0392156862745%, 0) 100%), radial-gradient(at 99.7519368640428% 53.4780517062232%, hsla(230.96234309623432, 97.55102040816327%, 48.0392156862745%, 1) 0%, hsla(230.96234309623432, 97.55102040816327%, 48.0392156862745%, 0) 100%), radial-gradient(at 52.12881136784482% 12.418780358437198%, hsla(321.0878661087866, 97.55102040816327%, 48.0392156862745%, 1) 0%, hsla(321.0878661087866, 97.55102040816327%, 48.0392156862745%, 0) 100%), radial-gradient(at 87.45088444604845% 30.581489903061776%, hsla(230.96234309623432, 97.55102040816327%, 48.0392156862745%, 1) 0%, hsla(230.96234309623432, 97.55102040816327%, 48.0392156862745%, 0) 100%), radial-gradient(at 70.89264398669586% 91.88565802176876%, hsla(321.0878661087866, 97.55102040816327%, 48.0392156862745%, 1) 0%, hsla(321.0878661087866, 97.55102040816327%, 48.0392156862745%, 0) 100%);
   color:white;
}
.seccion_generos h2{
   color:white;
}
.grid-container {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 10px;
   width:100%;
   margin:0 auto;
}
.seccion_generos .grid-item {
   position: relative;
   width: 100%;
   padding-top: 100%;   
   overflow: hidden;
   perspective: 1000px;
   cursor: pointer;
 
}
.grid-item-inner {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
   color: white;
   background-size: cover;
   background-position: center;
   transform-style: preserve-3d;
   transition: transform 0.6s;
}
.grid-item-inner:hover {
   transform: rotateY(180deg);
}
.grid-item-inner .front, .grid-item-inner .back {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   backface-visibility: hidden;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: rgba(0, 0, 0, 0.945);
}
.grid-item-inner .back {
   transform: rotateY(180deg);
}
.grid-item h3, .grid-item p {
   margin: 0;
   padding: 10px;
}
.grid-item::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-size: cover;
   background-position: center;
   transform: scale(1.1);
   z-index: -1;
}
@media (max-width: 1200px) {
   .grid-container {
       grid-template-columns: repeat(3, 1fr);
   }
}
@media (max-width: 900px) {
   .grid-container {
       grid-template-columns: repeat(2, 1fr);
   }
}
@media (max-width: 600px) {
   .grid-container {
       grid-template-columns: 1fr;
   }
}
/*CATEGORIAS*/

/*INDEX HOME*/
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 60px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }
  
  /* Modal Content (image) */
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  /* Caption of Modal Image (Image Text) - You can style this however you want */
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }
  
  /* Add Animation - Zoom in the Modal */
  .modal-content, #caption { 
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
  }
  
  /* The Close Button */
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
/*MODAL*/
/*FECHA*/
label {
    font-size: 18px;
    color: #d9d9d9;
    margin-bottom: 10px;
    display: block;
}
input[type="datetime-local"] {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #dddddd;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s;
}
input[type="datetime-local"]:focus {
    border-color: #007bff;
    outline: none;
}
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(0.5);
}
/*FECHA*/
/*LISTA AGENCIAS*/
.contiene_usuario{
    padding:5px;
    width:80%;           
    display: flex;
    align-items: center; 
    border:1px solid #dbdbdb;
    border-radius:7px;
    margin-left:50px;
    margin-bottom:10px;
}
.contiene_usuario .foto{
    width:100px;
    height:100px;         
}
.contiene_usuario .foto img{

    border:1px solid #dbdbdb;
    border-radius:7px;   
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.contiene_usuario .nombre{
    width:300px;
 
    text-align:left;
    padding-left:20px;            
}
.contiene_usuario .profesion{
    font-weight:bold;
    color:red;
}
/*LISTA AGENCIAS*/

/*MENU IZQUIERDA*/
 
  
  #menu {
    position: fixed;
    top: 73px;
    left: 0;
    width: 20%;
    min-width: 200px;
    max-width: 200px;
    height: calc(100vh);
    background-color: #0D1D2F;
    transition: transform 0.3s ease;
    transform: translateX(0);
    z-index: 1;
  }
  
  #menu.retracted {
    transform: translateX(-80%);
  }
  
  #toggle {
    position: fixed;
    top: 20px;
    right: 0px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    /* background-color: #333; */
    border-radius: 5px 0 0 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
  }
  
  #toggle:hover {
    background-color: #c75000;
  }
  
  #toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    margin-bottom: 4px;
    transition: transform 0.3s ease;
  }
  
  #toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  #toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  #toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
  }
  .menu_suscripciones li a{
    font-size: 13px;
    margin-left: -16px;
  }
 
  .menu_suscripciones .titulo{
    color:white;
    font-weight: bold;
  }
  .menu_suscripciones img{
    width: 30px;
    height: 30px;
    font-size:12px;
    margin-right: 5px;
    border-radius:50%;

  }
  /* Estilos adicionales para mejorar la apariencia */
  #menu {
    font-family: Arial, sans-serif;
  }
  
  #menu nav {
    padding-top: 20px;
  }
  
  #menu .ul_menu {
 
    margin-top:64px;
  }
  
  #menu ul li {
    position: relative;
    
    margin-bottom: 5px;
    padding: 5px;
    display: block;
    border-radius: 7px;
    margin-right: 5px;
    margin-left: -28px;
    
  }
  
  #menu ul li:before {

    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
  }
  
  #menu ul li a {
    color:white;
    position: relative;
    padding-left: 16px;
    text-decoration: none;
  }
  #menu ul li a:hover {
      color:black;
  }
  
  #menu ul li a:hover:before {
    width: 12px;
    height: 12px;
 
  }
  
  #menu.retracted ul li a {
    /* opacity: 0; */
    /* visibility: hidden; */
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  }
  
  #menu.retracted ul li a:before {
    display: none;
  }
  
  #menu.retracted #toggle.active ~ ul li a {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
  }
  .imgicono{
    height:25px;
    width:25px;
    margin-right:2px;
    padding:2px;
  }
  .imgicono2{
    height:20px;
    width:20px;
    margin-right:2px;
   
  }
  .imgicono3{
    cursor:pointer;
    width:50px;
    margin-right:2px;
    padding:3px;
    border-radius: 7px;

  }
  .imgicono3:hover{
    background:#d4fffd;
  }
  /*VIDEOS*/


.video {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-bottom: 10px;
}

.thumbnail {
    
    height: auto;
    border-radius: 10px;
}

.cover {
    object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 10px;
}
 
.contiene_grid_videos a{
    text-decoration:none;
    color: black;
}
.container2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px;
}

.categories {
    display: flex;
    display: -webkit-box;
    overflow: hidden;
    width: 100%; /* Ajusta según el espacio que desees */
}

.category {
    min-width: 100px;
    margin: 0 10px;
    font-size: 13px;
    padding: 5px;
    border-radius: 7px;
    background-color: #000000;
    font-weight: bold;
    text-align: center;
 
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

button {
 
    color: #1c1c1c;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
}
button:disabled {
  
    cursor: not-allowed;
}
  .article .visitas{
    font-size: 12px;
    margin-top:5px;
    color:rgb(0, 0, 0);
    padding-left: 10px;
  }
  .article2 .visitas{
    font-size: 12px;
    margin-top:5px;
    color:white;
    padding-left: 10px;
  }
  .izquierda_videos{
    width: 80%; 
    float: left;
    min-height: 1000px;
    margin-left: 50px;
  }
  .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .article {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex; /* Para alinear contenido en columna */
    flex-direction: column; /* Alinear contenido en columna */
 
  }
  .article2 {
    background-color: #000000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex; /* Para alinear contenido en columna */
    flex-direction: column; /* Alinear contenido en columna */
    margin-left: 10px;

  }
  .article2 a{

    color:white!important;
  }
  .author-info {
    display: flex; /* Alinear contenido en fila */
    align-items: center; /* Centrar verticalmente */
    margin-bottom: 10px;
 
  }
  
  .author-photo {
    width: 50px; /* Ajustar el tamaño de la foto del autor según sea necesario */
    height: 50px; /* Ajustar el tamaño de la foto del autor según sea necesario */
    margin-right: 10px;
  }
  
  .author-photo img {
    /* width: 100%; */
    border-radius: 50%; 
    width: 40px;
    height: 40px;
  }
  
  .author-name {
    font-weight: bold;
  
  }
  
  .video {
    margin-bottom: 10px;
  }
  
  .video iframe {
    width: 100%;
    height: 200px; /* Ajustar según sea necesario */
    border: none;
  }
  
  .video-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .video-description {
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* número de líneas */
    line-clamp: 3; /* número de líneas */
    -webkit-box-orient: vertical;
    font-size: 14px;
    padding-left: 10px;
  }
  .thumbnail {
      max-width: 100%;
      height: auto;
      cursor: pointer;
    }
    .contienepultarysuscribirse{
     
        display: flex;
    }
 /*VIDEO INDIVIDUAL*/
 /*EDITAR VIDEO*/
 #imagen-contenedor {
    display: inline-block;
    text-align: center;
    margin: 10px;
   
    padding: 10px;
    border-radius: 5px;
}

#imagen_miniatura {
    display: block;
    margin-top: 10px;
    color: red;
    text-decoration: none;
    font-weight: bold;
}

#imagen_miniatura:hover {
    text-decoration: underline;
}
 /*EDITAR*/
 /*LISTA MUSICOS*/
 
.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.search-container input {
    padding: 10px;
    width: 300px;
    border: 1px solid #eeeeee;
    border-radius: 5px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.grid-item {
    background-color: #0D1D2F;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
    position: relative;
}

.grid-item:hover {
    transform: translateY(-10px);
}

.cover {
    width: 100%;
    height: 150px;
    object-fit: cover;
    position: relative;
}
.contieneseguidores{
    margin:5px 0px 5px 0px;
    text-align: left;
    margin-left:30px;
    margin-bottom:10px;
    min-height: 35px;
 
}
.contieneseguidores img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-left: -15px;
    display: inline-block;
}
.profile {
    display: flex;
    align-items: center;
    padding: 20px 20px 0px 20px;
    position: relative;
    text-align: left;
}
.profile .descripcion{
    min-height:60px;
}
.profile img.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    position: absolute;
    top: -40px; /* Position the profile image to overlap the cover */
    left: 20px; /* Adjust left to position correctly within the profile section */
}



.profile .info h2 {
 
    font-size: 16px;
    font-weight:bold;
 
    margin:0px;
}

.profile .info p {
    margin: 0;
    font-size: 14px;
 
}

.stats {
    display: flex;
    justify-content: space-around;
    padding: 10px 20px;
    background-color: #ff5c2e;
   
}

.stats div {
    text-align: center;
    color: white;
}

.stats div span {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: white;
}

.actions {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.actions button {
    padding: 5px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.actions .follow {
    border:1px solid #e0e0e0;
    
}
.actions .follow:hover {
   background:#4400c3;
   color:white;            
}

.actions .message {
    border: 1px solid #7c7c7c;
    color: #ffffff;
    background: #646464;
    padding: 7px;
    border-radius: 7px;
}
.actions .message:hover {
    background:#4400c3;
    color:white;
}
.centrar_musicos{
    text-align: center;
    margin: 0 auto;
    max-width: 1800px;
    overflow: hidden;
    padding-top: 100px;
    min-height: 1000px;
}
.izquierda_musicos{
    width:80%;
    margin-left: 50px; 
    float:left;
}
.izquierda_musicos h2{
    color:white;
}
.parte4_musicos{
    width:16%;
    float:right;
  
}
.btn_comentar_video{
 
    padding: 10px;
    border:1px solid rgb(199, 199, 199);
    border-radius: 7px;
    margin-left:10px;
    background: #0031c3;
    color: white;
}
 /*LISTA MUSICOS*/
 
/*VIDEO */

.video-container {
    background-color: #0D1D2F;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

video {
    width: 100%;
    height: 600px;
    border-radius: 8px;
}

.video-details {
    margin-top: 10px;
}

.video-title {
    margin: 10px 0;
    padding: 10px;
}

.video-meta {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.user-name {
    margin-right: auto;
}

.follow-button {
    padding: 5px 20px 5px 20px;
    background-color: #808080;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size:18px;
    padding: 10px;
}

.follow-button:hover {
    background-color: #0056b3;
}

.description-container {
    background: #0f2236;
    color: white;
  
    padding: 20px;
    border-radius: 8px;
 
    margin-bottom: 20px;
}
.form-gray-fields label{
    color:black;
}
.comments-section {
    color: white;
    background-color: #0D1D2F;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.comment-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.comment-box textarea {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    resize: none;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.comments {
    border-top: 1px solid #424242;
    padding-top: 10px;
}

.comment {
    display: flex;
    align-items: start;
    margin-bottom: 10px;
}

.comment-content {
    background-color: #0d223a;
    padding: 10px;
    border-radius: 4px;
    width: 100%;
}

.comment-user-name {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}
.comment2 {
    position: relative;
    padding: 10px;
    background-color: #0d223a;
    border-radius: 5px;
    margin-bottom: 10px;
}

 
.delete-button {
    border-radius: 7px;
    background-color: #bdbdbd;
    color: white;
    padding: 10px!important;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: grey;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 22px;
    text-align: center;
    line-height: 1px;
}

/*VIDEO */
/*LISTA DE VIDEOS*/
.video-list {
    width: 100%;
    max-width: 600px; /* Puedes ajustar esto según tus necesidades */
    margin: auto;
  }
  .video-item {
    border-bottom: 1px solid #363333;
    padding: 16px;
    overflow: hidden;
    background: #001a30;
  }
  .video-item:hover {

    background: #000f1b;
  }
  .video-thumbnail {
    float: left; /* Flota a la izquierda */
    width: 120px; /* Tamaño de la miniatura */
    height: 68px; /* Tamaño de la miniatura */
    background-color: #ddd; /* Color de fondo provisional */
    margin-right: 16px;
    overflow: hidden;
  }
  .video-thumbnail img{
    width: 100%;
  }
  .video-info {
    overflow: hidden; /* Esto evita que el texto se desborde al lado de la miniatura */
 
  }
  .video-info h3 { 
    font-size:14px;
    font-weight:bold;
  }
  .video-info p { 
    font-size:12px;
    font-weight:bold;
    margin:0;
  }
 

#skipButton{
    float: right;
    margin-top: -130px;
    margin-right: 20px;
    position: relative;
    z-index: 2 !important;
    background: white;
    padding: 7px 20px 7px 20px;
    border-radius: 7px;
}
#mainVideo{
    width: 100%;
    height: 500px;
} 
/*LISTA DE VIDEOS*/


 /*VIDEO INDIVIDUAL*/  
 .descripcion_video{
    margin-top:20px;
 } 
 .centereddiv {
    width: 500px;
    height: 300px;
    position: fixed;
    font-size: 25px;
    color: blue;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: green;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.labelcomentarios{
    font-weight:bold;
    font-size:20px;
    margin:10px 0px 10px 0px;
}
.pulgararriba{
    height:25px;
    margin-right:20px;
    cursor:pointer;
}
/* Estilo para el contenedor */
.contenedor_pulgar {
    display: flex;
    align-items: center;

    border-radius: 20px;
    padding: 10px;
    width: fit-content;
    background-color: #f2f2f2;
}

/* Estilo para la línea vertical */
.linea-vertical {
    width: 1px;
    height: 24px;
    background-color: #ccc;
    margin: 0 10px;
}

 


/*BOTON CERRAR DE MENU MOVIL*/
/*  */
input#abrir-cerrar { 
    visibility:hidden;
    position: absolute;
    top: -9999px;
}

.toggle-button {
    display:block;
    width:50px;
    height:50px;

    position:relative;
    cursor: pointer;
    box-sizing: border-box;
}

/* Usamos los :before y :after del label para dibujar las tres rayitas */

.toggle-button:before, .toggle-button:after {
    position:absolute;
    display:block;
    content:" ";
    width: calc(100% / 2);               
    box-sizing: border-box;
    left: calc(100% / 4);
    transition: all 0.2s ease-out;
}

.toggle-button:before {
    top: calc(100% / 4);
    height:calc(100% / 4);
    border-top:1px solid #ffffff;
    border-bottom:1px solid #ffffff;
    background-color: transparent;
}

.toggle-button:after {
    height:1px;
    background-color:#ffffff;
    bottom:calc(100% / 4);
}
/*  */
/* Hacemos clic y el input queda como :checked, así que los centramos y giramos 45º en distinto sentido */
/*  */
input#abrir-cerrar:checked + .toggle-button:before, input#abrir-cerrar:checked + .toggle-button:after {
    top:calc(100% / 2);
    height:1px;
    border-bottom:0;
}

input#abrir-cerrar:checked + .toggle-button:before {
    transform: rotate(45deg); 
}

input#abrir-cerrar:checked + .toggle-button:after {
    transform: rotate(-45deg);
}

/* Posicionamos y mostramos cuando procede los <span> que nos ayudarán con los tooltips */

.abrir, .cerrar { 
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    text-indent: -9999px;
}

.abrir {
    display:block;
}

.cerrar {
    display:none;
}

input#abrir-cerrar:checked + .toggle-button .abrir {
    display:none;
}

input#abrir-cerrar:checked + .toggle-button .cerrar {
    display:block;
}  
.toggle-button {
 
    display: none;
}


  /*VIDEOS*/
  @media (max-width: 768px) {
    #menu {
      width: 50%;
    }
  
 
  
    #toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(4px, 5px);
    }
  
    #toggle.active span:nth-child(2) {
      opacity: 0;
    }
  
    #toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -4px);
    }
  
    #menu.retracted {
      transform: translateX(-80%);
    }
  
    #menu.retracted #toggle.active ~ ul li a {
      opacity: 0;
      visibility: hidden;
    }
  
    #menu.retracted ul li a:before {
      display: none;
    }
  }
  
  /*VER VIDEOS*/
 
  .video-manager {
    width: 100%;
    max-width:1024px;
    margin: 20px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

th, td {
    padding: 16px;
    text-align: left;
    vertical-align: top;
}

th {
    background-color: #f1f1f1;
    font-weight: normal;
}

tr:not(:last-child) td {
    border-bottom: 1px solid #eaeaea;
}

.thumbnail  {
 
    vertical-align: middle;
}
.thumbnail img {
    width: 120px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
 
}

.details {
    width: 40%;
}

.details .title {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #ffffff !important;
}

.details .description {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.details .actions {
    display: flex;
    gap: 8px;
    padding:5px 0px 5px 0px;
    width: 100px;
}

.details .actions a {
    padding: 6px 12px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: black;
    color: white;
    transition: background-color 0.3s;
}

.details .actions a:hover {
    background-color: #005bb5;
}

.date, .comments, .views, .likes {
    text-align: left;
    white-space: nowrap;
    vertical-align: middle;
}

.date {
    font-size: 14px;
    color: #666;
}

.comments, .views, .likes {
    font-size: 16px;
    font-weight: bold;
}
  /*VER VIDEOS*/
  
/*MENU IZQUIERDA*/
.navbar-light{
    border-color: rgba(255, 255, 255, 0.1)!important;
}
.btn-info{
    background: #00688e!important;
}
.verde{
    color:green;
}
.busqueda{
    width: 60%;
    max-width: 400px;
    padding: 8px;
    border: none;
    border-radius: 37px;
    background: #343434;
}
.busqueda:focus {
    outline: none; /* Elimina el borde al enfocar */
    border: 1px solid #6a00c0; /* Mantiene el borde sin cambio al enfocar */
    box-shadow: none; /* Elimina cualquier sombra del borde al enfocar */
}
.center{
    text-align: center;
}
.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}
.recuadro_login{
    margin:0 auto; 
    width:500px;
    color: white;
    border:1px solid #e9e9e9;
    border-radius:7px;
    padding:50px;
    -webkit-box-shadow: 10px 10px 46px -8px rgba(0,0,0,0.62);
    -moz-box-shadow: 10px 10px 46px -8px rgba(0,0,0,0.62);
    box-shadow: 10px 10px 46px -8px rgba(0,0,0,0.62);
}
.content{
    min-height:1000px;
    padding-top:100px;
   
}
.campos {
    width: 100%;
    border: none;
    border-bottom: 1px solid #787878;
    margin: 5px 0px 5px 0px;
    padding: 10px;
}
.botonrequest{
    background:#00a000; 
    font-size:30px;
    font-weight:bold;
    color:white;
    padding: 10px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    
}
.botonrequest:hover{
    background:#007200; 
    color:white;
     
}
.iconomenu{
    height:20px;
}
.avatarmenu{
    height: 29px;
    width: 29px !important;
    padding:1px;
    border:2px solid white;
    border-radius: 50%;
    margin-right: 10px;
}
.barramenus{
    margin: 0px!important;   
    background-color: #0D1D2F;
}
.menu_suscripciones{
    overflow-y: auto;
    max-height: 500px;
}
.labelmenu{
    display:none;
}
 


.cantidad_notificaciones{
    position: relative;
    margin-top: -48px;
    z-index: 23 !important;
    top: 20%;
    margin-left: 15px;
    font-size: 11px;
    color: white;
    background: red;
    padding: 2px;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
 
}
/*MENU SANDWICH ARRIBA*/


.navbar {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}

.navbar-toggler {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 60px;
    height: 30px;
    cursor: pointer;
    border:none!important;
    
}

.navbar-toggler span {
    height: 2px;
    width: 100%;
    background-color: white;
    transition: all 0.3s;
}

.navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/*MENU SANDWICH ARRIBA*/
.navbar-light .navbar-toggler {
 
    border-color: rgb(255 255 255)!important;
}
.cuestionario{
    font-size: 20px;
}
.imgred{
  display: flex; 
  align-items: center;
}
.btndonar{
    border:1px solid #d3d3d3;
    border-radius: 7px;
    padding: 8px;
    background: #006786;
    color:white;
}
.btndonar:hover{
    background:white;
    color: #006786; 
}
.nav-item {
    margin-right: 15px;
}
.nav-item a{
    color: #ffffff !important;
    font-weight: bold;

}
 
.nav-item li a{
    color:#a85a00!important;
    font-weight: bold;
}
.nav-item a:hover{

    color:#774300!important;
}
.nav-link:hover{
   border-radius: 7px;
    background:  #e24800 ;
    color:#ffffff!important;
}
.bienvenido{
    color:white!important;
    font-weight: bold;
}
.menu_seleccionado{
       border-bottom: 3px solid #c0ecff;
}
.carousel{
    margin-top: 80px;
}

/*NOTIFICACIONES*/
.notificaciones table {
    width: 100%;
    border-collapse: collapse;
  }
  
 .notificaciones td {
    border-bottom: 1px solid #c7c7c7;
    background:#fff4a6;    
    padding: 5px;
    text-align: center;
  }
  
  .notificaciones  .profile-picture {
    width: 20%;
  }
  
  .notificaciones  .profile-picture img {
    width: 30px;
    height: 30px;
    border-radius: 25px;
  }
  
  .notificaciones  .username {
    font-weight: bold;
    margin-top: 5px;
  }
  
  .notificaciones  .notification-content {
    width: 60%;
    text-align:left;
  }
  .notificaciones  .notification-fecha {
    width: 20%;
    text-align:left;
  }
    .notificaciones h2{
        color:white;
    }

.publicaciones h1 {
    color: white;
}
  .publicaciones table {
    width: 100%;
    border-collapse: collapse;
  }
.publicaciones th {
    text-align: left;  
    border:1px solid beige;  
}
  .publicaciones td {
    border-bottom: 1px solid #c7c7c7;
    background:#f9fffd;    
    padding: 5px;
    text-align: left;
    vertical-align: middle; /* Centra verticalmente */
  }
  .publicaciones  .publicacion-content {
    width: 40%;
    text-align:left;
  }
  .publicaciones  .publicacion-fecha {
    width: 20%;
    text-align:left;
  }
  
/*NOTIFICACIONES*/

/*SERVICES*/
.nuestros_servicios{
    text-align: center;
    padding: 20px;
}
.contiene_servicios{
    display:flex;
    max-width: 1024px;
    margin:0 auto;

}
 .contiene_servicios .servicio{
     padding-top: 30px;
     padding-bottom: 30px;
     flex:1;
     text-align: center;
     border:1px solid #ffffff;
     font-weight: bold;
     color:green;
    
     
}
 .contiene_servicios .servicio1{
 
     background-image: linear-gradient( 135deg, #ffe9855e 10%, #ffefd175 100%);
     
}
 .contiene_servicios .servicio2{
 
    background-image: linear-gradient( 135deg, #64ff945e 10%, #e9ffcb75 100%);
     
}
.contiene_servicios .servicio .imagen{
    width: 100%;
    padding-bottom: 10px;
    padding-top: 10px;

    overflow: hidden;
}
.contiene_servicios .servicio .titulo{
    width: 100%;
    
    padding-bottom: 10px;
    padding-top: 10px;
    height: 50px;
}
.contiene_servicios .servicio .texto{
    width: 100%;
  
    height: 50px;
}
 /*SLIDER*/
.flechaslider{
    border: 2px solid #ff4500;
    height: 100px!important;
}
.flechaslider_derecha:hover{
    background: #ff6800;
 
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
}
.flechaslider_izquierda:hover{
    background: #ff6800;
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
}
 /*SLIDER*/
/*PERFIL*/
    /* Contenedor del formulario */
.css_perfil form.col-400 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
 
    background-color: #0D1D2F;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* Etiquetas de los campos */
.css_perfil label.col-form-label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

/* Contenedor de las imágenes */
.css_perfil form .m-b-10 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.css_perfil form .m-b-10 img {
  
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* Input de archivos */
.css_perfil input.input-file {
    width: 100%;
    padding: 8px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
}

/* Estilos para los inputs de texto */
.css_perfil input.form-control, textarea.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
    box-sizing: border-box;
}

/* Botones de acción */
.css_perfil .btn {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    margin-right: 10px;
}

.css_perfil .btn-success {
    background-color: #28a745;
    border: none;
    color: white;
}

.css_perfil .btn-danger {
    background-color: #dc3545;
    border: none;
    color: white;
}

/* Espaciado entre los grupos de campos */
.css_perfil .form-group {
    margin-bottom: 15px;
}

/* Personalización de la URL del canal */
.css_perfil form .row div {
    margin-bottom: 5px;
    font-style: italic;
}

/* Alineación de los botones */
.css_perfil .m-t-10, .m-b-10 {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .css_perfil form .m-b-10 img {
        flex: 1 1 calc(50% - 10px); /* Dos imágenes por fila en pantallas más pequeñas */
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .css_perfil form .m-b-10 img {
        flex: 1 1 100%; /* Una imagen por fila en pantallas muy pequeñas */
        max-width: 100%;
    }
}
.profile h2{
    padding-bottom: 0px;
}    
.profile .descripcion{
    display: -webkit-box;
    -webkit-line-clamp: 3;
     line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em; /* 3 lines, assuming line height is 1.5em */
    line-height: 1.5em; /* Adjust according to your line height */
    padding-left:0px;
}
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.photo {
    position: relative;
    overflow: hidden;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo img:hover {
    transform: scale(1.1);
}
/*PERFIL*/
/*ALTA IMAGENES GALERIA*/
#cargando{
    display: none;
}
.contiene_imagen_adicional {
    float: left;
    margin-left: 30px;
    margin-top: 30px;
    text-align: center;
}
 
.barra_eliminar_foto{
    width: 100%;
    height: 30px;
    margin-top: 10px;
    cursor:pointer;
    color:blue;
}
.barra_eliminar_foto:hover{
    color:red;
    font-weight: bold;
}
.imagenes_temporales{
    height: 100px;
    cursor:move;
}
 
.parte1{
    margin-left:11%;
    float:left;    
    width: 20%;
    padding-left:20px;
    padding-right:20px;
    text-align: center;
}
 
.parte1 .grid-item{
    background-color: #0D1D2F;
    max-width: 300px;
    margin:0 auto;
    margin-bottom: 20px;
}
.parte2{
    float:left;    
    width: 40%;
 
  
}
.parte3{
    float:left;
    width:15%; 
    min-height: 1000px;
    padding-left:10px;
 

}
.parte4{
    float:left;
    width:14%; 
    min-height: 1000px;
    padding-left:10px;
 

}
/*VIDEO INDIVIDUAL*/
.izquierda_video{
    width: 70%; 
    float: left;
    min-height: 1000px;
    margin-left: 50px;
  }
.parte4_video{
 
    float: left;
    width: 25%;
 
    margin-top:140px;
    min-height: 1000px;
    padding-left:10px;
    padding-right:10px;
 

}
/*VIDEO INDIVIDUAL*/
/* GALERIA FIN*/

/*SERVICES*/
/*NUESTRA HISTORIA*/
.mensaje_error{
 color:red;
 margin-top:20px;
 margin-bottom:20px;
}
h2{
    padding-top: 30px;
    padding-bottom: 30px;
    color:#000000;
    
}
/*NUESTRA HISTORIA*/
.section{
    padding:30px 20px 30px 20px!important;
}
.centrar{
    margin: 0 auto;
    max-width: 1024px;  
}
.centrar1{
    margin: 0 auto;
    max-width: 1600px;
 
}
.centrar0{
    margin: 0 auto; 
 
}
 
.preguntasfrecuentes .card{
    border-top:0px solid;
}
.collapso{
    padding:5px; 
    margin-top:30px;
    
    width:100%;
    overflow: hidden;
    border: 1px solid #dedede;
    border-bottom: 0px solid #dedede;
    border-radius: 4px;
    padding: 10px;
    background:#2a8f00;
    color:white;
} 
.collapso .pregunta{
    width: 90%;
    overflow:hidden;
  
    float:left;
}
.collapso .abrir_pregunta{
    width: 20px;
    overflow:hidden;
 
    float:right;
}

/*CONTADORES MILESTONE*/

.wrapper {
  margin: 90px auto;
  max-width: 1200px;
}

.cols-wrapper {
  overflow: hidden;
  text-align: center;
}
#milestoness{
    display: flex;
}
#milestoness .col { 
  flex:1;
}

.col {
  text-align: center;
  margin-right: 3.2%;
  margin-bottom: 30px;
}

.milestone-container {
    color: #ffffff;
    
    font-size: 20px;
    line-height: 1.2;
    padding: 20px;
    position: relative;
    font-weight: 700;
    background: linear-gradient(145deg, #000000 0%, #333333 50%, #666666 100%);
    border-radius: 50%; /* Forma circular para la bola del micrófono */
    width: 200px; /* Tamaño de la bola */
    height: 200px; /* Tamaño de la bola */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /* Efecto de sombra para dar profundidad */
    
    margin: 0 auto;
  }
  
  .milestone-container:after {
    content: '';
    position: absolute;
    bottom: -60px; /* Posiciona el tallo del micrófono debajo de la bola */
    left: 50%;
    transform: translateX(-50%);
    width: 20px; /* Ancho del tallo */
    height: 80px; /* Altura del tallo */
    background-color: #333; /* Color del tallo */
    border-radius: 10px; /* Bordes redondeados para el tallo */
  }
  
  .milestone-container:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Ancho de la base del tallo */
    height: 10px; /* Altura de la base del tallo */
    background-color: #666; /* Color de la base */
    border-radius: 5px 5px 0 0; /* Bordes redondeados en la parte superior de la base */
  }
  
  .milestone-container span{
    color:#0dff00;
   
  }  
.milestone h3 {
  font-family: Montserrat;
  color: #ffffff;
  margin-top: 0;
  padding-bottom: 13px;
}
/*TABLA*/
.tabla{
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#a4b357+0,75890c+100;Olive+3D+%233 */
    background: #a4b357; /* Old browsers */
    background: -moz-linear-gradient(top,  #96b105 0%, #75890c 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #bcd83f 0%,#75890c 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #b3c940 0%,#75890c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a4b357', endColorstr='#75890c',GradientType=0 ); /* IE6-9 */

    color:white!important;
    border-radius: 7px;                 


}
.tabla td{
    border: none;
}
.tabla th{
    color:rgb(255, 255, 255);
    font-size: 20px;
}
.tabla .derowspan{
    border-right: 1px solid rgba(255, 255, 255, 0.38) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.38) !important;
    background: white;
    background-image: linear-gradient( 135deg, #ffe9855e 10%, #ffefd175 100%);
    font-weight: bold;
    color:#006d19;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.tabla .borderbottom{
    border-bottom: 1px solid rgba(255, 255, 255, 0.38) !important; 
}
.tabla .borderright{
    font-weight: bold;
    border-right: 1px solid rgba(255, 255, 255, 0.38) !important; 
}
.tabla2{
   display: table-cell!important;
   vertical-align: middle!important;
}
#nuestra_historia{
    opacity: 0.1;
}


/*GALERIA*/
/*AMBIENTE EXQUISITO*/
#contenidoambienteexquisito{
	
	padding-top:10px;
	text-align:center;
	background:white;
	color:#e67300;
	font-size:20px;
}
.img1{	
	width:5%;
	height:5%;	
	border-radius:10px;
	transition-property: width,height;
    transition-duration: 0.8s;
    transition-timing-function: linear;
    transition-delay: 0.2s;	
}
.img1:hover{
	opacity:0.8;    
}
.contenedor_contieneimg1{
	width:100%;		
	display: -webkit-flex;

   display: flex;
 
}
.contieneimg1{	

    
 flex:1;
   justify-content: center;
   align-items: center;	
   
  
}
.creditos{
    margin-right:10px;
    font-weight: bold;
    color:yellow;
}
.fondoblanco{
    background: white;
    border-radius:7px;

    cursor:pointer;
}
.fondoblanco:hover{
    background: rgb(0, 0, 0);    
}
/*PUBLICACIONES*/

.publicar{
    text-align: center;
    padding: 30px;
    background-color: #0D1D2F;
    border-radius: 7px;
     
}
.publicar .escribir_publicacion{
    width: 100%;
    max-width: 800px;
    margin:0 auto;
    overflow: hidden;
    background-color: #0D1D2F;

}
.publicar .text_publicar{
    width: 100%;
    border:1px solid rgb(255, 255, 255);
    border-radius: 7px;
    padding: 10px;
    background:rgb(243, 243, 243);;
}
.publicar .select_categoria{
    width: 100%;
    border:1px solid rgb(255, 255, 255);
    border-radius: 7px;
    padding: 10px;
    background:rgb(243, 243, 243);;
}
.publicar .select_album{
    width: 100%;
    border:1px solid rgb(255, 255, 255);
    border-radius: 7px;
    padding: 10px;
    background:rgb(243, 243, 243);;
}
.publicar .btn_publicar{
 
    padding: 10px;
    border:1px solid rgb(112, 112, 112);
    border-radius: 7px;
    background: #424242;
    color: white;
}
.publicar .btn_publicar:hover{
 
    background: rgb(101, 0, 121);
 
}
.post {
    max-width: 800px;
    width: 100%;
    margin: 20px auto;
    
    border-radius: 7px;
 
  }
  .post-principal{
    background-color: #0D1D2F;
    padding:15px;
    border-radius: 7px;
  }
  .post-principal .fotoevento{
    width:100%;
  }
  .crearpost_titulo{
    font-weight: bold;
    color: #d9d9d9;
  }
  .post-header {
    display: flex;
    align-items: center;
  }
  .post-header .contiene_borrarpublicacion{
    width:100%;
  }
  .post-principal {
    background-color: #0D1D2F;
  }
 
  /* CSS para la animación de desvanecimiento */
    .fade-out {
        opacity: 1;
        transition: opacity 0.5s ease-out;
    }

    .fade-out.hidden {
         opacity: 0;
    }
  .post-header .btnaccion{
    cursor: pointer;
    float: right;
    margin-right: 12px;
    background: #282525;
    padding: 2px 10px 2px 10px;
  }
   .post-header .btnaccion:hover{
    background: #afafaf;
    color:white;
  }
  .avatar_publicacion {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  
  .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .username {
    font-weight: bold;
    width: 100%;
    color:white;
  }
  
  .post-text {
    margin-top: 10px;
    font-size: 14px;
    color: rgb(217 217 217);
  }
  #text_presupuesto{
 
    padding:5px;
    border-radius:7px; 
    border: 1px solid rgb(255, 255, 255);  
    background: rgb(243, 243, 243);
  }
  .muestra_presupuesto{
    text-align:left;
    margin-bottom:10px;
  }
 
  .verpublicacioncompleta{
 
    display:block;
    background: #303030;
    border:none;
    border-radius: 7px;
    color:white;
    padding:5px;
    width: 100px;
    font-size:14px;
    text-align: center;
  

  }
.megusta{
    color:rgb(150, 150, 150);
    text-decoration: none;
    margin-left: 10px;
}
.cuadro_interaccion{
 
    padding:20px;
    display: flex;
}
.interaccion_dividida{
 
    flex:1;
}
.interaccion{
    color:rgb(255, 255, 255);
    text-decoration:none;
    border-right: 1px solid rgb(84 83 83);
    padding-left:10px;
    padding-right:10px;
    height: 25px !important; 
    display: inline-flex;
}
.interaccion_valor{
    color:black;
    text-decoration:none;     
    padding-left:10px;
    height: 25px !important; 
    display: inline-flex;
}

.cuadro_interaccion2{
 
    padding-top:20px;
    padding-bottom:20px;
    display: flex;
}
.interaccion_dividida2{
    
    text-align: center;
    flex: 1;
    padding-left: 6px;
    padding-right: 6px;
 
}
  .comments {
    margin-top: 10px;
  }
  
  .comments textarea {
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
    resize: none;
    margin-top: 6px;
    margin-bottom: 16px;
  }
  
  .comments button {
    border-radius: 7px;
    background-color: #013b74;
    color: white;
    padding: 6px 14px;
    border: none;
    cursor: pointer;
  }
  .contiene_comentarios{
    background-color: #0D1D2F;
  }
  .comentarios {
    
    margin-top: 5px;
    padding: 10px;
    border-top: 1px solid rgb(66 66 66);
    border-radius: 7px;
 
  }
  .comentarios .avatar_nombre{
    width:100%;
  }
  .comentarios .comment{
    width: 100%;
  }
  .comentarios .avatar,.comentarios .usuario{
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
    color: black;
  }
  .comentarios .borrarcomentario{
    cursor: pointer;
    float: right;
    margin-right: 12px;
    color: white;
    background: #282525;
    padding: 2px 10px 2px 10px;
  }
  .comentarios .borrarcomentario:hover{
    background: #afafaf;
    color:white;
  }
  .comentarios .comentario{
    margin-left:10px;
    font-size: 14px;
    padding: 5px 0px 5px 0px;     
    color: rgb(211 211 211);
  }
  .btncomentar{
    display:block;
    background: #303030;
    border:none;
    border-radius: 7px;
    color:white;
    padding:5px;
    width: 100px;
    font-size:14px;
    text-align: center;
    margin-top:20px;
  }
.publicacion_individual{
    padding-top:30px;
    padding-bottom:30px;
    color: white;
}
.fotoevento_invidual{
    width:100%;
}
.contienecomentarios{
    padding-top:50px;
}

/*SLIDE SHOW*/
#slideshow {
    margin: 0 auto;
    padding-top: 50px;
    margin-bottom:100px;
    height: 400px;
    width: 100%;
   
    box-sizing: border-box;
}

.slideshow-title {
    font-family: 'Allerta Stencil';
    font-size: 62px;
    color: #fff;
    margin: 0 auto;
    text-align: center;
    margin-top: 25%;
    letter-spacing: 3px;
    font-weight: 300;
}

.sub-heading {
    padding-top: 50px;
    font-size: 18px;
} .sub-heading-two {
    font-size: 15px;
} .sub-heading-three {
    font-size: 13px;
} .sub-heading-four {
    font-size: 11px;
} .sub-heading-five {
    font-size: 9px;
} .sub-heading-six {
    font-size: 7px;
} .sub-heading-seven {
    font-size: 5px;
} .sub-heading-eight {
    font-size: 3px;
} .sub-heading-nine {
    font-size: 1px;
}

.entire-content {
    margin: auto;
    width: 190px;
    perspective: 1000px;
    position: relative;
    padding-top: 80px;
}

.content-carrousel {
    width: 100%;
    position: absolute;
    float: right;
    animation: rotar 15s infinite linear;
    transform-style: preserve-3d;
}

.content-carrousel:hover {
    animation-play-state: paused;
    cursor: pointer;
}

.content-carrousel figure {
    width: 100%;
    height: 120px;
    border: 1px solid #3b444b;
    overflow: hidden;
    position: absolute;
}

.content-carrousel figure:nth-child(1) {
    transform: rotateY(0deg) translateZ(300px); 
} .content-carrousel figure:nth-child(2) {
    transform: rotateY(40deg) translateZ(300px); 
} .content-carrousel figure:nth-child(3) {
    transform: rotateY(80deg) translateZ(300px); 
} .content-carrousel figure:nth-child(4) {
    transform: rotateY(120deg) translateZ(300px); 
} .content-carrousel figure:nth-child(5) {
    transform: rotateY(160deg) translateZ(300px); 
} .content-carrousel figure:nth-child(6) {
    transform: rotateY(200deg) translateZ(300px); 
} .content-carrousel figure:nth-child(7) {
    transform: rotateY(240deg) translateZ(300px); 
} .content-carrousel figure:nth-child(8) {
    transform: rotateY(280deg) translateZ(300px); 
} .content-carrousel figure:nth-child(9) {
    transform: rotateY(320deg) translateZ(300px); 
} .content-carrousel figure:nth-child(10) {
    transform: rotateY(360deg) translateZ(300px); 
} 

.shadow {
    position: absolute;
    box-shadow: 0px 0px 20px 0px #000;
    border-radius: 1px;
}

.content-carrousel img {
    image-rendering: auto;
    transition: all 300ms;
    width: 100%;
    height: 100%;
}

.content-carrousel img:hover {
    transform: scale(1.2);
    transition: all 300ms;
}

@keyframes rotar {
    from {
        transform: rotateY(0deg);
    } to {
        transform: rotateY(360deg);
    }
}

/*SLIDE SHOW*/
/*GALERIA*/


/*PIE PAGINA*/
.piepagina{
    text-align: center;
    height: 100px; 
    color: white;
    background: #000000;

}
 .piepagina a{
     color: white;
}
.piepagina a:hover {
      color: #62ff00;
}
/*PIE PAGINA*/
/*CANAL MUSICO*/
.canalmusico img{
 
    width: 300px; /* Tamaño máximo del contenedor */
    height: 300px; /* Tamaño máximo del contenedor */
    object-fit: cover; /* Hace que la imagen se ajuste como un "cover" */
    object-position: center; /* Centra la imagen */
    display: block; /* Asegura que la imagen se comporte como un bloque */
}
.contiene_descripcion {
    padding-bottom: 100px;
    color: rgb(161, 161, 161);
    text-align: center;
}
.canal_portada{
    margin-bottom:50px;
}
.contiene_informacion{
    width: 100%;
    overflow:hidden;
}
.canal_portada img{
 
    width: 100%;
    height: 350px;
    object-fit: cover;
    position: relative;
}
.canal_foto{
    float:left;
    width:150px;
 
}
.canal_foto img{
    border-radius:50%;
    width:150px;
    height: 150px;
}
.canal_informacion{
    float:left;
    text-align:left;
    max-width:500px;
    width: 100%;
  
    padding:10px;
}
.canal_informacion h2{
    font-weight:bold;
    font-size:20px;
    padding:3px;
}
.canal_informacion p{
    color:gray;
    font-size:16px;
}
 .tabs .tablink{
    background: black!important;
    color:white;
}
.centrar_canal{
    width:100%;    
    text-align: center;
    margin: 0 auto;
    max-width: 1300px;
    overflow: hidden;
    padding-top: 20px;
   padding-left: 50px;
}
 .suscribirse_canal{
    padding:7px;
    border-radius:13px;
    border:none;
    background:#3c3c3c;
    font-size:14px;
    font-weight:bold;
    width:100px;
    color:white;
 }
 .suscribirse_canal:hover{
    background:#252525;
 }

 /* EVENTOS*/
 .tabs{
    border-bottom: 1px solid #414141;
    text-align: center;
 }
.eventos{
    margin-left: 50px;
}
.grid_eventos{
    color: #d9d9d9!important;
}
.event-item {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-photo {
    cursor:pointer;
    width: 200px;
    
    border-radius: 8px;
    object-fit: cover;
    margin-right: 16px;
}

.event-details {
    flex: 1;
}

.event-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 8px;
    text-align:left;
    color: white;
}

.event-description {
    margin-bottom: 8px;
    color: #555;
    text-align:left;
}

.event-date {
    color: #999;
    text-align:left;
}


/*CANAL MUSICO*/
/*TESTIMONIAL*/
 
 

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #333;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;    
    -ms-transition: all .3s ease-in-out;    
    -moz-transition: all .3s ease-in-out;    
    -o-transition: all .3s ease-in-out;    
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
		cursor: pointer;
}

.testim .arrow:hover {
    color: green;
}
    

.testim .arrow.left {
    left: 70px;
}

.testim .arrow.right {
    right: 70px;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
		height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid green;
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;    
    -ms-transition: all .5s ease-in-out;    
    -moz-transition: all .5s ease-in-out;    
    -o-transition: all .5s ease-in-out;    
    transition: all .5s ease-in-out;
		position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: green;
    border-color: green;
}

.testim .dots .dot.active {
    -webkit-animation: testim-scale .5s ease-in-out forwards;   
    -moz-animation: testim-scale .5s ease-in-out forwards;   
    -ms-animation: testim-scale .5s ease-in-out forwards;   
    -o-animation: testim-scale .5s ease-in-out forwards;   
    animation: testim-scale .5s ease-in-out forwards;   
}
    
.testim .cont {
    position: relative;
		overflow: hidden;
}

.testim .cont > div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont > div.inactive {
    opacity: 1;
}
    

.testim .cont > div.active {
    position: relative;
    opacity: 1;
}
    
.testim .titulo{
    font-weight: bold;
}
.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: green;
    font-size: 20px;
    font-weight: bold;
    margin: 18px 0;
}

.testim .cont div p {
    font-size: 1.15em;
    color: #003afd;
    width: 70%;
    margin: auto;
}

.testim .cont div.active .img img {
    -webkit-animation: testim-show .5s ease-in-out forwards;            
    -moz-animation: testim-show .5s ease-in-out forwards;            
    -ms-animation: testim-show .5s ease-in-out forwards;            
    -o-animation: testim-show .5s ease-in-out forwards;            
    animation: testim-show .5s ease-in-out forwards;            
}

.testim .cont div.active h2 {
    -webkit-animation: testim-content-in .4s ease-in-out forwards;    
    -moz-animation: testim-content-in .4s ease-in-out forwards;    
    -ms-animation: testim-content-in .4s ease-in-out forwards;    
    -o-animation: testim-content-in .4s ease-in-out forwards;    
    animation: testim-content-in .4s ease-in-out forwards;    
}

.testim .cont div.active p {
    -webkit-animation: testim-content-in .5s ease-in-out forwards;    
    -moz-animation: testim-content-in .5s ease-in-out forwards;    
    -ms-animation: testim-content-in .5s ease-in-out forwards;    
    -o-animation: testim-content-in .5s ease-in-out forwards;    
    animation: testim-content-in .5s ease-in-out forwards;    
}

.testim .cont div.inactive .img img {
    -webkit-animation: testim-hide .5s ease-in-out forwards;            
    -moz-animation: testim-hide .5s ease-in-out forwards;            
    -ms-animation: testim-hide .5s ease-in-out forwards;            
    -o-animation: testim-hide .5s ease-in-out forwards;            
    animation: testim-hide .5s ease-in-out forwards;            
}

.testim .cont div.inactive h2 {
    -webkit-animation: testim-content-out .4s ease-in-out forwards;        
    -moz-animation: testim-content-out .4s ease-in-out forwards;        
    -ms-animation: testim-content-out .4s ease-in-out forwards;        
    -o-animation: testim-content-out .4s ease-in-out forwards;        
    animation: testim-content-out .4s ease-in-out forwards;        
}

.testim .cont div.inactive p {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;    
    -moz-animation: testim-content-out .5s ease-in-out forwards;    
    -ms-animation: testim-content-out .5s ease-in-out forwards;    
    -o-animation: testim-content-out .5s ease-in-out forwards;    
    animation: testim-content-out .5s ease-in-out forwards;    
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -moz-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -ms-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -o-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);        
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -moz-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -ms-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        transform: scale(1);       
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        transform: scale(0);
    }
}

@media all and (max-width: 300px) {
	body {
		font-size: 14px;
	}
}

@media all and (max-width: 500px) {
	.testim .arrow {
		font-size: 1.5em;
	}
	
	.testim .cont div p {
		line-height: 25px;
	}

}
/*TESTIMONIAL*/
@media screen and (max-width: 1818px) {
    #fecha_inicial,#fecha_final{
        width: 150px;
    }

}
/*TESTIMONIAL*/
@media screen and (max-width: 1386px) {
    .parte1 {
       width: 100%;
       margin-left:0%;
    }
    .parte1 .grid-item {
   
        max-width: 250px;  
        margin-left: 20px;
        display: inline-block;
    }
    .parte2 {
        float:left;
        width: 50%;
        margin-left:15%;
    }
 

}
@media screen and (max-width: 1200px) {
    .busqueda{
        width: 30%;
    }
}
/*TABLA*/
@media screen and (max-width: 1070px) {
    .parte2 {
        width: 65%;
    }
    .parte3{
        width: 20%;
    }
    .parte4{
        width: 80%;
       
        margin-left: 15%;
    }
}
@media screen and (max-width: 1000px) {
    .parte2 {
        width: 80%;
    }
    .parte3{
        margin-left:14%;
        width: 86%;
    }
    .busqueda{
        width: 60%;
    }
  .cols-4 .col {
    width: 48.4%;
  }
  .cols-4 .col:nth-of-type(2n) {
    clear: right;
    margin-right: 0;
  }
    .nuestra_historia_col{
     
      flex: none!important;
    }
    .quienes_somos_opacity {
     padding-top: 0px;
    }
    .quienes_somos_interno{
        padding: 30px;
    }
    .nuestros_servicios_interno{
        padding: 30px;
    }
    .nuestra_mision_vision{
    
        flex: none!important;
    }
    
    .quienes_somos{ 
        background-position: center!important;
    }    
    .texto_nuestros_servicios{ 
        background-position: center!important;
        background-size: cover;
    }
    .nav-item {
 
        height: 40px;
    }
    .izquierda_video{
        width: 90%;
    }
    .video{
        width: 90%;
    }
    .parte4_video {
     
        width: 90%;
    }
    .video-list {  
        max-width: 800px;
    }

}
@media screen and (max-width: 990px) {
    .contiene_videos_top_horizontal {
        margin-top: 100px !important;
        margin-left: 30px !important;
        display: block;
    }
    .navbar-light .navbar-nav .nav-link {
     
        padding-left: 20px;
    }
    .labelmenu{
        margin-left:40px;
        display:inline-block;
    }
    .labelmenu2{
        margin-left:40px;
        display:inline-block;
    }
    .avatarmenu{
        height: 20px!important;
        width: 20px!important;
        margin-right: 0px;
    }
    .labelavatar{
        margin-left: 34px;
        
    }
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .centrar {
    
        margin-left: 40px;
    }
    .contenedor_anuncio {
 
        margin-left: 0px;
    }
    .parte4_video {
        margin-top:20px;
        margin-left: 35px;
    }
    .seccion h2 {
        font-size: 35px;
        line-height: 45px;
    }
    .comment-box textarea {
     
        font-size: 10px;
    }
    .izquierda_videos {
  
        min-height: 0px;
    }
    .footer {
        flex-direction: column;
        align-items: center;
    }

    .footer .column {
        max-width: 100%;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
    .event-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-photo {
        width: 100px;
        height: auto;
        margin-bottom: 16px;
    }
    #mainVideo{       
        height: 400px;
    } 
    .comunidad .izquierda,.comunidad  .derecha{
        width: 100%;
        text-align:center;
    }
    .carousel-inner2 {
         display: block;
    }
    .post-header {
        display: block;
        text-align: center;
    }
    .capa{
        margin-left: 19px;
    }
    .game-section {
        padding: 40px 5px 5px 50px!important;
    }
    .seccion_generos{
       padding-left:40px;
    }
    .izquierda_musicos{
        float:none;
        width: 100%;
        margin-left: 20px;
    }
    .parte4_musicos {
        float:none;
        width: 100%;
    }
    .search-container input {
     
        width: 250px;
    }
}
@media screen and (max-width: 670px) {
    .eventos{
        margin-left: 0px;
    }
    .barra-contactos-horizontal .chat-header {  
        padding-left: 60px !important;
    }
    .cuadro_interaccion2 {
     
        display: block;
    }
    .interaccion_dividida2{
        width: 100%;
    }
    #fecha_inicial,#fecha_final,#fileInput,.btn_publicar,.imgicono3{
        margin-top:10px;
        width: 100%;
        width: auto;
        display: flex;    ;
        flex-direction: column;
    }
    #mainVideo{       
        height: 350px;
    } 
    .cuadro_interaccion {
        padding: 0px;
    }
    .imegusta{
        font-size: 10px;
    }
    .interaccion{
        font-size: 10px;
        display: inline;
    }
    .megusta {
     
        margin-left: 13px;
    }

}
@media screen and (max-width: 520px) {
  .col {
    clear: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
    .nuestra_historia .col{
        width: 100%;
        flex: none;   
        margin-bottom: 0px;
    }
    .quienes_somos_opacity{
        padding: 20px;
    }
    .nuestros_servicios_opacity{
        padding: 20px;
    }
    .misionyvision .col{
         width: 100%;
        flex: none;
    }
    .fondoblanco{     
        padding-left:7px!important;
        margin-top:10px;        
    }
    .izquierda{        
        width:100%;
    }
    .derecha{
        width:100%;
    }
    .busqueda{
        width: 50%;
    }
    #mainVideo{       
        height: 250px;
    } 
    .video-meta {
        display: block;
        
    }
    .contienepultarysuscribirse{
        margin-top: 10px;
         
    }
    .portada h1 {
        font-size: 40px;
    }
    #milestoness {
        display: block;
    }
    #milestoness .col {
        margin-bottom: 100px;
    }
}
@media screen and (max-width: 430px) {
    .busqueda{
        width: 40%;
    }
    #mainVideo{       
        height: 250px;
    } 
}
@media screen and (max-width: 360px) {
    .busqueda{
        width: 30%;
    }
    #mainVideo{       
        height: 250px;
    } 
}
/*CONTADORES MILESTONE*/
/*FOOTER*/

.footer {
    background-color: #0D1D2F;
    padding: 60px 40px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
}

.footer .column {
    max-width: 300px;
    margin: 20px;
}

.footer h3 {
    margin-bottom: 20px;
    font-size: 1.5em;
 
    display: inline-block;
}

.footer h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #fff;
    bottom: -5px;
    left: 0;
}

.footer p, .footer a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s;
}

.footer a:hover {
    color: #fff;
}

.footer p {
    font-size: 0.9em;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    background-color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #0D1D2F;
    font-size: 1.2em;
    transition: transform 0.3s, background-color 0.3s;
}

.social-icons a:hover {
    background-color: #0B1828;
    transform: scale(1.2);
}

.footer-bottom {
    background-color: #001a30;
    text-align: center;
    padding: 50px; 
    font-size: 0.9em;
    color: #aaa;
}

.footer-bottom a {
    margin: 0 15px;
    color: #ccc;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Decorative effects */
.footer::before, .footer::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.footer::before {
    top: -50px;
    right: -50px;
}

.footer::after {
    bottom: -50px;
    left: -50px;
}

/* Responsive adjustments */
 
/*FOOTER*/