.wm-menu {
	display: block;
}

.wm-menu .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}

.wm-menu .menu > .menu-item {
	position: relative;
}

.wm-menu .menu > .menu-item > a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	white-space: nowrap;
	transition: color .2s, background-color .2s;
}

.wm-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;

	display: none;
	min-width: 200px;
	flex-direction: column;
}

.wm-menu .menu-item.wm-menu-open > .sub-menu {
	display: flex;
}

.wm-menu .sub-menu .menu-item > a {
	display: block;
	text-decoration: none;
	white-space: nowrap;
	transition: color .2s, background-color .2s;
}

.wm-menu .wm-indicator {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	transition: transform .2s;
}

.wm-menu .menu-item.wm-menu-open > a .wm-indicator {
	transform: rotate(180deg);
}

.wm-menu .wm-indicator svg,
.wm-menu .wm-indicator i {
	width: 1em;
	height: 1em;
}

.wm-menu-empty {
	padding: 12px 16px;
	border: 1px dashed #c5c9d3;
	color: #72777c;
	font-size: 13px;
	text-align: center;
}
