#toggleDrawer {
  min-width: 26px;
  text-align: left;
}

#currentContext {
  margin-left: 20px;
  flex-shrink: 0;
}

.toolbar {
  position:absolute;
  top:0;
  left:0;
  height: 4.5rem;
  display: none;
  justify-content: space-between;
  width: 100%;
  color: white;
  box-sizing: border-box;
  background-color: mediumaquamarine;
  padding: 24px;
  margin: 0px;
  z-index: 5;
  font-size: 1rem;
  line-height: 1;
}

.toolbar .toggle:hover {
  cursor: pointer;
}
.toolbar .toggle:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  left: 15px;
  top: 15px;
  opacity: 1;
  border-radius: 100%;
  background-color: #fff;
  display: block;
}
.toggle.anim:after {
  transition: all 400ms cubic-bezier(0, 0.7, 0.5, 1);
  width: 70px;
  height: 70px;
  left: 16px;
  top: 2px;
  opacity: 0;
}

.arrow,
.menu {
  color: white;
  transition: opacity .3s ease, -webkit-transform .5s ease;
  transition: opacity .3s ease, transform .5s ease;
  transition: opacity .3s ease, transform .5s ease, -webkit-transform .5s ease;
  opacity: 1;
  position: absolute;
}
.arrow.out,
.menu.out {
  opacity: 0;
  transition: opacity .3s ease, -webkit-transform .5s ease;
  transition: opacity .3s ease, transform .5s ease;
  transition: opacity .3s ease, transform .5s ease, -webkit-transform .5s ease;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.primary-icons {
  margin-right: calc(-100% + 3em);
}

.hide-icons {
  transition: all .5s ease;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}