.struct-menu{
    height: 80px;
    padding: 15px;
    box-shadow: 0 0 10px 2px #6e6e6e;
    background: #383838; 
    position: fixed;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all ease-in-out 0.3s;
}
#dark{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    position: fixed;
    top: 0;
    z-index: 49;
    right: 0;
}
.struct-aberto{
    transition: transform 0.55s;
    transform: translateX(-200%);
    /*display: none;*/
    position: fixed;
    z-index: 50;
    width: 50%;
    height: 100vh;
    opacity: 0.95;
    left: 0;
    right: 0;
    padding: 0;
    text-align:left; 
    /*padding-top: 65px;*/
    background: #343434;
}
.animate-menu{
    transform: translateX(0);
}
.close-struct{
    padding: 15px 0;
    padding-left: 25px;
    background: #2b2b2b;
    position: fixed;
    top: 0px;
    right: 0;
    width: 100%;
    text-align: left;
    display: inline-block;
    font-size: 2.3rem;
    font-family: 'Black';
    color: #efefef;
}
.close-struct span{
    font-size: 2rem;
    color: #fff;
}
.close-struct span:before{
    margin-top: -5px;
}
.item-lista-struct{
    padding: 15px 0;
    padding-left: 25px;
    border-top: 1px solid #ffffff;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-family: "Light";
    color: #fff;
}
.item-lista-struct.item-esp{
    background: #5f8a5a;
    color: #b8dab4;
    padding-left: 10px;
}
.item-lista-struct img{
    display: inline-block;
    margin-right: 10px;
}
.struct-aberto-inner a:first-of-type .item-lista-struct{
    border-color: transparent;
}
.selected-resp{
    background: #adadad;
    color: #202428;
    font-family: "Light";
}
.struct-aberto-inner{
    opacity: 0;
    margin-top: 60px;
}
.top{
    background: #fff;
    bottom:0;
    padding: 15px 0;
    display: none;
}
.top a{
    display: block;
    width: 100%;    
}
.top .logo-menu-resp{
    width: 100%;
    height: 80px;
}
.top .link-menu-resp{
    display: none;
}
.top span{
    display: none;
}
.bottom{
    bottom:calc(100% - 80px);
    top: 0;
}
.struct-menu span{
    font-size: 3rem;
    top: 0;
    color: #fff;
}


.logo-menu-resp{
    width: 100px;
    height: 75px;
    transition: all ease-in-out 0.2s;
    overflow: hidden;
    position: relative;
    margin: 0;
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
}
.link-menu-resp{
    text-align: right;
}
.link-menu-resp span{
    font-size: 2.5rem;
    color: #a0a0a0;
}
@media(max-width:700px){
    .struct-aberto{
        width: 80%;
    }
}