/* Notify */

.app-notify {
  position: fixed;
  display: none;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: none;
  background: #78c479;
  padding: .75em 1em;
  color: #fff;
  font-size: 1.125rem;
  cursor: pointer;
  z-index: 5000;
  opacity: 1;
}

.app-notify::before, .app-notify::after {
  content: '';
  position: absolute;
  right: 1em;
  top: calc(50% - 0.75em);
  background: currentcolor;
  width: 1.5px;
  height: 1.5em;
  cursor: pointer;
}

.app-notify::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.app-notify::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}