.sections-mainmenu {
	margin-bottom: 30px;
}
.sections-mainmenu ul {
	list-style: none;
	padding-left: unset;
	display: none;
	/*border-right: 8px solid #5762B2;*/
}
.sections-mainmenu ul.active {

}
.sections-mainmenu ul .item-selected a.parent~ul,
.sections-mainmenu ul a.root-item-selected~ul {
	display: block;
}
.sections-menu-container > ul {
	display: block;
	border-right: 0;
}
.sections-menu-container > ul > li {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 5px;
	text-transform: uppercase;
}
.sections-menu-container > ul > li > a {
	font-weight: 600;
	font-size: 18px;
	height: 77px;
	padding: 20px 30px;
}
.sections-menu-container ul li a.active {
	background-color: #71b9b2;
	color: white;
}
.sections-menu-container ul li a:hover {
	background-color: #71b9b2;
	color: white;
	text-decoration: none;
	opacity: 0.6;
}
.sections-mainmenu li {
	font-weight: 500;
	font-size: 16px;
}
.sections-mainmenu li a {
	font-size: 14px;
	background-color: #f3f3f8;
	color: #212529;
	width: 100%;
	height: 55px;
	display: flex;
	padding: 20px 30px;
	justify-content: space-between;
	align-items: center;
	transition: all 150ms ease-in-out 0ms;
	position: relative;
	text-decoration: none;
}
.sections-mainmenu li.item-selected > a,
.sections-mainmenu li a.root-item-selected {
	color: #5762B2;
}
.sections-mainmenu-angles {
	position: absolute;
	top: 50%;
	right: 0;
	width: 20px;
	height: 20px;
	line-height: 20px;
	cursor: pointer;
	transform: translateX(-50%) translateY(-50%);
}

.sections-mainmenu-angles:after,
.sections-mainmenu-angles:before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 5px;
	height: 1px;
	background-color: #212529;
	content: "";
	transition: all 250ms ease;
	transform-origin: center;
}

.sections-mainmenu-angles:before,
a.active .sections-mainmenu-angles:after {
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.sections-mainmenu-angles:after { margin-left: 3px; }

.sections-mainmenu-angles:after,
a.active .sections-mainmenu-angles:before {
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
a.active .sections-mainmenu-angles:before,
a.active .sections-mainmenu-angles:after {
	background: white;
}

