.lds-spinner {
  z-index: 2000;
  position: fixed;
  top: 30%;
  right: 0;
  left: 0;
  margin: auto;
  color: official;
  display: inline-block;
  width: 80px;
  height: 80px;
}

.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #fff;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: grey;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  z-index: 1500;
}

.sideDrawer-header h2 {
  color: white;
}

.SideDrawer {
  position: fixed;
  width: 200px;
  max-width: 70%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 3000;
  background-color: #7386D5;
  color: white;
  padding: 32px 0;
  box-sizing: border-box;
  transition: transform 0.3s ease-out;
}

.SideDrawerItem {
  background: none;
  padding: 0;
  color: white;
  width: 100%;
  background-color: #6d7fcc;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: inherit;
  height: 50px;
  border: none;
}

.SideDrawerItem:hover, .SideDrawerItem:focus, .SideDrawerItem:focus:active {
  margin-top: 0;
  background-color: white;
  color: #7386D5;
  box-shadow: none;
}

.Open {
  transform: translateX(0);
}

.Close {
  transform: translateX(-100%);
}

.well {
  background-color: #f8f5f0;
}

.navbar {
  background-image: none;
  background-color: #232f3e;
  border-color: transparent;
}

.navbar-default .navbar-nav > li > a {
  color: #ccc;
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: inherit;
}

.navbar-default .navbar-toggle {
  border-color: transparent;
}

.navbar-toggle:hover, .navbar-toggle:active {
  border-color: white;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: inherit;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  background-color: #37475A;
  color: white;
}

.form-control:focus {
  border-color: orange;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(243,220,99,0.5);
}

.btn {
  background-color: inherit;
}

.btn:hover, .btn:focus, .btn:hover:focus {
  outline: none;
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
    -webkit-border-radius: 7px;
    border-radius: 7px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0px rgba(0,0,0,0);
    -webkit-border-radius: 7px;
    border-radius: 7px;
}

::-webkit-scrollbar-thumb {
    border-radius: 7px;
    background: #b9b9b9;
    height: 3px;
}

::-webkit-scrollbar-corner {
    display: none;
    height: 0px;
    width: 0px;
}
