.mobile-menu-button {
	display: none;
	box-sizing: border-box;
	position: relative;
	background-color: #435265;
	transition: .3s;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	padding: 14px;
	width: 45px !important;
    height: 45px;
    line-height: 45px;
    margin: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
}
.mobile-menu-button.active {
	background-color: #073a7d;
}
.mobile-menu-button span {
	display: block;
	width: 17px;
    height: 3px;
	border-radius: 3px;
	background-color: #fff;
	transition: .3s;
}
#mobile-menu {
	background-color: #fff;
	color: #373941;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: -360px;
	width: 360px;
	height: 100%;
	z-index: 99999;
	transition: .3s;
	overflow: hidden;
}
#mobile-menu.active {
	box-shadow: 10px 0 20px -10px rgba(0,0,0,.6);
	left: 0;
}
#mobile-menu .widget_title {
    font-size: 18px;
}
.mobile-menu_close,
.mobile-menu-switch,
.widgets-mobile-menu .mobile-widgets-pos {
	padding-left: 20px;
	padding-right: 20px;
}
.mobile-menu_close {
    display: flex;
    height: 75px;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5em;
	position: relative;
	border-color: #ddd;
	border-style: solid;
	border-width: 0 0 1px;
	user-select: none;
}
.mobile-menu_close_button {
	width: 60px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    text-align: right;
    padding-right: 20px;
}
.mobile-menu_close_button .fa {
	transition: .3s;
}
.mobile-menu_close_button:hover .fa {
	transform: rotate(360deg);
}
.mobile-menu-switch {
    display: flex;
    justify-content: space-between;
	align-items: center;
	background-color: #f2f5f6;
	border-color: #ddd;
	border-style: solid;
	border-width: 0 0 1px;
	box-sizing: border-box;
	width: 100%;
    height: 50px;
	margin: 0 0 30px;
	text-shadow: 0 0 1px #fff;
	user-select: none;
}
.mobile-menu-switch.switch-to-left {
	margin-bottom: 0;
}
.mobile-menu-switch .fa-th-list,
.mobile-menu-switch .fa-bars {
    font-size: 2em;
    color: #b9b9b9;
}
.mobile-menu-switch .fa {
    width: 50px;
    height: 100%;
    line-height: 100%;
    height: 50px;
    display: flex;
	align-items: center;
}
.mobile-menu-switch .fa::before {
    width: 100%;
}
.mobile-menu-switch .fa-long-arrow-right::before,
.mobile-menu-switch .fa-bars::before {
	text-align: right;
}
.mobile-widgets {
    width: 200%;
	height: calc(100% - 75px);
	overflow: hidden;
	position: relative;
	left: 0;
	transition: .5s;
}
.mobile-widgets.active {
	left: -100%;
}
.mobile-widgets > div {
    width: 50%;
    float: left;
	height: 100%;
	overflow-Y: auto;
}
#mobile-menu .menu {
	margin: 0;
	padding: 0;
}
#mobile-menu .menu > li{
	list-style: none;
	margin: 0 0 10px;
	padding: 0;
}
#mobile-menu .menu > li > ul {
	margin-top: 10px;
}
#mobile-menu .menu > li:last-child {
	margin: 0;
}
#mobile-menu li a {
	text-decoration: none;
	display: block;
}
#mobile-menu li.active > a > .wrap{
	color: #18a4e1;
}
#mobile-menu .menu_vertical > ul > li .hitarea {
    right: 12px;
}
#mobile-menu .menu_vertical > ul > li > .item {
    background-position: 20px center;
    font-size: 14px;
	padding: 15px 45px;
}
#mobile-menu .widgets-mobile-menu .menu_vertical.treeview {
	margin: -30px -20px 0;
	width: calc(100% + 40px);
	border-bottom: 1px solid #ddd;
}
#mobile-menu .widgets-mobile-menu .menu_vertical.treeview li ul,
#mobile-menu .widgets-mobile-menu .menu_vertical.treeview li {
	margin: 0;
}
#mobile-menu .widgets-mobile-menu .menu_vertical.treeview .item > .wrap {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
#mobile-menu .widgets-mobile-menu .menu_vertical.treeview li ul li ul .item > .wrap::before {
    content: "--";
    margin-right: 5px;
}
@media screen and (max-width: 991px) {
	.mobile-menu-button {
		display: flex;
	}
	#widget_pos_top-menu {
		display: none;
	}
}
@media screen and (max-width: 359px) {
	#mobile-menu {
		left: -320px;
		width: 320px;
	}
}