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: 1;
  will-change: unset;
  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: 8px;
  right: 15px;
  border: none;
  display: block;
  z-index: 1020;
  height: 30px;
  background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 69%);
  width: 50px;
  outline: 0;
}

.btn-hamburger .icon-bar {
		background: #f10000;
    height: 4px;
    width: 32px;
    margin: 0;
    position: absolute;
    left: 10px;
    transform: rotate(0deg);
    transition: .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: 19px;}
.btn-hamburger .icon-bar:nth-of-type(3) {top: 29px;}

.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: 29px; transform: rotate(-45deg);}
.btn-hamburger .menu-text{
  position: absolute;
  bottom: -20px;
  color: white;
  width: 100%;
  left: 0;
  text-align: center;
  font-size: 10px;
  opacity: 0;
}
.btn-hamburger.active .menu-text{
  opacity: 0;
}
BODY.home .btn-hamburger .menu-text {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.navbar-toggle {display: none;}
