body {
  width: 100%;
  height: 100%;
}

.slideout-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 256px;
  min-height: 100vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 0;
  display: none;
}

.slideout-menu-left {
  left: 0;
}

.slideout-menu-right {
  right: 0;
}

.slideout-panel {
  position: relative;
  z-index: 1050;
  will-change: transform;
  background-color: #fff;
  /* A background-color is required */
  min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden;
}

.slideout-open .slideout-menu {
  display: block;
}

/*2020 ISUZU */
.btn-hamburger {
  position: fixed;
  top: 13px;
  right: 15px;
  border: none;
  display: none;
  z-index: 1051;
  height: 40px;
  width: 45px;
  background: transparent;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0) 69%
  );
}

.btn-hamburger .icon-bar {
  background: white;
  height: 3px;
  width: 24px;
  margin: 0;
  position: absolute;
  left: 10px;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  transform-origin: left center;
}

.btn-hamburger .icon-bar:nth-of-type(1) {
  top: 9px;
}

.btn-hamburger .icon-bar:nth-of-type(2) {
  top: 17px;
}

.btn-hamburger .icon-bar:nth-of-type(3) {
  top: 25px;
}

.btn-hamburger.active .icon-bar {
  background: black;
}

.btn-hamburger.active .icon-bar:nth-of-type(1) {
  top: 7px;
  transform: rotate(45deg);
}

.btn-hamburger.active .icon-bar:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.btn-hamburger.active .icon-bar:nth-of-type(3) {
  top: 24px;
  transform: rotate(-45deg);
}

.navbar-toggle {
  display: none;
}

@media (max-width: 992px) {
  .btn-hamburger {
    display: block;
  }
}
