.movafagh-menu-button {
    position: relative;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 5px 0;
    border: 1px solid #fff;
    border-radius: 8px;
    background: transparent;
    float: right;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    z-index: 100001;
}
.movafagh-menu-button span {
    display: block;
    width: 25px;
    height: 4px;
    background: #fdfdfd;
    border-radius: 2px;
    transition: all .3s ease;
}
.movafagh-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease,
                visibility .3s ease;
    z-index: 100000;
}
.movafagh-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}
.movafagh-side-menu {
    position: fixed;
    touch-action: pan-y;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    top: 0;
    right: 100%;
    width: min(380px, 85vw);
    height: 100%;
    background: #fff;
    direction: ltr;
    z-index: 100002;
    overflow-y: auto;
    box-sizing: border-box;
    box-shadow: -8px 0 30px rgba(0, 0, 0, .18);
}
.movafagh-side-menu.is-active {
    right: 0;
}
.movafagh-menu-header {
    height: 55px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    direction: rtl;
    background: #2c3e50;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
    box-sizing: border-box;
}
.movafagh-menu-title {
    font: 20px Vazir, VazirFallback, Tahoma, Arial;
    font-weight: 500;
    color: #fdfdfd;
}
.movafagh-menu-title img {
    vertical-align: middle;
}
.movafagh-menu-close {
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 5px 0;
    border: 1px solid #fff;
    border-radius: 8px;
    background: transparent;
    color: #fdfdfd;
    font: 70px Vazir, VazirFallback, Tahoma, Arial;
    line-height: 40px;
    cursor: pointer;
}
.movafagh-menu-list {
    direction: rtl;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.movafagh-menu-list > li {
    position: relative;
    margin: 0;
    padding: 0;
}
.movafagh-menu-list a {
    display: block;
    position: relative;
    padding: 16px 20px;
    border-bottom: 1px solid #13275d;
    color: #222;
    background: #fff;
    text-decoration: none;
    font: 16px Vazir, VazirFallback, Tahoma, Arial;
    line-height: 1.5;
    transition: background .2s ease;
}
.movafagh-menu-list a:hover {
    background: #f5f5f5;
}
.movafagh-menu-list
.menu-item-has-children > a {
    padding-left: 55px;
}
.movafagh-menu-list
.menu-item-has-children > a::before {
    content: '\f0dd';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font: 18px 'FontAwesome';
    transition: transform .3s ease, color .3s ease;
}
.movafagh-menu-list
.menu-item-has-children.movafagh-submenu-open > a::before {
    transform: translateY(-50%) rotate(180deg);
     color: red;
}
.movafagh-menu-list .sub-menu {
    max-height: 0;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    background: #defbf9;
    transition: max-height .35s ease;
}
.movafagh-menu-list
.menu-item-has-children.movafagh-submenu-open > .sub-menu {
    max-height: 100%;
}
.movafagh-menu-list .sub-menu a {
    padding-right: 40px;
    padding-left: 20px;
    font: 13px Vazir, VazirFallback, Tahoma, Arial;
    color: #222;
    background: #defbf9;
}
.movafagh-menu-list .sub-menu a:hover {
    background: #defbf9;
}
.movafagh-menu-list
.sub-menu
.sub-menu a {
    padding-right: 60px;
    background: #f6f7db;
}
body.movafagh-menu-lock {
    overflow: hidden !important;
}

