.mobile-topbar {
    display: none;
    background: #3c3c5c;
    width: 100vw;
    height: 56px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11001;
    align-items: center;
    padding: 5px 15px;
}
.burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: #32324a;
    border-radius: 12px;
    border: none;
    padding: 0;
    box-shadow: 0 2px 8px rgba(44,44,44,0.10);
    cursor: pointer;
    z-index: 11002;
    transition: background 0.2s;
}
.burger-bar {
    width: 30px;
    height: 5px;
    margin: 2px 0;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.10);
    background: #fff;
    transition: 0.3s;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    height: auto;
    background: transparent;
    z-index: 11000;
    justify-content: center;
    align-items: flex-start;
    transition: opacity 0.3s;
}
.mobile-menu-panel {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    width: 100vw;
    max-width: none;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
}
.mobile-menu-panel::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background: #2d325a;
    position: absolute;
    left: 0;
    bottom: 0;
}
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu-list li {
    border-bottom: none;
}
.mobile-menu-list a {
    display: block;
    color: #222;
    font-size: 16px;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: bold;
    background: transparent;
    transition: background 0.2s, color 0.2s;
}
.mobile-menu-list a:active,
.mobile-menu-list a:focus,
.mobile-menu-list a.selected {
    background: #2d325a;
    color: #fff;
}
.mobile-menu-list a:hover {
    background: #2d325a;
    color: #fff;
}
.mobile-menu.active {
    display: flex;
}
.mobile-menu-list .sub-menu {
    position: static !important;
    display: none;
    width: 100%;
    background: #fff;
    padding: 0;
    border: none;
    box-shadow: none;
}
.mobile-menu-list .menu-item-has-children.open > .sub-menu {
    display: block;
}
.mobile-menu-list .sub-menu .menu-item a {
    color: #222;
    background: #f5f5f5;
    font-size: 15px;
    padding: 8px 8px;
    border-bottom: none !important;
}
.mobile-menu-list .sub-menu .menu-item a:hover,
.mobile-menu-list .sub-menu .menu-item a:focus {
    background: #2d325a;
    color: #fff;
}
.mobile-menu-list .menu-item-has-children > a:after {
    content: '\25BC';
    float: right;
    font-size: 14px;
    margin-left: 8px;
    transition: transform 0.2s;
}
.mobile-menu-list .menu-item-has-children.open > a:after {
    transform: rotate(180deg);
}

@media (min-width: 701px) {
    .mobile-menu {
        display: none !important;
    }
}
@media (max-width: 700px) {
    .mobile-topbar {
        display: flex;
    }
	.main-navigation {
        display: none !important;
    }
	.mobile-menu-list a {
		height: auto !important;
		min-height: 0 !important;
		line-height: 1.2;
	}
    .mobile-menu-list li,
    .mobile-menu-list .sub-menu .menu-item {
        border-bottom: none !important;
    }
    .mobile-menu-list a::after {
        display: none !important;
    }
}