html.theBurgerIsActive {
  overflow: hidden;
}
#wrapper {
  transition: transform .5s;
  /* transform: translateX(0%); */
}
#theBurgerDrawerClose {
  position: absolute;
  top: 30px;
  right: 15px;
  padding: 1rem;
  font-size: 33px;
  cursor: pointer;
  z-index: 999999;
  color: #00165F;
}

/*RIGHT*/
/*============*/
/*not full width*/
/*============*/
#wrapper.theBurgerIsActive.drawer--notfull.right--direction {
  transform: translateX(-80%);
}

#theBurgerDrawer.drawer--notfull.right--direction {
  height: 100%;
  width: 80vw;
  position: fixed;
  right: 0;
  transition: transform .5s;
  transform: translateX(100%);
  z-index: 99999;
  overflow-x: hidden;
  overflow-y: scroll;
}

#theBurgerDrawer.theBurgerIsActive.drawer--notfull.right--direction {
  transform: translateX(0%);
}

/*============*/
/*full width*/
/*============*/
#wrapper.theBurgerIsActive.drawer--full.right--direction {
  transform: translateX(-100%);
}

#theBurgerDrawer.drawer--full.right--direction {
  height: 100%;
  width: 100vw;
  position: fixed;
  right: 0;
  transition: transform .5s;
  transform: translateX(100%);
  z-index: 99999;
  overflow-x: hidden;
  overflow-y: scroll;
}

#theBurgerDrawer.theBurgerIsActive.drawer--full.right--direction {
  transform: translateX(0%);
}

/*LEFT*/
/*============*/
/*not full width*/
/*============*/
#wrapper.theBurgerIsActive.drawer--notfull.left--direction {
  transform: translateX(80%);
}

#theBurgerDrawer.drawer--notfull.left--direction {
  height: 100%;
  width: 80vw;
  position: fixed;
  left: 0;
  transition: transform .5s;
  transform: translateX(-100%);
  z-index: 99999;
  overflow-x: hidden;
  overflow-y: scroll;
}

#theBurgerDrawer.theBurgerIsActive.drawer--notfull.left--direction {
  transform: translateX(0%);
}

/*============*/
/*full width*/
/*============*/
#wrapper.theBurgerIsActive.drawer--full.left--direction {
  transform: translateX(100%);
}

#theBurgerDrawer.drawer--full.left--direction {
  height: 100%;
  width: 100vw;
  position: fixed;
  left: 0;
  transition: transform .5s;
  transform: translateX(-100%);
  z-index: 99999;
  overflow-x: hidden;
  overflow-y: scroll;
}

#theBurgerDrawer.theBurgerIsActive.drawer--full.left--direction {
  transform: translateX(0%);
}