@media screen and (min-width: 769px) {
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
    z-index: 1001;
	backdrop-filter: blur(4px);
}
.mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    max-width: 90%;
    height: 100vh;
    background: #fff;
    transform: translateX(-120%);
    transition: transform .35s ease;
    z-index: 1002;
    box-shadow: 4px 0 20px rgba(0,0,0,.15);
}
.mega-menu-close {
        position: fixed;
        top: 10px;
        left: calc(100% + 10px);
        background: #ffffffc7;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        font-size: 20px;
        line-height: 40px;
        text-align: center;
        padding: 0;
        cursor: pointer;
}
body.menu-open .menu-overlay {
    opacity: 1;
    visibility: visible;
}

body.menu-open .mega-menu {
    transform: translateX(0);
}
body.menu-open {
    overflow: hidden;
}

	
#mega-menu #mega-menu-wrap-top #mega-menu-top {
    width: 350px;
    height: 100vh;
	padding: 20px 0;
}
#mega-menu #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item {
    display: block;
    height: auto;
}
#mega-menu #mega-menu-wrap-top #mega-menu-top > li.mega-menu-item > a.mega-menu-link {
        line-height: normal;
        height: auto;
        padding: 10px 15px;
}
#mega-menu #mega-menu-wrap-top #mega-menu-top li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
        display: block;
        width: auto;
        position: absolute;
        left: auto;
        right: 0;
        top: calc(50% - 10px);
        padding: 0;
        margin: 0 6px 0 0;
        height: 20px;
        line-height: 20px;
        transform: rotate(-90deg);
}
#mega-menu #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu {
    position: fixed;
    width: 250px;
    top: 0;
    left: 350px;
    max-width: none;
    height: 100%;
}
#mega-menu #mega-menu-wrap-top #mega-menu-top > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    padding: 10px 15px;
    line-height: normal;
}
}
@media only screen and (max-width: 768px) {
#mega-menu #mega-menu-wrap-top {
    height: 100%;
	overflow: auto;
	background: #222;
}
#mega-menu #mega-menu-wrap-top .mega-menu-toggle + #mega-menu-top {
        height: auto;
        padding: 0 0 80px;
}
}