.burger-wrapper{
  display: table-cell;
  position: relative;
}

.burger
{
  margin-left: 15px;
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  width: 25px;
  height: 21px;
  display: flex !important;;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: none !important;
}

.burger a
{
  text-decoration: none;
  color: #232323;
  transition: color 0.3s ease;
}

.burger a:hover
{
  color: tomato;
}


.burger input
{
  display: block;
	position: absolute;
  width: 100%;
  height: 100%;
  left: px;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
.burger span
{
  display: block;
  width: 100%;
  height: 3px;
  background: #ff007f;
  border-radius: 3px;
  z-index: 1;`
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

.burger span.first
{
  transform-origin: 0% 0%;
}


.burger span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
.burger input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-5px, -8px);
}

/*
 * But let's hide the middle one.
 */
.burger input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
}

/*
 * Ohyeah and the last one should go the other direction
 */
.burger input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(-1px, 10px);
}

/*
 * And let's slide it in from the left
 */
.burger input:checked ~ ul
{
  transform: none;
}

@media (min-width: 768px) {
  .burger-wrapper{
    display: none;
  }
}