@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed);
@import url(menu.css);
@import url(iconos.css);
@import url(form-login.css);
@import url(listadosPrincipal.css);

@import url(tablas.css);
@import url(tablasEntorno.css);
@import url(form.css);
@import url(botones.css);
@import url(ventanaModal.css);


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Roboto Condensed', sans-serif;
}


header{
    width: 100%;
    height: 65px;
    /*background: #e10018;*/
    background: #505050;
    color: #fff;
    /*border-bottom: 6px solid #ffe800;*/
    border-bottom: 6px solid #e10018;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;

}

.linkFooter{
    color: #e10018;
    text-decoration: overline;
}

#btn-menu{
    display: none;
}

.contenedor{
    width: 98%;
    margin: auto;
}

h1{
    float: left;
    font-size: 24px;
}

header .contenedor{
    display: table;
}

section {
    width: 100%;
    margin-top: 25px;
}

footer .contenedor{
    position:fixed;
    left:0px;
    bottom:0px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 120px;
    background-color: #3c3c3c;
    width: 100%;
    color: #fff;
}

.copy{
    font-size: 20px;
}

.sociales{
    width: 100%;
    text-align: left;
    font-size:  15px;
}

.sociales a{
    color: #ffe800;
    text-decoration: none;
}

.sociales p{
    color: #fff;
    font-size: 18px;
}

.sociales img{
    background-position: left;
    width: 35px;
    padding-top: 1px;
    padding-right: 5px;
    margin: 1px 1px 1px 1px;

}

.horarios{
    width: 100%;
    text-align:center;
    font-size:22px;
    color: #c1c1c1;
}

@media (min-width:480px){
    .contenedor{
        width: 470px;
    }
}

@media (min-width:768px){
    .contenedor{
        width: 700px;
    }

    .sociales{
    width: auto;
}

    footer .contenedor{
        justify-content: space-between;
    }
}

@media (min-width:1024px){
    .contenedor{
        width: 1200px;
    }

    header{
        height: 50px;
        line-height: 20px;
        display: flex;
        justify-content: flex-end;
    }

}
