.hamburgler {
  width: 60px;
  height: 60px;
  display: block;
  transition: 0.3s ease all;
}
.hamburgler.no-hamburgler {
  transform: rotate(-45deg);
}

.bun, .meat {
    display: block;
    width: 100%;
    background: #fff;
    height: 17%;
    transition: 0.3s ease all;
    border-radius: 2px;
}

.no-hamburgler .top {
  height: 38%;
  width: 20%;
  margin-left: 40%;
  border-radius: 50px 50px 0 0;
}

.no-hamburgler .bottom {
  height: 38%;
  width: 20%;
  margin-left: 40%;
  border-radius: 0 0 50px 50px;
}

.meat {
    margin: 15% 0;
}

.no-hamburgler .meat {
  margin: 2% 0;
}