.smenu .title {
    display: block;
    font-size: 14px;
    line-height: 16px;
    background-color: var(--white);
    align-items: center;
    font-weight: 600;
    padding: 16px;
}
.smenu ul {
    margin: 0;
    padding: 0;
}
.smenu ul li {
    display: block;
}
.smenu ul li a {
    position: relative;
    display: block;
    padding: 8px 16px;
    padding-right: 0;
    font-size: var(--body);
    /* font-weight: 600; */
    text-decoration: none;
    color: #2e2e2e;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.smenu ul li a .menu-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px 10px;
    /* border-left: 1px solid #eee; */
    /* background: #eee; */
}
.smenu ul li ul {
    display: none;
}
.smenu ul li ul li {
    font-weight: 400;
}
.smenu ul li ul.open {
    display: block;
}
.smenu ul li ul li a {
    color: #495d62;
    border-color: rgba(255, 255, 255, 0.1);
    font-weight: 400;
}
.smenu ul li ul li:hover > a,
.smenu ul li ul li.selected > a {
    /* background-color: #e6ebed; */
    color: var(--blue);
}
.smenu ul li ul li:hover > a:before,
.smenu ul li ul li.selected > a:before {
    margin-right: 10px;
}
.smenu ul li ul li.selected.selected--last > a {
    /* background-color: #94aab0; */
    color: var(--white);
}
.smenu ul li ul li.selected.selected--last > a:before {
    background-color: var(--white);
}

.smenu ul a {
    padding-left: 20px;
}

.smenu ul ul a {
    padding-left: 30px;
}

.smenu ul ul ul a {
    padding-left: 40px;
}

/*
.subMenuColor1 {
    background-color: #fbfcfc;
}

.subMenuColor2 {
    background-color: white;
}

.subMenuColor2 {
    background-color: white;
}

.subMenuColor2 {
    background-color: white;
}

.subMenuColor2 {
    background-color: white;
}

.subMenuColor2 {
    background-color: white;
}

.subMenuColor2 {
    background-color: white;
}

.subMenuColor2 {
    background-color: white;
}

.subMenuColor2 {
    background-color: white;
}

.subMenuColor2 {
    background-color: white;
} */
.menu-toggle em::before {
    font-size: 16px;
}
.icon-active::before {
    --fa: "\f078" !important;
}
.menu-toggle em {
    transform: rotate(0);
    transition: 0.3s;
}
.menu-toggle em.icon-active {
    transform: rotate(180deg);
    transition: 0.3s;
}
.menu-item-has-children.selected > a > .menu-toggle em::before,
.menu-item-has-children.selected > a > .menu-toggle em {
    color: var(--blue);
    /* background: red; */
}
.smenu ul {
    margin: 0 !important;
}
.smenu li a:hover {
    outline: 0 !important;
}
.smenu li a {
    border-bottom: 0 !important;
}
.smenu li {
    margin-bottom: 0 !important;
}
.desktop-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-300px);
    transition: 0.5s;
    background: var(--white);
    /* border-top: 1px solid #eee; */
    /* border-right: 1px solid #eee; */
    /* overflow-y: auto; */
}
body.admin-bar .desktop-menu {
    top: 32px;
}
.smenu {
    width: 350px;
    left: 0;
    top: 0;
    overflow-y: auto;
    height: 100vh;
	padding-bottom: 50px;

	scrollbar-gutter: stable;
}
.desktop-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: 0.5s;
}
.nh-hamburger {
    cursor: pointer;
}
/*
.nh-hamburger i {
    opacity: 0;
    visibility: hidden;
    font-size: 0;
    transition: 0.5s;
}

.nh-hamburger.active i {
    font-size: 44px;
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
}

.nh-hamburger img {
    width: 50px;
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
}

.nh-hamburger.active img {
    width: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
} */
.topbar a {
    border: none !important;
}
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 5px 10px;
    border-bottom: 1px solid #eee !important;
}
.topbar a,
.topbar img {
    display: block;
}
.topbar img {
    width: auto;
    height: 40px;
}
.close-menu {
    cursor: pointer;
}
.close-menu i {
    font-size: 36px;
    color: var(--blue);
}

.smenu > .header-btns {
    display: none;

    margin-top: 15px;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    body.admin-bar .desktop-menu {
        top: 46px;
    }

    .desktop-menu {
        width: 70%;
    }

    .smenu {
        width: 100%;
    }

    .smenu > .header-btns {
      display: flex;
      justify-content: flex-end;

      padding-left: 16px;
    }
}
