:root {
	--sidebar-background: transparent;
	--sidebar-text-color: #333;
	--sidebar-background-hover: #25252540;
	--sidebar-text-color-hover: #333;
	--sidebar-text-color-active: #FFFFFF;
	--sidebar-logo-color: transparent;
	--sidebar-width: 280px;
}

#sidebar {
	min-width: var(--sidebar-width);
	max-width: var(--sidebar-width);
	height: 100vh;
	top: 0;
	left: 0;
	position: fixed;
	/* top layer */
	z-index: 9999;
	background-color: var(--sidebar-color);
	box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.3);
	overflow: auto;
	background-repeat: no-repeat;
	background-size: cover;
}

#sidebar ul.nav {
	min-height: 80%;
}

/* Toggling the sidebar header content, hide the big heading [h3] and showing the small heading [strong] and vice versa*/

#sidebar .sidebar-header strong {
	display: none;
}

#sidebar .logo {
	background-color: var(--sidebar-logo-color);
	margin: 20px;
	display: flex;
	justify-content: start;
	align-items: center;
}

#sidebar .logo img {
	max-height: 40px;
}

#sidebar ul li a {
	text-align: left;
	color: var(--sidebar-text-color);
	opacity: 0.95;
}

#sidebar .nav>li>a:hover,
.nav>li>a:focus {
	background-color: var(--sidebar-background-hover);
	color: var(--sidebar-text-color-hover);
}

#sidebar ul.nav>li {
	border-bottom: none;
	padding: 0;
}

#sidebar ul.nav>li a {
	padding: 10px 0;
	padding-left: 25px;
	display: flex;
	align-items: center;
}

#sidebar li>a>span {
	margin-right: 20px;
}

#sidebar li i.fa-angle-down, #sidebar li>a>.arrow-list {
	position: absolute;
	right: 30px;
	margin: 0;
}

#sidebar ul.nav>li.active>a {
	font-weight: bold;
	background-color: var(--sidebar-background-hover);
	border-left: 8px solid var(--primary);
	opacity: 1;
	padding-left: 17px;
}

#sidebar ul.nav>li.active .navbar-nav-submenu {
	background-color: var(--sidebar-background-hover);
}

#sidebar ul.navbar-nav-submenu>li a span {
	display: none;
}

#bootstrap-overrides #copyright {
	position: initial;
	margin-top: 5px;
}

#bootstrap-overrides #copyright a {
	color: #ccc;
	opacity: 0.4;
}

@media (max-width: 768px) {
	/* 80px and its content aligned to centre. Pushing it off the screen with the
       negative left margin
    */
	#sidebar.active {
		text-align: center;
		margin-left: 0 !important;
	}
	#bootstrap-overrides #content {
		margin-left: 0;
		width: 100%;
	}
	/*#bootstrap-overrides .modal-dialog {
        width: 100%;
        margin-left: 0;
    }*/
	/* Reappearing the sidebar on toggle button click */
	#sidebar {
		margin-left: calc(0px - var(--sidebar-width));
	}
	/* Toggling the sidebar header content,
       hide the big heading [h3] and showing the small heading [strong] and vice versa
    */
	#sidebar .sidebar-header strong {
		display: none;
	}
	#sidebar.active .sidebar-header h3 {
		display: none;
	}
	#sidebar.active .sidebar-header strong {
		display: block;
	}
}

/*scrollbar*/
