
.elementor-template-full-width button.mobile-menu-open {
    color: #fff;
}
.header--solid button.mobile-menu-open,
button.mobile-menu-open {
    position: relative;
    background: transparent !important;
    border: none;
    cursor: pointer;
    color: var(--color-site);
    padding: 0 5px;
}
.mobile-menu-toggle-holder {
    display: none;
}
@media (max-width: 850px) {
    .mobile-menu-toggle-holder {
        display: block;
    }
}
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 9;
}
body.mobile-menu-is-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 80%;
    max-width: 420px;
    background: var(--bg-site);
    color:  var(--color-site);
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    z-index: 9999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
body.mobile-menu-is-open .mobile-menu-panel {
    transform: translateX(0);
}

/* Header panel */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px 20px 20px;
    border-bottom: 1px solid #262626;
    flex-shrink: 0;
}
.mobile-menu-logo img {
    max-height: 36px;
    width: auto;
}
button.mobile-menu-close {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    color: var(--color-site);
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu-close svg {
    width: 22px;
    height: 22px;
}

.mobile-menu-panel > ul,
.mobile-menu-panel > .menu {
    list-style: none;
    margin: 0;
    padding: 10px 20px;
}

.mobile-menu-panel > ul > li,
.mobile-menu-panel > .menu > li {
    position: relative;
    /* border-bottom: 1px solid #e5e5e5; */
}
.mobile-menu-panel > ul > li > a,
.mobile-menu-panel > .menu > li > a {
    display: block;
    padding: 10px 0px 10px 0px;
    color: var(--color-site);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color .2s ease;
}

.submenu-toggle {
    position: absolute;
    right: 0px;
    top: 0;
    width: 44px;
    background: transparent !important;
    border: none;
    cursor: pointer;
    color: var(--color-site);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0;
    height: 45px;
    padding: 0px !important;
}
.submenu-toggle i {
    font-size: 13px;
    transition: transform .25s ease;
    pointer-events: none;
}
li.is-open > .submenu-toggle i {
    transform: rotate(180deg);
}

.mobile-menu-panel .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    background: rgb(17, 17, 17);
    padding: 0;
    margin: 0;
    list-style: none;;
    border-radius: 10px
}
li.is-open > .sub-menu {
    max-height: 600px;
}

.mobile-menu-panel .sub-menu li {
 border-bottom: 1px solid rgb(33, 33, 33);;
}
.mobile-menu-panel .sub-menu li:last-child {
    border-bottom: none;
}
.mobile-menu-panel .sub-menu a {
    display: block;
    padding: 10px 20px 10px 15px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
}

body.mobile-menu-is-open {
    overflow: hidden;
}