@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
/*  top: 0;
  left: 10;*/
  background-color: #f8f9fa;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 10px;
}
.sidebar a {
  padding: 8px 8px 8px 8px;
  text-decoration: none;
  font-size: 10px;
  color: blue;
  display: block;
  transition: 0.3s;
}
.sidebar a:hover {
  color: blue;
}
.sidebar .closebtn {
  position: absolute;
/*  top: 0;*/
	margin-top: -25px;
  right: 0px;
  font-size: 36px;
/*  margin-left: 50px;*/
}
.openbtn {
  font-weight: bold;
  cursor: pointer;
  background-color: white;
  color: blue;
  padding: 10px 15px;
  border: none;
}
.openbtn:hover {
  background-color: white;
}
#main {
  transition: margin-left .5s;
  padding: 16px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidebar {padding-top: 0px;}
  .sidebar a {font-size: 5px;}
}

.navbar {
	padding-left: 16px;
padding-top: 8px;
padding-bottom: 8px;
	border: none;
	border-radius: 0;
	margin-bottom: 0;
	box-shadow: none;
}

.bg-light {
	background-color: #999;
}

.btn-info {
	color: blue;
	background-color: #fff;
	border-color: #fff;
}

.btn-info.focus, .btn-info:focus {
	box-shadow: none;
}

.btn-info:hover {
	color: blue;
	background-color: #fff;
	border-color: #fff;
}

.btn {
	border: none;
	padding-left: 5px;
	padding-right: 5px;
	font-size: .9rem;
}

.btn.active, .btn:active {
	box-shadow: none;
	border: none;
	background-color:red;
}

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

/* ---------------------------------------------------
SIDEBAR STYLE
----------------------------------------------------- */

#sidebar .sidebar-text {
	padding-left: 10px;
	font-size: 2em;
	color: blue;
}

a[data-toggle="collapse"] {
	position: relative;
}

.dropdown-toggle::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}

/* ================================ Adjust position of text inside sidebar ================================= */
label {
	font-size: .85em;
	color: blue;
	margin-bottom: .125rem;
margin-left: 10px;
	cursor: pointer;
}
/* ---------------------------------------------------
CONTENT STYLE
----------------------------------------------------- */

#content {
	width: calc(100% - 270px);	
	min-height: 100vh;
	transition: all 0.3s;
	position: absolute;
	top: 0;
	right: 0;
}

#content.active {
	width: 100%;
}

/* ---------------------------------------------------
MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
	#sidebar {
		margin-left: -270px;
	}
	#sidebar.active {
		margin-left: 0;
	}
	#content {
		width: 100%;
	}
	#content.active {
		width: calc(100% - 270px);
	}
	#sidebarCollapse span {
		display: none;
	}
}
