@media (max-width: 991px) {
    .mobileMenuLeft {
        transform: translateX(-100%);
        /* position: fixed; */
        top: 0px;
        bottom: 0;
        margin: auto;
        left: 0;
        transition: all ease 0.25s;
    }
    .bt-yello {
        border-bottom:none;
    }
    .mobileMenuLeft.open {
        transform: translateX(0%);
    }

        .mobileMenuLeft.navbar-nav {
            overflow-y: auto;
        }

    .mobileMenuRight {
        top: 0;
        bottom: 0;
        margin: auto;
        left: auto;
        right: 0;
        transform: translateX(124%);
        transition: all ease 0.25s;
    }

        .mobileMenuRight.open {
            display: block !important;
            transform: translateX(0%);
        }

        .mobileMenuRight.navbar-nav {
            overflow-y: auto;
        }

    .overlay {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        background-color: rgba(0, 0, 0, 0.5);
        display: none;
    }

        .overlay.open {
            display: block;
            z-index: 1029;
        }

    .initHeight {
        height: 0;
    }

    .fixHeight {
        height: 200px !important;
    }
}
