@import url(fuentes.css);

/*FRANJAS DIVISORAS*/

.franja {
    width: 100%;
}

.franja div {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
}

.finicial div {
    border-top: 1px solid #EEE;
}

.ffinal div {
    border-top: 2px solid #e6e6e6;
}

/*LEYENDA INFERIOR*/

#registrada .contenedor {
    text-align: center;
    color: rgb(94,94,94);
    font-family: "fpbook";
}

/*ANUNCIO SUPERIOR Y BODY*/

@keyframes fadein{
from {opacity:0;}
to {opacity:1;}
}

body {
    animation: fadein 0.5s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.secint {
    padding-top: 25px;
    padding-bottom: 25px;
}

#anuncio {
    color: white;
    background-color: rgb(49, 49, 49);
    display: none;
}

.anuncios {
    margin-left: 10%;
    margin-right: 10%;
    width: 80%;
    display: flex;
    flex-wrap: wrap;
}

.subanunciovacio {
    display: none;
}

.subanunciocentro {
    width: 70%;
    padding-top: 3px;
    padding-bottom: 3px;
    text-align: center;
    font-family: "fplight";
}

.subanuncioderecha {
    width: 30%;
    padding-top: 3px;
    padding-bottom: 3px;
    text-align: right;
    margin-top: auto;
    margin-bottom: auto;
    font-family: "fpbook";
}

.subanuncioderecha img {
    height: 15px;
    margin-right: 10px;
}

/*MENU DE NAVEGACIÓN*/

.logomenu {
    width: 60px;
    margin-top: 5px;
}

nav img {
    height: 30px;
    margin-top: -7px;
    margin-right: 15px;
}

nav a {
    text-decoration: none;
    z-index: 1001;
}

header {
    width: 100%;
    height: 70px;
    border-bottom: 2px solid #EEE;
    border-radius: 0 0 10px 10px;
    z-index: 1000;
}

header img {
    float: left;
}

.contenedor {
    width: 98%;
    margin: auto;
}

#menu-bar {
    display: none;
}

header label {
    float: right;
    font-size: 35px;
    margin: 13px 0;
    cursor: pointer;
}

.menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.95);
    transition: all 0.5s;
    transform: translateX(-100%);
    z-index: 1002;
}

header .contenedor {
    display: table;
}

.menu a {
    display: block;
    color: rgb(49, 49, 49);
    height: 50px;
    padding: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    z-index: 1003;
    font-family: "fplight";
    letter-spacing: 1px;
}

.menu a:hover {
    background: rgba(0,0,0,0.1);
}

#menu-bar:checked ~ .menu{
    transform: translateX(0%);
}
/*****************RESPONSIVE******************/

/*ANUNCIO*/
@media (min-width:900px) {
    #anuncio {
        display: flex;
    }

    .subanunciovacio {
        display: flex;
        width: 22%;
    }

    .subanunciocentro {
        width: 56%;
    }

    .subanuncioderecha {
        width: 22%;
    }

    .menu {
        position: static;
        width: auto;
        height: auto;
        transform: translateX(0%);
        /*float: left;*/
        display: flex;
        margin-left: 20%;
        margin-right: 20%;
    }

    .menu a img {
        margin-left: 40px;
        margin-right: 40px;
        width: 36px;
        height: 36px;
    }

    .menu a {
        border: none;
        justify-content: center;
        font-size: 14px;
        display: flex;
        flex-wrap: wrap;
        height: 68px;
        max-width: 180px;
    }

    .enmedio {
        background: url(../img/Links/links-Banners/separador.png) no-repeat;
    }

    header label {
        display: none;
    }

    .franja div {
        width: 80%;
        max-width: 950px;
        margin-left: auto;
        margin-right: auto;
    }
}