#slab{
    background:url(crossword.png);
    background-position:center center;
    background-size: 100% 100%;
    background-repeat: repeat;
    width:250px;
    right:-250px;
    box-shadow: inset 6px 0px 10px -5px rgba(0,0,0,0.5);
    list-style-type: none;
    display:none;
    overflow:auto;
    height:100%;
    position:fixed;
    margin:0;
    padding:0;
    z-index:50;
}
.top#slab{
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -ms-box-sizing:border-box;
    -o-box-sizing:border-box;
    width: 100%;
    right:0;
    position: relative;
    max-height:0;
    height:auto;
    overflow:hidden;
}
.slab-container{
    left:0;
    position:relative;
    width: 100%;
}
#slab, .slab-container{
    transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
    -o-transition: .3s all;
}
.top#slab{
    transition: all .4s ease-in ;
    -webkit-transition: all .4s ease-in ;
    -moz-transition: all .4s ease-in ;
    -ms-transition: all .4s ease-in ;
    -o-transition: all .4s ease-in ;
}
#slab-trigger{
    cursor:pointer;
    display:none;
}
#slab li{
    text-overflow:ellipsis;
    white-space: nowrap;
    margin:0;
    padding:0;
}
#slab li a{
    display:block;
    padding: 15px;
    color: #444;
    text-decoration:none;
}
.disableScroll{
    
   /* width:100%;
    height:100%;
    overflow:hidden;*/
}

@media(max-width: 767px){
    .widget-type-menu{
        display:none !important;
    }
    #slab-trigger{
        display:block;
        z-index:51;
    }
    #slab{
        display:block;
        right:-250px;
    }
    .top#slab{
        right:0;
    }
    #slab.open{
        right:0;
    }
    .top#slab.open{
        max-height:500px;
    }
    .slab-container.opened{
        left:-250px;
    }
    .top.slab-container.opened{
        left:0;
    }
    .slab-container.closed{
        left:0;
    }
   
}