/* Mobile Menu */
.efi-mobile-menu:before {
    content: "";
    height: 100px;
    width: calc(100% - 8rem);
    display: block;
    margin: 1rem 4rem;
    box-sizing: border-box;
        background: url(../Userfiles/template/logo-white.svg) no-repeat center;
    background-size: 100% 70px;
}

.efi-mobile-menu {
    width: 80%;
    max-width: 400px;
    position: fixed;
    z-index: 9900;
    left: -100%;
    top: 0;
    display: block;
    transition: all ease 0.3s;
    height: 100vh;
}

/* Overlay layer */
.efi-mobile-menu::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--green);
  opacity: 0.5;
  z-index: -1;
}


body.efi-menu-open {
    overflow: hidden;
    position: absolute;
    width: 100%;
}

.efi-mobile-menu .default {
    display: none;
}

.efi-mobile-menu-inner {
    padding: 0 1rem;
    height: calc(100vh - 200px - 2rem);
    overflow: hidden;
    overflow: auto;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
    -webkit-overflow-scrolling: touch;
}

/* Larger than mobile */
@media (min-width: 400px) {
    .efi-mobile-menu-inner {
        padding: 0 2rem;
    }
}

.efi-mobile-menu-inner::-webkit-scrollbar-track {
    background-color: transparent;
}

.efi-mobile-menu-inner::-webkit-scrollbar {
    background-color: transparent;
}

.efi-mobile-menu-inner::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
}

body.efi-menu-open .efi-mobile-menu {
    left: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0px 0px 100px #000;
}

body.efi-menu-open .efi-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9800;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.efi-mobile-menu ul, .efi-mobile-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 0;
    position: relative;
}

.efi-mobile-menu .li98494 {
    display: none;
}

.efi-mobile-menu .efi-expanded + ul {
    display: block;
}

.efi-mobile-menu li a {
    text-decoration: none;
    width: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 50px;
    line-height: 1;
    padding: 1rem 2rem;
    color: #fff;
    transition: background ease 0.3s;
    box-sizing: border-box;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.efi-mobile-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.efi-mobile-menu li a.efi-expanded {
    background: #fff !important;
    color: #333;
}

.efi-menu-expand {
    display: flex;
    margin-left: auto;
    flex-shrink: 0;
    align-content: center;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    transition: color ease 0.3s;
    border-radius: 100rem;
    transition: background ease 0.3s;
}

.efi-menu-expand:after {
    font-family: "FontAwesome 5 Free";
    font-weight: 600;
    content: "\002B";
}

.efi-expanded .efi-menu-expand:after {
    content: "\2212";
}

.efi-menu-expand:hover {
    background: rgba(0, 0, 0, 0.4);
}

/* Level 1 */
.efi-mobile-menu > ul {
}

.efi-mobile-menu > ul > li > a {
}

/* Level 2 */
.efi-mobile-menu ul ul {
    display: none;
    background: rgba(0, 0, 0, 0.1);
}

.efi-mobile-menu ul ul > li > a {
}

/* Level 3 */
.efi-mobile-menu ul ul ul {
    display: none;
    background: rgba(0, 0, 0, 0.1);
}

.efi-mobile-menu ul ul ul > li > a {
}

/* Level 4 */
.efi-mobile-menu ul ul ul ul {
    display: none;
    background: rgba(0, 0, 0, 0.1);
}

.efi-mobile-menu ul ul ul ul > li > a {
}

.other-links {
    padding-top: 4rem;
}

.other-links a {
    text-decoration: none;
    display: block;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 90%;
    opacity: 0.8;
}

.other-links .phone-link {
    display: none;
}

.efi-mobile-phone {
    width: 100%;
    color: #fff;
    font-size: initial;
    letter-spacing: 1px;
    box-sizing: border-box;
    text-align: center;
}

.efi-mobile-phone:empty {
    display: none;
}

.efi-mobile-phone a {
    display: block;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
}

.efi-mobile-social {
    padding: 2rem 2rem;
    text-align: center;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.efi-mobile-social svg {
width: 3rem;
    height: 3rem;
}

.efi-mobile-social:empty {
    display: none;
}

.efi-mobile-social a {
    text-decoration: none;
    padding: 0 1rem;
    color: #fff;
}

.efi-mobile-social a:hover {
    color: rgba(255, 255, 255, 0.5);
}

