
body {
	height: 100%;
}

.center {
	display: flex;
	justify-content: center;
}

.navbarstyle {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card {
	background: #fff;
	top: 30;
	border-radius: 8px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.btn-click {
	float: right;
	margin-left: 0.2em;
}

.btn-fix {
	padding: 0;
	color: white;
	text-align: left;
}

@media (min-width: 991.98px) {
  main {
    padding-left: 350px;
	padding-right: 40px;
	padding-top: 125px;
  }
}

/* Sidebar */
.sidebar {
  position: fixed;
  margin-top: 5px;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 60px 0 0; /* Height of navbar */
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 5%), 0 2px 10px 0 rgb(0 0 0 / 5%);
  width: 300px;
  z-index: 600;
}

@media (max-width: 991.98px) {
  .sidebar {
    width: 100%;
  }
}

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: 0.5rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

.sidebar .active {
  border-radius: 5px;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}

.loaderbody{
	width:100%;
	height:100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:#000;
	opacity: 0.9;
	z-index: 10000;
}
.centered{
	width:400px;
	height:400px;
	position:fixed;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	background:#000;
	filter: blur(10px) contrast(20);
}
.blob-1,.blob-2{
	width:70px;
	height:70px;
	position:fixed;
	background:#fff;
	border-radius:50%;
	top:50%;left:50%;
	transform:translate(-50%,-50%);
}
.blob-1{
	left:20%;
	animation:osc-l 2.5s ease infinite;
}
.blob-2{
	left:80%;
	animation:osc-r 2.5s ease infinite;
	background:#0ff;
}
@keyframes osc-l{
	0%{left:20%;}
	50%{left:50%;}
	100%{left:20%;}
}
@keyframes osc-r{
	0%{left:80%;}
	50%{left:50%;}
	100%{left:80%;}
}