body {
  background-color: #333;
}
#sandwich {
  width: 30px;
  height: 26px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  cursor: pointer;
}
.sw-topper {
  position: relative;
  top: 0;
  width: 30px;
  height: 5px;
  background: #0d0b34;
  border: none;
  border-radius: 4px 4px 4px 4px;
  transition: transform 0.5s, top 0.2s;
/* transition-delay: 0.2s, 0s; */
}
.sw-bottom {
  position: relative;
  width: 30px;
  height: 5px;
  top: 5px;
  background: #0d0b34;
  border: none;
  border-radius: 4px 4px 4px 4px;
  transition: transform 0.5s, top 0.2s;
  transition-delay: 0.2s, 0s;
}
.sw-footer {
  position: relative;
  width: 30px;
  height: 5px;
  top: 10px;
  background: #0d0b34;
  border: none;
  border-radius: 4px 4px 4px 4px;
  transition: all 0.5s;
  transition-delay: 0.1s;
}
#sandwich.active .sw-topper {
  top: 10px;
  transform: rotate(140deg);
}
#sandwich.active .sw-bottom {
  top: 5px;
  transform: rotate(-140deg);
}
#sandwich.active .sw-footer {
  opacity: 0;
  top: 0;
  transform: rotate(180deg);
}