* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

a {
    text-decoration: none;
    color: #ffffff;
}

/*NOTAS*/

/*
PARA LLAMAR TIPOGRAFÍA
font-family: 'Archivo Black', sans-serif;
font-family: 'Lato', sans-serif;
*/



/* -----------aspectos de contenido en gral-----------------*/
body {
    font-family: 'Lato', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #043959;
}


ul {
    list-style: none;
}

header {
    background-color: #E30613;
}

footer {
    background-color: rgba(104,136,155);
    padding: 1em;
    color: #043959;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: .9em;
    margin-top: 1em;
}

.redes  {
    width: 2.3em;
    margin: .5em 0 em;
}

#follow {
display: flex}

/*   ver  */

#llamamenu .material-icons,
#ocultamenu .material-icons {
}

/* ^^  ver  */

.contenedor {
    justify-content: space-between;
    margin: 0 auto;
}

/*--------------encabezado-----------------*/


header .contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;   
}

#logo {
    display: block;
    width: 8em;
    margin: .5em 1em;
}

/*-----menu--------*/


header ul {
    background-color: rgba(104,136,155,.9);
    color: white;
}

header nav a,
header nav label {
    color: rgba(255,255,255,.75);
    padding: .5em 1em;
    text-decoration: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-weight: 700;

}

header nav a:hover,
header nav label:hover {
    background-color: rgb(227,6,19);
    color: white;
}


span {
    color: #043959;
    font-weight: 600;
}

.material-icons{
    font-size: 2.5em
}

/*--------botones que muestran ocultan el menu-----------*/

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
    display: none;
}

header nav label{
    cursor: pointer;
    padding: .5em;
    position: relative;
    z-index: 9999;
    }

/*que boton se muestra*/
#menu-toggle:not(:checked) + #llamamenu,
#menu-toggle:checked + #llamamenu + #ocultamenu {
    display: flex;
}
/*que boton se oculta*/
#menu-toggle:checked + #llamamenu,
#menu-toggle:not(:checked) + #llamamenu + #ocultamenu {
    display: none;
}


header nav ul {
    position: fixed;
    left: 100%;
    top: 0;
    height: 100vh;
    width: 50%;
    z-index: 9990;
    padding-top: 5em;
    transition: all .25s ease;
}

#menu-toggle:checked + #llamamenu + #ocultamenu + ul {
    left: 50%;
    transition: all .25s ease;
}


/* ------------------CONTENIDO CUERPO-------------*/

/*----------------TABLERO RESULTADOS----------------*/

.tablero {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
    margin-top: 1em;
    padding-bottom: 2em;
    background: linear-gradient(0deg, rgb(104,136,155), #043959 100%);  
}

h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5em;
    color: rgb(104,136,155);
    
}

#encabezadovivo {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.titulovivo {
    margin-top: 1em;
    font-family: 'Archivo Black', sans-serif;
    color: #ffffff;
        font-size: 1.3em

}

.botonvivo {
    max-width: 8em;
    margin-top: .5em;
   
    
}

.botonvivo:hover {
    
    max-width: 8.5em;
}

.equipoab {
    display: flex;
    flex-direction: column;
    align-items: center;

    }

#escudosequipo {
    
}

.marcador {
    font-weight: 700;
    font-size: 1em;
    max-width: 8em;
    min-height: 5em;
    letter-spacing: 0.1em;
    line-height: 1.2em;
    text-align: center;
    margin: -.5em 0;
    
}

.tablero p {
    font-size: 2em;
    padding-top: 1.5em;
    
}

.tablero h2{
    font-size: 3em;
    color: #ffffff;
    margin: -.2em; 
    
}


/*--------------VIDEO VIVO-------------------------*/

video{
    width: 100%;
    height: auto;
    }


/*---------------------GALERÍA DE IMÁGENES----------------*/

.pievideo {
    color: #043959;
    padding-top: 1em;
}

.pievideo h4, 
.pievideo h5,
#destacado{
    padding: .3em 0;
    color: #FFFFFF
}



.copete {
    padding: 1em ;
    color: #043959;
    background-color: rgb(104,136,155)
}

.copete p {
    margin-top: .5em;
}
.copete a {
    font-size: 1.3em;
    line-height: 2em;
}


.galeria{
    justify-content: center;
    background-color: rgb(104,136,155);
    padding: 1em 0;

}

.galerias{
    margin: 8%;
}

figure {
    margin: .5em;
    color: #ffffff;
    display: flex;
    flex-direction: column;   
}

figcaption {
    font-size: 1.3em;
    padding: 1em;
}

