/*
    DEMO STYLE
*/
.table>tbody>tr>td.alone {
	padding-left: 0;
}

.navbar {
	/*padding: 15px 10px;*/
	/*background: #fff;*/
	border: none;
	border-radius: 0;
	margin-bottom: 0px;
	/*box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);*/
}

.navbar-btn {
	box-shadow: none;
	outline: none !important;
	border: none;
}

.line {
	width: 100%;
	height: 1px;
	border-bottom: 1px dashed #ddd;
	margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
.wrapper {
	display: flex;
	align-items: stretch;
	height: 94vh;
}

#sidebar {
	min-width: 250px;
	max-width: 250px;
	background: #ECF0F1;
	color: #000;
	transition: all 0.3s;
	overflow-y: auto;
	margin-left: -250px;
}

#sidebar.active {
	margin-left: 0px;
}

.sidebar-header {
	margin-top: 15px;
}

#wrap {
	margin-top: -20px;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
	padding: 20px;
	min-height: 100vh;
	transition: all 0.3s;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
	#sidebar {
		margin-left: -250px;
	}

	#sidebar.active {
		margin-left: 0;
	}

	#sidebarCollapse span {
		display: none;
	}
}