.site_mobile_navigation_container {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: #000;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* visibility: hidden;
  opacity: 0; */
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}
.site_mobile_navigation_container.show {
    visibility: visible;
    opacity: 1;
    right: 0;
}
.mobile_navigation_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
    padding: 0rem 2rem;
    border-bottom: 1px solid #eeeeee35;
    box-shadow: rgba(149, 157, 165, 0) 0px 8px 24px;
}

.mobile_nav_heading_ts {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1e90ff;
}

.mobile_site_menuList {
    display: flex;
    flex-direction: column;
}
.mobile_site_menuItem {
    list-style: none !important;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eeeeee35;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.mobile_site_menuLinks {
    font-size: var(--note_ts);
    display: inline-block;
    color: rgb(255, 255, 255);
    text-decoration: none !important;
}

.mobile_site_menuItem.active {
    position: relative;
}

.mobile_site_menuItem.active::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 3px;
    height: 100%;
    background-color: rgb(8, 142, 124);
    border-radius: 0 1rem 1rem 0;
}
.mobile_site_menuItem.active > .mobile_site_menuLinks {
    color: rgb(8, 142, 124);
}

.mobile_navigation_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    border-top: 1px solid #eee;
}

.mobile_site_menuItem i {
    color: #111;
}

.mobile_menu_icon i {
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}
