/* box modais topo do site - busca e menu */
.header-box-container {
    position: fixed;
    top: 0;
    left: -280px;
    margin: 0;
    padding: 0;
    width: 280px;
    height: 100%;
    border: 0;
    border-radius: 0;
    background:#fff;
    box-shadow: 2px 1px 2px rgba(0,0,0,0.2);
    transition: left 0.4s ease-in-out;
}

.show .header-box-container {
    left:0;
    transition: left 0.4s ease-in;
}

.header-box-container .header-box-content {
    border: 0;
    border-radius: 0;
    height: 100%;
    width:100%;
}

.header-box-body{
    padding: 0;
}

@media only screen and (min-width:768px) {

    .admin-bar .header-box-container{
        top:46px!important;
    }

}

@media only screen and (min-width:992px) {

    .admin-bar .header-box-container{
        top:32px!important;
    }   
    
}