.alerts {
  position: fixed;
  top: 0;
  width: 100%;
  transform: translateY(-100%);
  transition: all 500ms ease-out;
  opacity: 0;
  z-index: 999999;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.alerts.show {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 1000ms;
}

.alerts a.close {
  float:right;
  text-decoration: none;
}

.alert {
  margin-bottom: 0 !important;  
  border-radius: 0 !important;
  text-align: center;
}
