.nn-sidebar-menu {
	margin: 20px 0 59px;
	position: relative;
}

.nn-sidebar-menu::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -30px;
	width: 100%;
	height: 1px;
	background-color: #dadada;
}

.nn-sidebar-menu__list {
	list-style: none;
	margin: 0;
	padding: 5px;
	background-color: #1e5190;
}

.nn-sidebar-menu__item {
	margin: 0;
	padding: 0;
}

.nn-sidebar-menu__item a {
	position: relative;
	overflow: hidden;
	display: block;
	padding: 10px 15px;
	color: #fff;
	font-family: "Open Sans", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.3;
	text-decoration: none;
	transition: background-color 0.25s ease-out, color 0.25s ease-out;
}

.nn-sidebar-menu__item a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -16px;
	width: 0;
	height: 0;
	margin-top: -6px;
	border-style: solid;
	border-width: 6px 0 6px 8px;
	border-color: transparent transparent transparent #1e5190;
	transition: right 0.25s ease-out;
}

.nn-sidebar-menu__item a:hover,
.nn-sidebar-menu__item a:focus,
.nn-sidebar-menu__item.is-current a {
	background-color: #fff;
	color: #1e5190;
}

.nn-sidebar-menu__item a:hover::after,
.nn-sidebar-menu__item a:focus::after,
.nn-sidebar-menu__item.is-current a::after {
	right: 10px;
}

@media (max-width: 1024px) {
	.nn-sidebar-menu__item a::after {
		display: none;
	}
}