.noscroll { overflow: hidden !important; }

.stackable_drawer {
	height: calc(100vh);
	width: calc(100vw - 200px);
	background-color: #fff;
	box-shadow: -10px 0px 10px 1px rgba(0, 0, 0, 0.25);
	transition: all .6s;
	overflow: hidden;
	position: fixed;
	top:0;
	right: 0;
}

[data-layout-mode="dark"] .stackable_drawer {
  background-color: #212529;
}

#stackable_drawer_overlay{
  position: fixed; /* Sit on top of the page content */
  display: hidden; /* Hidden by default */
  width: calc(100vw); /* Full width (cover the whole page) */
  height: calc(100vh); /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0); /* Black background with opacity */
  opacity: 0;
	transition: opacity 0.6s, visibility .6s;
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  /*cursor: pointer;  Add a pointer on hover */
}

#stackable_drawer_overlay.active{
	opacity: .25;
	display: visible;
}

.stackable_drawer .stackable_close {
  position: absolute;
  right: 9px;
  top: 6px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}

.stackable_drawer .stackable_close:hover {
  opacity: 1;
}



.stackable_drawer header{
	height: 52px;
	min-height: 52px;
  line-height: 52px;
  padding: 0 15px 0 15px;
  color: #fff;
  background-color: #0866c6;
}

[data-layout-mode="dark"] .stackable_drawer header {
  color: #ced4da;
  background-color: #132537;
}

.stackable_drawer header h5{
  line-height: 52px;
  color: #fff;
  min-height: 52px;
}

[data-layout-mode="dark"] .stackable_drawer header h5 {
  color: rgb(206, 212, 218);
}

.stackable_drawer main{
	padding: 15px;
  position: relative;
}

.stackable_drawer header .content{
	padding: 10px 15px 15px 60px;
	font-size: 24px;
	font-weight: bold;
}

.stackable_drawer.closed {
	/*width: 0;*/
    right: calc(100vw * -1);    
	box-shadow: none;
}


.stackable_drawer main{
	height: calc(100vh - 50px);
	overflow: auto;
  width: 100%;
}

.stackable_drawer .content{
	padding: 25px 0;
}

.OptionalButtons{
	padding: 7px;
}

.center {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wave {
  width: 5px;
  height: 100px;
  background: linear-gradient(45deg, #212529, rgb(160, 160, 160));
  margin: 10px;
  animation: wave 1s linear infinite;
  border-radius: 20px;
}
[data-layout-mode="dark"] .wave {
  background-color: #212529;
  background: linear-gradient(45deg, cyan, #fff);
}
.wave:nth-child(2) {
  animation-delay: 0.1s;
}
.wave:nth-child(3) {
  animation-delay: 0.2s;
}
.wave:nth-child(4) {
  animation-delay: 0.3s;
}
.wave:nth-child(5) {
  animation-delay: 0.4s;
}
.wave:nth-child(6) {
  animation-delay: 0.5s;
}
.wave:nth-child(7) {
  animation-delay: 0.6s;
}
.wave:nth-child(8) {
  animation-delay: 0.7s;
}
.wave:nth-child(9) {
  animation-delay: 0.8s;
}
.wave:nth-child(10) {
  animation-delay: 0.9s;
}

@keyframes wave {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}


/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
  
/*// Common styles*/
.stackable_drawer .btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

/* First: Styles for screens 600px or smaller */
@media (max-width: 560px) {
  .stackable_drawer {
    width: calc(100vw - 50px);
  }
}
/* When screen size is 400px or less */
@media (max-width: 400px) {
  .stackable_drawer {
    width: calc(100vw - 30px);
  }
}