.galeria figure {
    position: relative;
    overflow: hidden;
    }

.galeria figcaption {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #043959;
    top: calc( 100% - 3.5em );
    transition: all .2s ease;
    display: flex;
    flex-direction: column;
    line-height: 2em;
}

.galeria figure:hover figcaption {
    top: 0em;
    transition: all .1s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: rgb(104,136,155);
    font-size: 1.5em;
}

.galeria figcaption span {
    font-size: 1em;
    line-height: 1.2em;
}

/*---------------NOTICIAS-------------------------*/

.separador {
   
    color: #043959;
    display: flex;
    justify-content: center;
    font-size: 1.5em;
    font-family: 'Archivo Black', sans-serif;
    margin-top: 1em;
    padding-top: 1em;
    padding-bottom: .5em;
    background-color: rgba(104,136,155);
    text-align: center;

   
    
}

.noticias {
    padding: 1em;
    padding-top: .5em;
    margin-bottom: .5em;
    background-color: #ffffff;
    color: rgb(104,136,155);
}

.textos article h3 {
    font-family: 'Archivo Black', sans-serif;
    color: #043959;
    border-bottom: solid 2px #043959;
    padding: 1em 0 .5em 0;
    margin-bottom: 1em;
}

/*-------------------
        FORMULARIOS
---------------------*/
form{
    text-align: center;
    margin-bottom: 2em;
}
.izq {
    display: inline-block;
    padding: 1em .5em 0 .5em;
    
    margin-bottom: 1em;
    text-align: center;
    min-height: 2em;
    width: 90%;
    text-align: left;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.der {
    display: inline-block;
    padding: 1em .5em 1em .5em;
    
    width: 90%;
    min-height: 1.8em;
    color: rgb(104,136,155);
    background: linear-gradient(0deg, #043959, #03314d 100%);
    border: 1px;
    border-radius: 2em;
}

.boton {
    padding: 1em 1em;
    border-radius: 1.5em;
    background-color: rgb(104,136,155);
    color: #ffffff;
    font-weight: 700;
    margin: .5em;
    min-width: 10em;
}

.registronuevo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: rgb(104,136,155);
    margin-top: 1em;
    text-align: center
}

.ingresoregistrado {
    text-align: center;
}

.ingresoregistrado a {
    font-size: .7em;
    letter-spacing: 0.1em;
    text-decoration: underline;
    line-height:4em;
}

#botonradiologin{
   padding: .5em;
   line-height: 2em;
    color: #ffffff
}

.seccionusuario{
    margin-bottom: 2em;
}
/*-------------------
      SUBIR VIDEOS / ALQUILER CANCHAS /
---------------------*/



#detallecancha {
    display: flex;
    margin: 1em;
}

.terminosdeuso {
    display: flex;
    flex-direction: column;
    color: rgb(104,136,155);
    padding: 1em;
    margin: 2em 1em 3em;
    font-size: .8em;
    line-height: 1.5em;
    align-items: center;
}

.confirmacion{
    display:flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1em;
    color: #ffffff;
}
.iconoscontenedor{
    display: flex;
    flex-direction: row;
    justify-content: center;
  
}

.iconossubir{
   color: #ffffff;
   justify-content: center;
    margin-left: 2em;
    margin-right: 2em;
}

/* ----------- USUARIO / DATOS PERSONALES ------*/

