
/*NAVBAR*/
header{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cajaVacia{
    width: 50px;
    height: 50px;
    margin: 10px;

    @media(width <500px){
        display: none;
    }
}

.logolinkeado {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    text-align: center;
}

.logoFightRadar {
    margin: 0px 0px;
}
.logoFightRadar img{
    width: auto;
    height: 100px;
}

.botonMenuLateral{
    margin: 10px;
    border: none;
    color: black;
}
.navLateral{
    background-color: white ;
    border-radius: 20px 0 0 20px;
}
.navLateralTitle{
    background-color: #C0392B ;
    border-radius: 20px 0 0 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.navLateralBody .navLateralBodyul {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.navLateral.show .navLateralBodyul {
    transform: translateX(0);
}

.containerSesion{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.icon-wrench:before {
    content: "\e992";
}
.icon-cancel-circle:before {
    content: "\ea0e";
  }



/*INDEX*/ 
.boxBody{
    background: linear-gradient(-45deg,#020041,#020041,#000000,#2a0000,#000000,#020041);

}
.ContainerCarouselDeportes{
    position: relative;
    height:500px;
    font-size: 14px;
    text-align: center;
    margin: auto;
    
    @media (width < 1400px){
        height: 470px;
    }
    @media (width < 1400px){
        height: 430px;
    }
    @media (width < 1100px){
        height: 360px;
        font-size: 12px;
    }
    @media (width < 950px){
        height: 310px;
    }
    @media (width < 800px){
        height: 260px;
        font-size: 11px;
    }
    @media (width < 500px){
        height: 160px;
        font-size: 6px;
    }
}
#carouselExampleAutoplaying button{
    height: 500px;
    width: 7%;

    @media (width < 1400px){
        height: 470px;
    }
    @media (width < 1400px){
        height: 430px;
    }
    @media (width < 1100px){
        height: 360px;
    }@media (width < 950px){
        height: 310px;
    }@media (width < 800px){
        height: 260px;
    }@media (width < 500px){
        height: 160px;
    }
}
.carousel-inner{
    width: 100%;
    height: 500px;
}
.Slogan1{
    position: absolute;
    height: auto;
    font-size: 3.5em;
    width: 100%;
    text-align: center;
    background-color: transparent;
    color: white;
    font-weight: bolder;
    top: 70%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);

    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;    
}
.ContainerSportCard{ 
    width: 95%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    column-gap: 6%;
    row-gap: 20px;
    margin: 50px auto;
    padding: 20px;
    font-size: 14px;
}
.SportCard {
    width: 100%;
    height: auto;
    flex-direction: column;
    background-color: #191919;
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.3);
    opacity: 0; /* Oculta los elementos antes de la animación */
    transform: translateY(50px); /* Posición inicial fuera de la vista */
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.slide-up {
    animation: slideUp 0.5s forwards; /* Aplica la animación */
}

.imgSportCard{
    display: flex;
    justify-content: center;
    text-align: center;
    background-color: blue;
    width: 100%;
    height: 280px;
}
.imgSportCard img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.containerTextSportCard{
    text-align: center;
    position: relative;
    padding: 20px 10px 5px 10px;
    color: white;

    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings:"wdth" 100;
}
.TextSportCard_title{
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size: 1.5em;
    /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);*/    
    background-color: #BDC3C7;
    color: #C0392B ;
    padding: 5px 10px;
    border-radius: 0px;

    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}


.Slogan2{
    height: 200px;
    background-color: white;
    text-align: center;
    line-height: 200px;
    font-size: 20px;

    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.containerAnimation{
    position: relative;
    width: 100%;
    height: 500px;
    margin: auto;
    background-color: #BDC3C7;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center; 
}
/* From Uiverse.io by mrhyddenn */ 
.loader {
    position: relative;
    width: 150px;
    height: 150px;
    background: transparent;
    border-radius: 50%;
    box-shadow: 25px 25px 75px rgba(0,0,0,0.55);
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scale: 2;
}
  
.loader::before {
    content: '';
    position: absolute;
    inset: 20px;
    background: transparent;
    border: 1px dashed#444;
    border-radius: 50%;
    box-shadow: inset -5px -5px 25px rgba(0,0,0,0.25),
    inset 5px 5px 35px rgba(0,0,0,0.25);
}
  
.loader::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px dashed#444;
    box-shadow: inset -5px -5px 25px rgba(0,0,0,0.25),
    inset 5px 5px 35px rgba(0,0,0,0.25);
}
  
.loader span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 100%;
    background: transparent;
    transform-origin: top left;
    animation: radar81 2s linear infinite;
    border-top: 1px dashed #fff;
}
  
.loader span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #C0392B;
    transform-origin: top left;
    transform: rotate(-55deg);
    filter: blur(30px) drop-shadow(20px 20px 20px #C0392B);
}
  
@keyframes radar81 {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
}
.radarText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 1; /* Asegura que el texto esté encima de otros elementos */
    padding: 0px;
    font-size: 25px;
    font-weight: bolder;
}

