.menuListInner {
    font-size: 32px;
    width: 50px;
    height: 50px;
    transform: scaleX(1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    color: #fff;
    margin-bottom: 0.25rem;
    border-radius: 0.25rem;
    background-color: #63b1bc;
    border-color: #fff;
    text-align: center;
    line-height: 54px;
    position: fixed;
    z-index: 99;
    border: 1px solid #fff;
    top: 110px;
    left: 18px;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
}



.menuListing {
    position: fixed;
    background: rgba(255, 255, 255, 0.933);
    top: 170px;
    left: 20px;
    z-index: 9;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
    border: 1px solid #dee2e6;
    max-width: 205px;
    min-width: 205px;
    transition: all ease 1s;
    transform: translateX(-110%);
}
.menuListing ul {
    list-style: none;
}

.menuListing ul {
    padding: 0;
    margin: 0;
}

.menuListing ul li a {
    padding: 16px 16px 16px 30px;
    display: block;
    font-size: 14px;
    color: #888b8d;
}
.menuListing ul li a:hover{

color: #63b1bc;
  background-color: #e9ecef;
  
}
.menuListing ul li.active {
    position: relative;
}

.menuListing ul li.active:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #63b1bc;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    left: 8px;
}
.menuListInner.activeMenu {
    transform: scaleX(-1);
    background-color: #4ba2ae;
}
.menuListing.active {
    transform: translateX(0);
}