/* Side Navigation */

/* global */

body {
	background-color: #fff !important;
}

.page-content-body {
	padding: 1.5rem;
	min-height: 20rem;

}
@media(min-width: 768px) {
	.page-content-body-border {
		padding: 1.5rem;
		min-height: 20rem;
		border-left: 1px solid #acacac8a;
	}
	}

.pages-nav ul {
	margin: 0;
	padding: 1rem;
	font-size: 18px;
	list-style: none;
}

.pages-nav a {
	color: inherit;
	text-decoration: none;
	display: block;
	padding: 1rem 0;
}

.pages-nav li {
	position: relative;
	border-bottom: 1px solid #00b0be4d;
}

.pages-nav li:after {
	font-family: 'FontAwesome';
	content: '\f104';
	position: absolute;
	top: .75rem;
	left: 5px;
	color: #01aeff;
	font-size: 1.4rem;
}

.pages-nav li:last-child {
	border-bottom: 0;
}

.pages-nav li>span {
	display: block;
	position: relative;
	/*padding-right: 30px;*/
}

.pages-nav a:hover,
.pages-nav a:focus,
.pages-nav a.on {
	color: #000;
}

.pages-nav a.on {
	font-weight: bold;
}

/* sub levels */

.pages-nav li.on>ul {
	display: block;
}

.pages-nav li>ul {
	display: none;
	margin-right: 25px;
}

/* toggle menu button */

.pages-nav button {
	position: absolute;
	top: 0;
	right: 0;

	font-family: 'FontAwesome';
	font-style: normal;

	width: 25px;
	height: 100%;

	padding: 5px;
	background: none;
	border: 0;
	color: #56bcaf;

	display: none;
}

.pages-nav button:before {
	content: '\f053';
}

.pages-nav button.opened:before {
	content: '\f078';
}

.pages-nav button.no-sub-menu {
	font-size: 80%;
	padding-top: 2px;

	display: none;
}

.pages-nav button.no-sub-menu:before {
	content: '\f1db';
}

.pages-nav button.external-link:before {
	content: '\f08e';
}


/* Side Title */

aside {
	background: #fff;
	margin-top: 2rem;
	margin-bottom: 1.5rem;

}

.pages-nav-title {
	background: white;
	color: #00B0BE;
	font-weight: bold;
	font-size: 1.6rem;
	margin: 0;
	padding: .75rem;
	position: relative;
}


@media (max-width: 991px) {
	aside {
		display: none;
	}
}