.containerAnimation a{
    text-decoration: none;
}






footer{
    height: auto;
    background-color: black;
    padding: 10px;
    font-size: 14px;
}
.footer1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 200px;

    @media (width <500px){
        display: block;        
        height: auto;
    }
}
.containerAbout{
    display: flex;
    font-size: 0.8em;

    @media (width <= 500px) {
        justify-content: center;     
    }
}    
.footerFight{
    height: auto;
    width: auto;
    margin: 10px 30px;
    text-align: center;
    justify-content: flex-start;
}
.footerFight a{
    color:#f0f0f0;
    text-decoration: none;    
}
.footerFight div{
    margin: 7px 0px;  
}
.containerLogoFooter{
    margin: 20px;
    width: auto;


    @media (width <= 500px) {
    text-align: center;        
    }
}
.containerLogoFooter img{
    width: 200px;    
}
.footer2{
    width: 100%;
    color: white;
    font-size: 10px;
    text-align: center;
}

/*dojo.php*/
/*dojo.php*/
/*dojo.php*/
.boxdojos{
    background: linear-gradient(-45deg,#020041,#020041,#000000,#2a0000,#000000,#020041);
}
.containerformulariobusqueda{
    width: 100%;
    height: auto;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    @media (width < 450px) {
        display: block;
        height: auto;
    }
}
.formulariobusqueda{
    display: flex;
    flex-direction: column;
    width: 40%;
    text-align: left;
    
    @media(width <= 500px){
        width: auto;
    }
}
.selectDojo{
    margin: 10px 0px;
    height: 30px;
    width: 50%;
    border: 1px solid #b7b7b7;
    background-color: #BDC3C7;
    border-radius: 7px 7px 0px 0px;    

    @media(width <= 500px){
        width: 100%;
    }
}
.contenderSearch{
    width: 100%;
    border: 1px solid #b7b7b7;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px;
    height: 40px;
}
.Busqueda{
    width: 100%;
    height: 80%;
    border:none;
}
.Busqueda:focus {
    outline: none;
    box-shadow: none;
}
.botonSearch{
    display: flex;
    align-items: center;
}
.icon-search:before {
    content: "\e901";
    font-size: 20px;
    padding: 0px;
}

/* From Uiverse.io by KhaledMatalkah */ 
.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    color: white;
    transition: color 0.3s;
    margin: 7px 0px;
    @media (width<450) {
        margin: 5px 0px;
    }
}
  
.custom-checkbox input[type="checkbox"] {
    display: none;
}
  
.custom-checkbox .checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #333;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
    transform-style: preserve-3d;
}
  
.custom-checkbox .checkmark::before {
    content: "\2713";
    font-size: 16px;
    color: transparent;
    transition: color 0.3s, transform 0.3s;
}
  
.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #333;
    border-color: #333;
    transform: scale(1.1) rotateZ(360deg) rotateY(360deg);
}
  
.custom-checkbox input[type="checkbox"]:checked + .checkmark::before {
    color: #fff;
}
  
  .custom-checkbox:hover {
    color: #666;
  }
  
  .custom-checkbox:hover .checkmark {
    border-color: #666;
    background-color: #f0f0f0;
    transform: scale(1.05);
  }
  
  .custom-checkbox input[type="checkbox"]:focus + .checkmark {
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
    outline: none;
  }
  
  .custom-checkbox .checkmark,
  .custom-checkbox input[type="checkbox"]:checked + .checkmark {
    transition: background-color 1.3s, border-color 1.3s, color 1.3s, transform 0.3s;
  }
    

.botonAll {
    width: auto;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border: 2px solid white;
    border-radius: 10px;
    color: #2980B9;
    background: transparent;
    cursor: pointer;
    transition: ease-out 0.5s;
    box-shadow: inset 0 0 0 0 #2980B9;

    @media (width < 450px) {
        padding: 5px;
        
        border-radius: 5px;
        background-color: #ddd;
        border: none;
        box-shadow: 
            inset 3px 3px 3px #999,
            inset -3px -3px 3px #fff;
        font-weight: bolder;
    }
}
.botonAll:hover {
    color: white;
    box-shadow: inset 0 -100px 0 0 #2980B9;
}
.botonAll:active {
    transform: scale(0.9);
  }
