

.menu-panel {
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100vh;
	background-color: rgba(0,0,0,0.5);
	z-index: 20;
	transition: 0.3s;
}
.menu-panel.hide {
	background-color: rgba(0,0,0,0);
}
@media(min-width: 1000px) {
	.menu-panel {
		display: block;
		position: absolute;
		width: 366px;
		padding: 0 0px;
		height: unset;
		overflow-y: unset;
		background-color: rgba(0,0,0,0);
		border-right: 1px solid #e8e8e8;
		min-height: 100%;
	}
}

.menu-panel > .panel {
	position: relative;
	width: 85%;
	left: 0;
	padding: 50px 30px 100px 30px;
	background-color: #fff;
	height: 100vh;
	transition: 0.3s;
	padding-bottom: 100px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
@media(min-width: 1000px) {
	.menu-panel > .panel {
		height: 100%;
		padding: 100px 50px 100px 50px;
		overflow-y: unset;
	}
}
.menu-panel.hide > .panel {
	left: -86vw;
}
@media(min-width: 1000px) {
	.menu-panel > .panel {
		width: 100%;
	}
	.menu-panel.hide > .panel {
		left: 0vw;
	}
}

#menu-brand {
	display: block;
	width: 180px;
	margin-bottom: 40px;
}

@media(min-width: 1000px) {
	#menu-brand {
		width: 220px;
		margin-bottom: 40px;
	}
}

.menu-panel .list {
	margin: 10px auto 50px auto;
}
@media(min-width: 1000px) {
	.menu-panel .list {
		
	}
}
.menu-panel .list .item {
	display: block;
	width: 100%;
	position: relative;
}
.menu-panel .list > .item .name {
	position: relative;
	display: block;
	padding: 12px 15px;
	/*border-bottom: 1px solid #eee;*/
	cursor: pointer;
	color: #000;
	font-size: 14pt;
	text-decoration: none;
	
}
.menu-panel .list > .item > .name {
	padding: 12px 0px;
}
@media(min-width: 1000px) {
	.menu-panel .list > .item .name {
		font-size: 12.5pt;
	}
}
.menu-panel .list > .item > .name {
	/*font-weight: bold;*/
}
.menu-panel .list > .item > .name:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	/*border-left: 5px solid #d21010;	*/
}
.menu-panel .list > .item .number {
	position: absolute;
	display: block;
	top: 12px;
	right: 0;
	font-size: 10pt;
	color: #aaa;
}
.menu-panel .list .item.opened > .name {
	
}
.menu-panel .list > .item .name.pressing {
	background-color: #f6f6f6;
}
.menu-panel .list > .item > .sublist {
	display: none;
	margin-bottom: 22px;
}
.menu-panel .list > .item > .sublist > .item > .name {
	padding-left: 25px;
	padding-top: 7px;
	padding-bottom: 7px;
	color: #888;
}
.menu-panel .list > .item > .name:after,
.menu-panel .list > .item > .sublist > .item > .name:after {
	position: absolute;
	content: "";
	top: 10px;
	right: 0px;
	width: 25px;
	height: 25px;
	background-image: url("/assets/img/main/icon-corner.svg");
	background-size: cover;
	transition: 0.2s;
	transform: rotate(0);
}
.menu-panel .list .item.no-arrow > .name:after {
	display: none;
}
.menu-panel .list > .item.opened > .name:after,
.menu-panel .list > .item.opened > .sublist > .item.opened > .name:after {
	transform: rotate(180deg);
}



.menu-panel .list > .item > .sublist > .item > .sublist {
	margin-bottom: 14px;
	display: none;
}
.menu-panel .list > .item > .sublist > .item > .sublist > .item {

}
.menu-panel .list > .item > .sublist > .item > .sublist > .item > .name {
	padding: 7px 25px;
	padding-left: 55px;
	font-weight: normal;
}
.menu-panel .list > .item .name:hover {
	text-decoration: underline;
}
.menu-panel .list > .item > .sublist > .item > .sublist > .item.active > .name {
	/*background-color: #faecec;*/
    /*color: #ab1616;*/
}



.menu-panel > .panel .text-hr {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 15px;
}


.menu-panel .account-menu {
	list-style: none;
}
.menu-panel .account-menu {
	padding-left: 0;
	font-size: 11pt;
}
.menu-panel .account-menu li a {
	display: block;
	padding: 3px 0;
	color: #000;
}
.menu-panel .account-menu li a:hover {
	text-decoration: underline;
	color: #000;
}