@charset: "UTF-8"
*{ box-sizing: border-box;
}

body{
    background-color: whitesmoke;
    font-family:"Roboto", "Arial", sans-serif;
    display: flex;
    flex-direction: column;
    padding-top: 5em;
    list-style: none;
    margin:0;
    padding:0;
    font-size: 1.1em;
}
a{
    text-decoration: none;
    color: black;
}
li{
    list-style: none;
}
ul{
    padding: 0;
}
button{
    border: none;
    background: none;
    outline: none;
}

p{
    line-height: 1.8em;
}


/* 
------
header
------
*/

header{
    color: whitesmoke;
    display: flex;
    position: fixed;
    width: 100%;
    top:0;
    left: 0;
    right: 0;
    z-index: 99999;
}
.barra{
    height: 5em;
    background-color: black;
    width: 100%; /* no sacar esto */
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: auto;
}
header .logo{
    width: 10rem;
}
.boton {
    width: 1rem;
    margin: 0;
    padding:1rem;
    position: relative;
    z-index: 999;
}

/*sidebar*/
.sidebar{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 40vw;
    background-color: rgb(000, 0, 0);opacity:0.88;
    position: fixed;
    top:0;
    left:-40vw; 
    transition: all .8s ease;
    z-index: 990;
}
.visible{
    left: 0;
    transition: all .5s ease;
}
.abremenu{
    cursor: pointer;
}
.menu1{
    margin-top: 6rem;
}
nav li{
    margin-bottom: .5rem;
    margin-left: 2rem;
}
nav li ul li{
    margin-left:.5rem;
    margin-top:.5rem;
}
nav li a {
    color: whitesmoke;
    text-decoration: none;
    font-stretch: condensed;
}
nav li a:hover{
    color: orange;
}
nav ul li{
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1rem;
    
}
.line{
    height: .94rem;
    margin-right: .2rem;
}
nav ul:first-of-type{
    height: 70vh;
}
nav ul li ul li a{
    color:#069DE4;
    font-stretch: condensed;
    text-transform: uppercase;
    font-weight: 600;
    display: none;
    font-size: .8rem;
}
.desplegable{
    height: 1rem;
}
.activado{
    height: 40%;
}
.activado li a{
    display: flex;
}

/*buscador*/
#container{
  padding:-1em;
  text-align:center;
    height:3.1em;
}
#searchform{
  display:flex;
  margin-left:-.1em;
  margin-bottom: 2.2em;
  border-radius: 8em;
  padding:0.5em;
    color:#00AAE5;
    font-size: 1.2em;
  background:transparent;
}
#s{
  transition:all 0.2s ease-out;
  width:.7em;
  height:1.8em;
  box-shadow:none;
  outline: none;
  padding:0;
  margin:0;
  border:0;
  background-color: transparent;
  opacity:0;
}
#s:focus{
  width:5em;
  margin-right:-.1em;
    margin-left: .3rem;
  opacity:10;
    background: whitesmoke;
    border-radius: 1.25em;
    font-size: .65em;
    height: .3em;
    padding:.8em 0em .8em 1.2em;
}


/*
----
main 
----
*/ 
    
main{
    margin-top: 5rem;
    min-height: 100vw;
    width: 100%;
}

.portada{
    width: 100%;
    background-color: orange;
}
.banner{
    background: black;
    text-align: center;
    padding: 2em;
    padding-top: 1em;
    background-image: url(banner.png);
    background-size: auto;
}
.separador{
    background-color: orange;
    height: .5rem;
    position:relative;
    top:-.5rem;
    z-index: 999;
    
}

/*títulos y texto*/
h2{
    color:black;
    font-stretch: condensed;
    text-transform: uppercase;
    font-weight: 800;
    margin: 1.5rem 1rem 1rem 1rem;
}
.evento{
    color: whitesmoke; 
    margin: auto;
    margin-top: 1.5rem;
}
.eventosub{
    color: orange; 
    margin: auto;
    margin-top: .4rem;
    text-transform: uppercase;
    font-weight: 400;
    font-size: .87em;
}
h3{
    color:#069DE4;
    font-stretch: condensed;
    font-weight: 500;
    margin:.5rem .5rem .2rem 0rem;
}
h4{
    margin-bottom: .3rem;
    font-weight: 800;
}
h5{
    color: gray;
    font-weight: 400;
    margin-top:.5rem;
    margin-bottom: 1rem;
}