.containerdojo{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: 650px;
    width: 98%;
    margin: auto;
        
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}
.containerdojo::-webkit-scrollbar{
    width: 15px;
}
.containerdojo::-webkit-scrollbar-track {
    background: #b7b7b7; /* Color de fondo del scrollbar */
    border-radius: 10px; /* Bordes redondeados */
}
.containerdojo::-webkit-scrollbar-thumb {
    background-color: #f6b948 ; /* Color del "thumb" */
    border-radius: 10px; /* Bordes redondeados */
}
.containerdojo::-webkit-scrollbar-thumb:hover {
    background-color: #C0392B ; /* Color del "thumb" al pasar el mouse */
}
.carddojo{
    max-height: 370px;
    display: flex;
    margin: 10px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(14, 14, 14, 0.2);
    background-color: rgb(189, 195, 199, 0.3);

    @media (width <450px){
        max-height:fit-content;
        height: auto;       
        display: block;
        margin: 5px;
        border-radius: 15px;
        width: 95%;
        padding: 10px 0px;
    }
}
.cardDojocontainerimg{
    display: flex;
    object-fit: contain;
    align-items: center;

    @media (width <450px){
        justify-content: center;
        margin: 5px;
    }
}
.cardDojoImg{
    width: 300px;
    aspect-ratio: 1/1;
    height: auto;
    align-items: center;

    @media(width<=500px){
        width: 250px;
        border-radius: 10px;
    }
}
.carddojoinfo{
    width: 15rem;
    margin: 0px;
    background-color:transparent; /* #92000A guinda;*/
    color: white;

    @media(width<500px){
        width: 100%;
    }
}
.carddojoinfoTitle{
    font-weight: bolder;
    padding: 10px 5px 0px 10px;
}
.carddojoinfoBody{
    padding: 0px 5px 0px 10px;
}
.containerDisciplinas{
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0px 5px 0px 10px;
    margin: 5px 0px;

    @media(width<500px){
        width: 100%;
    }
}
.disciplinaBox{
    margin: 1px;
    padding: 5px;
    border-radius: 5px;
    width: auto;
    background-color: #C0392B; /*#f6b948 naranja;*/
    color: white;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Sombra */
    display: flex; /* Usar flexbox para alinear iconos */
    align-items: center; /* Centrar verticalmente */
    font-weight: bold;
}
.containerRedes{
    display: flex;
    font-size: 25px;
    display: flex;
    justify-content: space-around;
}

.containerSuscripcion{
    width: 100%;
}
.subscriptionTag{
    color: yellow;
    margin: 0px 0px 0px 5%;
    width: 15ch;
    text-wrap: nowrap;
    overflow: hidden;
    animation: typing 1s steps(20) infinite alternate;
}
@keyframes typing{
    from{
        width: 0ch;
    }
}
.icon-whatsapp:before {
    content: "\ea94";
    padding: 0px 5px 0px 5px;
    font-size: 24px;
    display: inline-block;
    background: #25D366;
    -webkit-background-clip: text; /* Para que el fondo se aplique al texto */
    -webkit-text-fill-color: transparent; /* Hace que el color del texto sea transparente */
}
.icon-facebook2:before {
    content: "\ea92";
    padding: 0px 5px 0px 5px;
    font-size: 24px;
    display: inline-block;
    background:#4267B2 ;
    -webkit-background-clip: text; /* Para que el fondo se aplique al texto */
    -webkit-text-fill-color: transparent; /* Hace que el color del texto sea transparente */
}
.icon-instagram:before {
    content: "\ea93";
    padding: 0px 5px 0px 5px;
    font-size: 24px;
    display: inline-block;
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #D62976);
    -webkit-background-clip: text; /* Para que el fondo se aplique al texto */
    -webkit-text-fill-color: transparent; /* Hace que el color del texto sea transparente */
}
/*eventos.php*/
/*eventos.php*/
/*eventos.php*/
.boxEvento{
    background-color: #272727;
    font-size: 14px;
    height: auto;
}
.infoEvento{
    color: white;
    padding: 10px;
}
.containerEventos{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,2fr));

    gap: 20px;
    padding: 20px;
}
.containerImgEvento{
    aspect-ratio: 3/4;
    background-color: #191919;
    margin: 20px 0px 0px 0px;
}
.containerImgEvento img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.titleEvento{
    color: #BDC3C7;
    font-size: 2em;
    font-weight: bolder;
    margin: 5px 0px 2px;
}
.fechaEvento{
    color: #BDC3C7;
    font-size: 1.5em;
}

/*
********************
********************
********************
********************
LOGIN
*/

.contenderLogin{
    margin: 50px auto 50px;
    font-size: 14px;
    display: flex;
    justify-content: center;
}

.contenderFormLogin{
   width: 50%;
   padding: 10px;
   
   @media (width<=500px) {
        width: 80%;           
   }
}
.contenderFormLoginTitle{
    width: 100%;
    text-align: center;    
}
.formLogin .form-group{
    margin: 5px;
}
.botonLogin{
    border-radius: 5px;
}
.textRegistro{
    color: black;
}
.textRegistro a{
    color: #2980B9;
    font-size: 1.2em;
}

