/* ---------------------------------------------------
        SIDEBAR STYLE
    ----------------------------------------------------- */
.menu-bottom {
    position: fixed;
    bottom: 0;
    background: #fff;
    width: 100%;
    text-align: center;
    z-index: 2000;
}
.menu-bottom a {
    color: #fff;
    cursor: pointer;
    font-size: 15px;
}
.menu-bottom .btn-action {
    padding: 8px;
}
.menu-bottom .btn-chat-fb {
    background: #0968e6;
}
.menu-bottom .btn-call-phone {
    background: #ffae3e;
}

#m-sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 999999;
    background: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#m-sidebar.active {
    left: 0;
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: rgba(0, 0, 0, 0.28);
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border-radius: 3px;
}

#dismiss:hover {
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
}

#m-search {
    width: 80px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: rgba(0, 0, 0, 0.28);
    position: absolute;
    top: 10px;
    right: 55px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
    font-size: 13px;
    border-radius: 3px;
}

#m-search:hover {
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
}

.m-overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 110vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.m-overlay.active {
    display: block;
    opacity: 1;
    margin-top: -30px;
}

#m-sidebar .sidebar-header {
    padding: 10px;
    background: #e03550;
    position: fixed;
    width: 250px;
    z-index: 2000;
}
#m-sidebar .sidebar-header h3 {
    color: #fff;
    margin-top: 5px;
    margin-bottom: 5px;
}

#m-sidebar ul.components {
    padding: 20px 0;
    margin-top: 40px
}

#m-sidebar ul p {
    color: #fff;
    padding: 10px;
}

#m-sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
    border-bottom: 1px dotted #ddd;
    margin-left: 10px;
    margin-right: 10px;
}

#m-sidebar ul li a.active,
#m-sidebar a[aria-expanded="true"] {
    color: #e03550;
}

#m-sidebar a[data-toggle="collapse"] {
    position: relative;
}

#m-sidebar .dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

#m-sidebar ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
}