/*iframe*/
iframe{
    width: 87.5vw;
    height: 85vw;
}
/*facebook*/
.facebook{
    margin: auto;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-content: center;
}
.fb-page{
    margin: auto;
    margin-bottom: 2rem;
    width: 21.3rem;
}
.fb-video{
    margin: auto;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

/*slider*/
.slider{
    display: block;
    margin-left: -2.5rem;
    margin-top: -.8rem;
}

.bx-wrapper {
margin: auto;
    margin-bottom: 3.5em;
}

/*deportes index*/
.info{
    background-color: #eaeaea;
    padding: .5rem;
    margin: .5rem 1rem 1rem 1rem;
}
.deportes {
    display: flex;
    margin-bottom: .5rem;
    padding: 1rem;
}
.deportes div{
    margin-right: .5rem;
    padding: 0;
    width: 70%;
}
.cover{
    width: 8rem;
    height:8rem;
    object-fit:cover;
    overflow: hidden;
    margin: 0;
    margin-right: .5rem;
    
}
.foto{
    height: 100%;
    margin-left: -2.3em;
    display: block;
}
main section:last-of-type ul{
    padding: 0;
}

/*formularios*/
form {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.formulario{
    display: inline-block;
    width: 40%;
    text-align: right;
    margin-bottom: .5em;
    padding: .2rem;
}
.notificado{
    text-align: left;
    margin-top: 1rem;
}
input {
    width: 40%;
    margin-bottom: .5em;
    padding: .2rem;
}
.check{
    width: auto;
    margin: auto;
}
.deportescheck{
    width: 80%;
    display: inline-block;
    text-align: left;
}
.aclaracion{
    font-size: .72rem;
    padding-left: 0;
    text-align: left;
}
.checklist{
    width:  40%;
    margin-left: 42%;
}
.notifica{
    margin-left: 30%;
    margin-top: 1.5rem;
}
form button{
    display: block;
    text-align: center;
    margin: auto;
    font-size: 1.1em;
    padding: .5rem;
    background: #ffa600;
    color: whitesmoke;
    margin-top:.5rem;
    margin-bottom: 2rem;
    border-radius: .7em;
}

/*usuario*/
.deportes-usuario{
    color: orange;
    background: #e5e0e0;
    padding: .3rem;
    margin-right: .5rem;
    margin-bottom: .5rem;
    font-size: 1em;
}

.aviso-sesion{
    font-size:.72em;
}

/*publicidades*/
.publicidad{
    height: 12rem;
    width: 100%;
    background: white;
    margin-top:1rem;
    margin-bottom: 1rem;
    display: flex;
    object-fit: contain;
}
.unsam{
    margin: auto;
}
.cerveza{
    width: 100%;
}


/* 
------
footer 
------
*/

footer{
    padding: 2rem 2rem 1rem 2rem;
    display: flex;
    background-color: black;
    color: whitesmoke;
    position:static;
    bottom: 0;
    right: 0;
    left:0;
    display: flex;
    flex-wrap: wrap; 
    
}
footer div img{
    width: 1.5rem;
    margin: .2rem;
    margin-left: 0;
}
footer section:first-of-type{
    font-size: .9rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
footer section:last-of-type{
    font-size: .9rem;
    width: 15vh;
    flex-grow:1;
}
.contacto{
    margin-top: 0;
    margin-bottom: .6rem;
    
}
.datosfooter{
    font-size: .8em;
    margin-top: 2rem;
}

/* vista ipad */
@media(min-width:48em){
    body{
        font-size: .9rem;
    }
    nav li{
        margin-left: 3rem;
    }
    nav ul li{
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
    }
    
    main{
        max-width: 100vh;
        margin: auto;
        padding-top: 5rem;
    }
    
    .aclaracion{
        font-size: .75rem;
    }
    .deportescheck{
    width: 92%;
    }
    .facebook{
        flex-direction: row;
        justify-content: center;
    }
}

/* vista computadora */
@media(min-width:100em){
    .deportescheck{
    width: 99%;
    }
    
}





