/*2020 ISUZU */
.btn-hamburger {
  position: fixed;
  top: 17px;
  right: 15px;
  border: none;
  display: block;
  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;
}
