/*!
 * Start Bootstrap - Simple Sidebar (https://startbootstrap.com/template-overviews/simple-sidebar)
 * Copyright 2013-2019 Start Bootstrap
 * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-simple-sidebar/blob/master/LICENSE)
 */
body {
  overflow-x: hidden;
  
}

#sidebar-wrapper {
  min-height: 100vh;
  margin-left: -15rem;
  -webkit-transition: margin .25s ease-out;
  -moz-transition: margin .25s ease-out;
  -o-transition: margin .25s ease-out;
  transition: margin .25s ease-out;
  background:#fff;
  box-shadow:5px 0px 15px rgba(100,100,200,.15);
}

#sidebar-wrapper .sidebar-heading {
	height:58px;
	font-size: 20.3pt;
	background:#0A1F2F;
	color:#fff;
	padding:5px 15px;
}

#sidebar-wrapper .list-group {
  width: 15rem;
}
#sidebar-wrapper a{
	margin:0;
	padding:15px;
	padding-left:30px;
	font-family: "Rajdhani", sans-serif;
	font-weight:600;	
	background:linear-gradient(0deg, #fff2f2, transparent);
	color:var(--color-secondary);
	border-bottom:1px solid #ffeded;
	position:relative;
	transition:all ease .3s;
}
#sidebar-wrapper a:before{
	content:"\ec33";
	font-family: boxicons !important;
	position:absolute;
	top:50%;
	left:10px;
	transform: translate(0px, -50%);
	transition:all ease .3s;
}
#sidebar-wrapper a:hover{
	color:#fff;
	background:var(--color-secondary);
	padding-left:35px;
}
#sidebar-wrapper a:hover:before{
	left:8px;
}
#sidebar-wrapper a.active{
	background:var(--color-secondary);
	color:#fff;
	border-bottom:none;
}
#page-content-wrapper {
  min-width: 100vw;
}

#wrapper.toggled #sidebar-wrapper {
  margin-left: 0;
  
}

@media (min-width: 768px) {
  #sidebar-wrapper {
    margin-left: 0;
  }

  #page-content-wrapper {
    min-width: 0;
    width: 100%;
  }

  #wrapper.toggled #sidebar-wrapper {
    margin-left: -15rem;
  }
}

.btn-primary {
	background-color:#f9ba6d;
	border-color: #f9ba6d;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 1px 15px;
  color:#000;
  margin-bottom: -1px;
  
   border: none;
}

.list-group-header {
  position: relative;
  display: block;
  padding: 10px 15px;
  color:#000;
  margin-bottom: -1px;
  
  border: none;
  font-size:15pt;
}


.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 3px 15px;
  
}

#navbarSupportedContent .nav-link {
	color:var(--color-theme) !important;
}

.vertical-line-green {
	border-left: 6px solid #4CAF50;
	padding:10px;
	background-color:#DDFFDD;
	width:100%;
	margin-top:10px;
	margin-bottom:10px;
}

.vertical-line-yellow {
	border-left: 6px solid #FAEBCC;
	padding:10px;
	background-color:#FCF8E3;
	width:100%;
	margin-top:10px;
	margin-bottom:10px;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.explaination {
	border-bottom: 1px dotted GREEN;
}

/* override bs4 tooltip*/
.tooltip-inner {
     max-width:1000px !important;
}