.contendermision{
    font-size: 14px;
    height: 500px;
    margin: auto;
}
.misiontitulo{
    width: 40%;
    margin: auto;
    text-align: center;
    font-size: 2em;
    margin: 50px auto 10px;
    font-weight: bolder;
    color: #C0392B;
}
.misionText{
    width: 40%;
    margin: auto;
    text-align: center;
    font-size: 1.2em;
    color: #2980B9;
}
.contendervision{
    font-size: 14px;
    height: 500px;
    margin: auto;
}
.visiontitulo{
    width: 40%;
    margin: auto;
    text-align: center;
    font-size: 2em;
    margin: 50px auto 10px;
    font-weight: bolder;
    color: #C0392B;
}
.visionText{
    width: 40%;
    margin: auto;
    text-align: center;
    font-size: 1.2em;
    color: #2980B9;
}


/*
********************
********************
********************
********************
ADMINISTRADOR
*/
.bodyAdministrator{
    height: 500px;
    font-size: 14px;
}
.adminWelcome{
    text-align: center;
    padding:0.2em ;
    font-size: 2em;
}
.containerOptions{
    padding: 1em;
    font-size: 1.3em;
    text-align: le;
}
.containerOptions a{
    color: black;
}
.viewItems{
    padding: 0.3em;
    color: black;
}
.icon-users:before {
    content: "\e973";
  }


/*listar usuarios */

.icon-eye:before {
    content: "\e9ce";
    color: black;
}
.icon-pencil:before {
    content: "\e905";
    color: black;
}
.icon-bin:before {
    content: "\e9ae";
    color: black;
}
.icon-bin2{
    color: black;
}

.containerAdminitracionDojo, .containerAdminitracionUsuario{
    font-size: 14px;
}
.containertitle{
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2980B9;
    color: white;
}
.tituloAdmin{
    font-size: 3em;
    padding: 0px 10px;
    width: auto;
    text-align: center;
}
.containerbarra{
    display: flex;
    justify-content: space-between;
    height: auto;
    align-items: center;
}
.formularioAdministracion{
    margin: 1em;
    padding: 0.5em;
    display: flex;
    align-items: center;
}
.buscadorText{
    margin: 0.1em;
}
.filtro{
    height: 2em;
    border: 1px solid black;
    border-radius: 0.3em;
    margin: 0.1em;
}
.botonBuscar{
    border: 1px solid rgb(79, 79, 79);
    background-color: rgb(99, 191, 99);
    border-radius: 5px;
    padding: 0.3em;
    margin: 0.1em;
}
.botonBack{
    font-size: 1em;
    background-color: rgb(180, 180, 180);
    border: 1px solid rgb(123, 123, 123);
    border-radius: 5px;
    color: black;
    padding: 0.3em;
    margin: 0.1em;
}
.BotonAdd{
    margin: 1em;
    font-size: 1.2em;
    color: black;
}
.containerTable{
    width: 100%;
    margin: auto;
    display: flex;
}
.tableAdmin{
    border:1px solid black;
    border-collapse: collapse;
    width: 95%;
    table-layout: fixed;
    margin: 10px auto 50px;
    text-align: center;
}
.tableAdmin thead{
    background-color: #2980B9;
    color: white;
}
.tableAdmin tbody{
    background-color: #cae3f4;
    color: black;
}
.tableAdmin th, .tableAdmin td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.idtable{
    width: 3em;
}
/*DETALLES*/

.containerDatosDetalle{
    font-size: 14px;
    margin: 20px 0px 0px 0px;
}
.containerDatosDetalle article{
    width: 50%;
    margin: auto;
    padding: 2em;
}
.containerDatosDetalle article b{
    font-size: 1.1em;
}
/*ADMIN DOJO*/

/*detalle dojo*/
.containerDatosDetalle{
    width: 60%;
    margin: auto;
    display: flex;
    justify-content: center;
}
.containerDatosDetText{
    display: block;
    width: auto;
    padding: 10px;
}

.containerDatosDetImg img{
    max-width: 200px; 
    max-height: 200px;
}





/* Estilos para el popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

    @media(width < 450px) {
        padding: 5px;
    }
    @media(width < 350px) {
        padding: 0px;
    }
}

.popup img {
    max-width: 500px;
    height: 700px;
    width: auto;
    border-radius: 10px;

    @media(width < 1400px) {
        height: 90%;
        width: auto;
    }
    @media(width < 450px) {
        height: 80%;
    }
    @media(width < 350px) {
        height: 70%;
    }
}

/* Botón de cerrar */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
    color: #ffffff;
}
