.overflow{
    overflow: hidden;
}
.navbar-menu--header,
.navbar-menu--footer{
    display: none;
}
/*@media(max-width:767px)*/ @media screen and (-webkit-min-device-pixel-ratio: 0){
.pull-left.btn-search{
    height: 71px;
}
.pull-left.btn-search.collapsed{
    height: 70px;
}
.container > .navbar-menu{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: #fff;
    overflow: hidden;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}
.container > .navbar-menu.open{
    transform: translateY(0);
}
.container > .navbar-menu .navbar-nav{
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 40px;
    overflow-y: auto;
}
.navbar-menu--header{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 15px;
}
.navbar-menu--header-close{
    margin-right: -15px;
    margin-bottom: -1px;
    padding: 0 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.navbar-menu--footer{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: #ececec;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    padding: 0 15px;
}
.navbar-menu--footer a{
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
    color: #464646;
    text-transform: uppercase;
}
}