/*-------------------------------------------*/

/* vk-menu-acc--common
/*-------------------------------------------*/

.vk-menu-acc {
	position: relative;
}

.vk-menu-acc .menu-parent > li {
	position: relative;
	z-index: 100;
}

.vk-menu-acc .menu-parent > li a {
	display: inline-block;
}

.vk-menu-acc li {
	position: relative;
}

.vk-menu-acc .acc-btn {
	position: absolute;
	right: 8px;
	top: 8px;
	width: 24px;
	height: 24px;
	border-radius: 2px;
	background-size: 24px 24px;
	cursor: pointer;
	z-index: 1000;
	transition: -webkit-transform 0.5s ease-out;
	transition: transform 0.5s ease-out;
	transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

.vk-menu-acc .acc-btn:before {
	position: relative;
	top: 5px;
	left: 4px;
	font-size: 16px;
	font-family: 'vektor_kado_icons';
	content: "\30";
}

.vk-menu-acc .acc-btn-close::before {
	content: "\2a";
}

.vk-menu-acc ul.sub-menu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-in;
	position: relative;
	z-index: 1;
	display: block;
}

.vk-menu-acc ul.sub-menu li a {
	display: block;
	overflow: hidden;
}

.vk-menu-acc ul.acc-child-open {
	transition: max-height 0.5s ease-in;
	max-height: 1000px;
}

.vk-menu-acc ul.acc-child-close {
	transition: max-height 0.5s ease-out;
	max-height: 0;
}

