.leftMenu a {
    text-decoration: none;
    display: block;
    color: black;
    font-size: 1rem;
}

.leftMenu {
    background: #fff;
    right: -1000px;
    position: fixed;
    top: 54px;
    display: block;
    height: 100%;
    width: 68%;
    min-width: 140px;
    max-width: 440px;
    z-index: 992;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    position: fixed;
    overflow: auto;
}

.leftMenu.menu-open {
    right: 0;
}

.leftMenu ul {
    list-style: none;
    padding: 0;
    overflow: hidden;
}

.f1>ul {
    border-top: 1px solid #777;
}

.leftMenu ul li {
    position: relative;
    padding: 10px 0 10px 20px;
    overflow: hidden;
}

.menu-y {
    border-bottom: 1px solid #777;
}

/* .leftMenu ul li.hasChild>a:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 0px;
    font-size: 24px;
    font-weight: 300;
}

.leftMenu ul li.hasChild.open>a:after {
    content: "-";
    right: 23px;
    font-size: 28px;
    top: -3px;
} */

.menu-a {
    top: 10px;
    right: 3%;
    position: absolute;
    width: 40px;
    height: 20px;
    display: block;
    line-height: 0rem;
}

.leftMenu ul li.hasChild>a span:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 8px;
    font-size: 24px;
    font-weight: 300;
}

.leftMenu ul li.hasChild.open>a span:after {
    content: "-";
    right: 23px;
    font-size: 28px;
    top: 8px;
}

.f2,
.f3 {
    height: 0;
    padding-left: 20px;
    overflow: hidden;
    position: relative;
    transition: height 0.4s ease;
    -moz-transition: height 0.4s ease;
    -webkit-transition: height 0.4s ease;
    -o-transition: height 0.4s ease;
}

.menu-dark-backdrop {
    background: rgba(0, 0, 0, 0);
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    width: 100%;
    position: fixed;
    top: 54px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.menu-dark-backdrop.in {
    height: 100%;
    z-index: 991;
    background: rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 768px) {
    .leftMenu {
        height: 1000px;
    }
}