#wholePage.toggled .header-wrapper {
  position: absolute;
}
#wholePage.toggled #sidebar-wrapper {
  width: 220px;
}
#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}
/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/
#sidebar-wrapper {
  z-index: 1000;
  left: 220px;
  width: 0;
  height: 100%;
  margin-left: -220px;
  overflow-y: auto;
  overflow-x: hidden;
  color: #ddd;
  background: #8c8484;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.sidebar-nav {
  position: absolute;
  top: 0;
  width: 220px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-nav li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 3px;
  background-color: #1c1c1c;
  -webkit-transition: width 0.2s ease-in;
  -moz-transition: width 0.2s ease-in;
  -ms-transition: width 0.2s ease-in;
  transition: width 0.2s ease-in;
}
.sidebar-nav li {
  position: relative;
  line-height: 20px;
  display: inline-block;
  width: 100%;
  border-bottom: solid 2px #b5afaf;
}
.sidebar-nav a {
  display: block;
  float: left;
  color: #ddd;
  text-decoration: none;
  padding: 10px 15px 10px 30px;
  width: 100%;
}
.sidebar-nav li a:hover,
.sidebar-nav li a.open:hover {
  color: #585858;
  text-decoration: none;
  background-color: #83a8ce;
}
.sidebar-nav li.brand {
  padding-left: 5px;
}
.sidebar-nav li.secondary:before {
  content: '';
  background: initial;
}
.sidebar-nav li.secondary a {
  margin-left: 10px;
  padding: 3px 15px 3px 15px;
  height: 27px;
}
.sidebar-nav li.secondary a:hover {
  text-decoration: underline;
  background-color: #8c8484;
  color: #fff;
}
.sidebar-nav .dropdown-menu {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: none;
  background-color: #222;
  box-shadow: none;
}
.sidebar-nav .grid-icons {
  float: right;
}
.sidebar-nav .grid-icons .fa-icon-item {
  padding-top: 2px;
  padding-left: 5px;
  padding-right: 5px;
}
/*---------------------*/
/*       Hamburger     */
/*---------------------*/
.navbar button.hamburger.is-closed {
  position: relative;
  float: left;
  top: 0px;
  z-index: 999;
  width: 42px;
  height: 34px;
  margin-left: 15px;
  background-color: transparent;
  border: solid thin #4cb6f8;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.navbar button.hamburger.is-open {
  margin-left: 229px;
  z-index: 9;
  background-color: transparent;
  -webkit-transition: margin-left 0.2s ease-in;
  -moz-transition: margin-left 0.2s ease-in;
  -ms-transition: margin-left 0.2s ease-in;
  transition: margin-left 0.2s ease-in;
}
@media screen and (min-width: 769px) {
  .navbar .hamburger {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .navbar .hamburger {
    display: block;
  }
}
/*---------------------*/
/*     Banner slide    */
/*---------------------*/
div.top-banner.is-closed img {
  margin-left: 0px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
div.top-banner.is-open img {
  margin-left: 229px;
  -webkit-transition: margin-left 0.2s ease-in;
  -moz-transition: margin-left 0.2s ease-in;
  -ms-transition: margin-left 0.2s ease-in;
  transition: margin-left 0.2s ease-in;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
/*-------------------------------*/
/*            Overlay            */
/*-------------------------------*/
.overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(250, 250, 250, 0.8);
  z-index: 1;
}
