@-webkit-keyframes alertfade {
  0% {
    opacity: 0;
    height: 0vh;
    display: none;
  }
  10% {
    opacity: 1;
    height: 10vh;
    display: block;
  }
  20% {
    opacity: 1;
    height: 10vh;
    display: block;
  }
  80% {
    opacity: 1;
    height: 10vh;
    display: block;
  }
  90% {
    opacity: 0;
    height: 10vh;
    display: block;
  }
  100% {
    opacity: 0;
    height: 0vh;
    display: none;
  }
}

@keyframes alertfade {
  0% {
    opacity: 0;
    height: 0vh;
    display: none;
  }
  10% {
    opacity: 1;
    height: 10vh;
    display: block;
  }
  20% {
    opacity: 1;
    height: 10vh;
    display: block;
  }
  80% {
    opacity: 1;
    height: 10vh;
    display: block;
  }
  90% {
    opacity: 0;
    height: 10vh;
    display: block;
  }
  100% {
    opacity: 0;
    height: 0vh;
    display: none;
  }
}

.alertmsg {
  z-index: 1;
  position: absolute;
  left: 30vw;
  right: 30vw;
  top: 100%;
  height: auto;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  border-radius: 5px;
  font-weight: bold;
  font-style: normal;
  text-align: top;
  -webkit-animation-name: alertfade;
          animation-name: alertfade;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-box-shadow: 3px 3px 10px #2b2827, -3px -3px 10px #2b2827;
          box-shadow: 3px 3px 10px #2b2827, -3px -3px 10px #2b2827;
}

#messages {
  -webkit-animation-name: alertfade;
          animation-name: alertfade;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.alertsuccess {
  background-color: white;
  color: green;
  margin: 10px;
}

.alerterror {
  background-color: white;
  color: #831414;
  margin: 10px;
}

.alertclose {
  z-index: 10;
  color: #b1b0b0;
  font-size: 28px;
  font-weight: bold;
  font-style: normal;
  margin-right: 10px;
  float: right;
}

.alertclose:hover,
.alertclose:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
/*# sourceMappingURL=main.css.map */