﻿.touch-menu-la {
    width: 280px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -280px;
    background-color: #FFF;
   
}

    .touch-menu-la .tmla-handle {
        position: absolute;
        /* right: -20px; */
        top: 0;
        /* width: 20px; */
        height: 100%;
    }

    .touch-menu-la.opened {
        transition: all 0.3s ease-out !important;
        -webkit-transition: all 0.3s ease-out !important;
        -moz-transition: all 0.3s ease-out !important;
         overflow-x: auto;
          overflow-y: none;
    }

    .touch-menu-la.closed {
        transition: all 0.3s ease-out !important;
        -webkit-transition: all 0.3s ease-out !important;
        -moz-transition: all 0.3s ease-out !important;
        transform: none !important;
        -webkit-transform: none !important;
        -moz-transform: none !important;
         overflow-x:none;
          overflow-y: none;
    }

.tmla-mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.0;
    z-index: -1;
}
.disable-scroll {
    overflow: hidden;
    height: 100%;
}