.listaconfirmacion{
    width: 100%;
    margin-top: 1em;
    margin-bottom: 1em;
    color: rgb(104,136,155);
    padding: 1em;
    background: linear-gradient(0deg, rgba(104, 136, 155, 0.48), #043959 100%); 
   
}

.listaconfirmacion h3{
    text-align: left;
    color: #ffffff;
    font-weight: 600;
    font-size: 1em;
    letter-spacing: 0.1em;
    
}

.listaconfirmacion li{
    margin-bottom: 1em;
    color: rgb(104,136,155);
   
}


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

.avi{
    display: flex;
    position: relative;
    max-width: 200px;
    
}

#avi{
    margin-top: 2em;

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


.edit {
    background-color: #ffffff;
    border-radius: 50%;
    color: #043959;
    cursor: pointer;
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    bottom: 1em;
    right: 0rem;
    z-index: 9990;
}

.edit > i {
    margin: auto;
    font-size: 2rem;
}


.send {
    background-color: #ffffff;
    border-radius: 50%;
    color: #043959;
    cursor: pointer;
    width: 3.5rem;
    height: 3.5rem;
    margin: .5em 5em 0 5em;
    
}

.send > i {
    display: flex;
    padding-left: .25em;
    font-size: 2.5rem;
}
/* ----------- USUARIO / VIDEOS SUBIDOS ------*/



.listavideos {
    width: 100%;
    margin-bottom: 3em;
    color: rgb(104,136,155);
    padding: 1em;

}

.listavideos h3{
    text-align: left;
    color: #ffffff;
    font-weight: 600;
    font-size: 1em;
    text-decoration: underline;
    
    
}

.listavideos li {
    margin-bottom: .5em;
    margin-top: .5em;
    
    
}

.iconousuario{
    margin-top: 1em;
    display: flex;
    justify-content: center;
    font-size: 3em
    
}



/* ----------- USUARIO / VIDEOS SUBIDOS ------*/


.usuariocomentarios {
    width: 100%;
    margin-bottom: 3em;
    color: #ffffff;
    padding: 1em;

}

.usuariocomentarios h3{
    text-align: left;
    color: #a8a8a8;
    font-weight: 600;
    font-size: 1em;
    text-decoration: underline;
    
    
    
}

.usuariocomentarios li {
    margin-bottom: 1em;
    margin-top: .5em;
    padding-bottom: 1em;
    border-bottom: 0.5px solid rgb(168, 168, 168, .9);
    
    
}

#controlusuario {
    max-width: .7em;
    margin-right: .5em;
}

#controlcomment {
    max-width: 1em;
    margin-right: .5em;
}

#infovideousuario {
    max-width: 1.3em;
    max-height: .9em;
}

#cantidades{
    color: #a8a8a8;
    font-weight: 900;
}

.cajadetalles{
    display: flex;
    flex-direction: row;
    max-height: 1em;
    margin-bottom: 1.5em;
    max-width: 40%;
    
}
.detallevideos{
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 6em;
   justify-content: space-around;
}

#cantidad{
    font-size: .9em;
    padding-left: .5em;
    padding-right: 2em;
    
}

/*------------ COMENTARIO HABILITADO --------------*/

.comentar {
  min-width: 92%;
  background-color: rgba(104, 136, 155, 0.3);
  color: #a8a8a8;
    font-family: 'lato', sans-serif;
    padding: 1em;
    font-size: 1em;
    border-radius: 1em;
}



/*--------------------------------------
BIENVENIDOS
---------------------------------------*/

.textosinformativos {
    color: rgb(104,136,155);
    margin: 1em;
    border: solid 1px #E30613;
    padding: 1em;
    
 
}
    
/*--------------------------------------
MEDIAQUERIES
---------------------------------------
*/

/*
cuando la ventana del navegador mida
como mínimo 560px de ancho (TAMAÑO CELULAR)
*/
@media (min-width: 35em) {
    #menu-toggle,
    #menu-toggle:checked + #llamamenu,
    #menu-toggle:not(:checked) + #llamamenu,
    #menu-toggle:checked + #llamamenu + #ocultamenu,
    #menu-toggle:not(checked) + #llamamenu + #ocultamenu {
        display: none;
    }
    
    #menu-toggle:not(:checked) + #llamamenu + #ocultamenu + ul,
    #menu-toggle:checked + #llamamenu + #ocultamenu + ul {
        display: flex;
        flex-wrap: wrap;
        background-color: #E30613;
        position: relative;
        top: auto;
        left: auto;
        height: auto;
        width: 100%;
        padding-top: 0;
    }
        header nav ul {
        flex-basis: 25%;
    }    
       

}

/*
cuando la ventana del navegador mida
como mínimo 640px de ancho (TAMAÑO TABLET)
*/
@media (min-width: 40em) {
  
      
    .galeria{
    display: flex;
    flex-wrap: wrap;
    }
    .izq {
     width: 60%;
    
}

    .der {
    width: 60%;
    
}
}


/*
cuando la ventana del navegador mida
como mínimo 1200px de ancho (TAMAÑO WEB)
*/
@media (min-width: 75em) {
    
    main section ul  { 
    box-sizing: border-box;
    list-style: none;
    }
    
    .slider {
        display: flex;
        max-width: 200%;
        height: auto;
    }
    

    .galeria {
        display: flex;
        flex-direction: row;
        }


.galeria figure:hover figcaption {
    font-size: 2em;
    line-height: 1em;
    }
    .textos > .articulos {
        display: flex;
        justify-content: center;
    }
    
    .textos article {
        flex-basis: 50%;
        margin: .5em;
    }
    .informacionparasocios {
        display: flex;
        justify-content: center;
        flex-direction: row;
    }
    
    .informacionparasocios {
        flex-basis: 30%;
}
}
 