aside.menu {
  width: 360px;
  height: 100vh;
  position: fixed;
  background-color: #34495E;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-weight: lighter;
  color: #FFF;
  -webkit-box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

aside.menu nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 300px;
}

aside.menu nav ul {
  height: 60px;
  line-height: 60px;
}

aside.menu nav ul .menu-element {
  position: absolute;
  display: block;
  width: 250px;
  height: 60px;
  right: -10px;
  color: #FFF;
  cursor: pointer;
}

aside.menu nav ul .menu-element h2 {
  position: absolute;
  right: 0;
  text-align: right;
  padding-right: 30px;
  font-size: 36px;
  z-index: 12;
}

aside.menu .title-bar {
  right: -10px;
  position: absolute;
  top: 60px;
  width: calc(100% - 60px + 10px);
  height: 120px;
  display: block;
  background-color: #DF4949;
  text-align: center;
  color: #FFF;
}

aside.menu .title-bar .title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  font-size: 80px;
}

aside.menu .label {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 11;
}

aside.menu .label-red {
  background-color: #DF4949;
}

aside.menu .label-yellow {
  background-color: #EFC94C;
  -webkit-animation: animation-label-come 0.25s ease-in;
          animation: animation-label-come 0.25s ease-in;
}

aside.menu .disable .label-yellow {
  -webkit-animation: animation-label-left 0.25s ease-in;
          animation: animation-label-left 0.25s ease-in;
  width: 0%;
}

aside.menu .init-label .label-yellow {
  -webkit-animation: none;
          animation: none;
}

aside.menu .init-label .disable .label-yellow {
  -webkit-animation: none;
          animation: none;
}

aside.menu .label-triangle {
  position: absolute;
  right: 0px;
  bottom: -10px;
  border-style: solid;
  border-width: 10px 10px 0px 0px;
  -webkit-filter: drop-shadow(0px 4px 4px black);
          filter: drop-shadow(0px 4px 4px black);
  z-index: 9;
}

aside.menu .label-triangle-red {
  border-color: #DF4949 transparent transparent transparent;
}

aside.menu .label-triangle-yellow {
  border-color: #EFC94C transparent transparent transparent;
}

aside.menu .disable .label-triangle-yellow {
  border-color: transparent;
}

@-webkit-keyframes animation-label-left {
  0% {
    width: 100%;
    right: 0%;
  }
  100% {
    width: 0%;
    right: -100%;
  }
}

@keyframes animation-label-left {
  0% {
    width: 100%;
    right: 0%;
  }
  100% {
    width: 0%;
    right: -100%;
  }
}

@-webkit-keyframes animation-label-come {
  0% {
    width: 0%;
    right: -100%;
  }
  100% {
    width: 100%;
    right: 0%;
  }
}

@keyframes animation-label-come {
  0% {
    width: 0%;
    right: -100%;
  }
  100% {
    width: 100%;
    right: 0%;
  }
}
/*# sourceMappingURL=menu.css.map */