/* TOPBAR */
.sps-topbar {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	min-height: 64px;
	z-index: 9999;
	background-color: #0c7041;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.sps-topbar>nav {
	display: flex;
	align-items: center;
}

.sps-topbar>nav>a {
	font-weight: bold;
	color: #fff;
	text-decoration: none;
}

.sps-topbar>nav>a>i {
	margin-right: 20px;
	padding-right: 20px;
	border-right: 1px solid #0f8a51;
}

.sps-topbar>img {
	margin-top: 10px;
	margin-left: 5px;
}

.sps-topbar>aside {
	display: flex;
	align-items: center;
	margin-left: 20px;
	margin-right: 20px;
	padding-left: 20px;
	border-left: 1px solid #0f8a51;
}

.sps-topbar>aside>div {
	text-align: right;
	margin-right: 20px;
}

.sps-topbar>aside>div>strong {
	display: block;
	color: #fff;
}

.sps-topbar>aside>div>a {
	display: block;
	margin-top: 2px;
	font-size: 12px;
	color: #f6f6f6;;
	text-decoration: none;
}

.sps-topbar>aside>img {
	height: 32px;
	border-radius: 50%;
}

/* SIDEBAR */
.sps-sidebar {
	position: fixed;
	top: 50px;
	bottom: 0;
	left: 0;
	width: 210px;
	margin-left: -211px;
	z-index: 9998;
	transition: margin-left 0.5s;
	overflow-y: auto;
	background-color: #f2f2f2;
	border-right: 1px solid #eaeaea;
}

.sps-sidebar.is-toggled {
	margin-left: 0px;
}

@media ( min-width : 960px) {
	.sps-sidebar {
		margin-left: 0px;
	}
	.sps-sidebar.is-toggled {
		margin-left: -211px;
	}
}

/* CONTENT */
.sps-content {
	padding: 0 15px;
	margin-top: 50px;
	margin-bottom: 50px;
	transition: margin-left 0.5s;
}

@media ( min-width : 960px) {
	.sps-content {
		margin-left: 210px;
	}
	.sps-content.is-toggled {
		margin-left: 0;
	}
}

/*EXTERNO CONTENT */
.sps-content-externo {
	padding: 50px;
	margin-top: 25px;
}