.menu_min {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.boton-menu {
    background: #FF6900;
    border-radius: 5px;
    font-size: .7rem;
    color: #ffffff;
    font-weight: bold;
    padding: .2rem .5rem;
    display: block;
    margin-right: 1rem;
}

#menu_min > img {
    width: 3vw;
}

.menu_max {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.5);
    height: 100vh;
    opacity: 0;

    transition: all .5s ease;
}

.menu {
    min-width: 270px;
    min-height: 218px;
    position: absolute;
    right: -350px;
    top: 0;
    height: 100vh;
    width: 350px;
    padding: 1rem 1.625rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: right .5s ease;
}

.menu-open {
    right: 0;
    line-height: 80%;
}

@media screen and (max-width: 480px) {
    .menu {
        right: -100%;
        width: 100%;
    }
    .menu-open {
        right: 0;
        width: 100%;
    }
}

.header-menu {
    position: relative;
    top: 0;
    width: 100%;
    left: 0;
    display: inline-flex;
    justify-content: space-between;
}
.logo-negro {
    width: 4vw;
}
.logo-negro img {
    filter: grayscale(100%);
    /*max-width: 70px;*/
}
.logo-negro:hover img {
    filter: grayscale(0%);

}

.botones-menu {
    width: auto;
}
.botones-menu > div {
    float: left;
}
.idioma {
    font-size: 14px;
    align-self: center;
    margin-right: 20px;
    cursor: pointer;
}
.cerrar-menu {
    cursor: pointer;
    width: 11px;
}
.cerrar-menu img {
    max-width: 11px;
}


@media screen and (max-width: 840px) {
    .logo-negro {
        width: 20vw;
    }
    .idioma {
        font-size: 14px;
    }
}

.lista-menu {
    padding: 0;
    line-height: 110%;
}
.lista-menu a {
    line-height: 80%;
    display: inline-block;
}

.footer-menu {
    position: relative;
    bottom: 0;
    width: 100%;
    left: 0;
}
.footer-menu .logo-footer img{
    float: left;
    margin-right: 2rem;
    width: auto;
}

.idioma.no-link {
    background: transparent;
    color: rgb(0, 0, 0);
}

.idioma.no-link:hover span {
    display: none;
}

.idioma.no-link:hover:after {
    content: attr(data-idioma);
}