.adm__notify {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10001;
}
.adm__notify .alert {
  height: 0;
  line-height: 40px;
  position: relative;
  overflow: hidden;
  opacity: 0.5;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: height 0.4s ease-in-out, opacity 0.4s ease-in-out;
  font-family: sans-serif;
  font-size: 14px;
  text-align: center;
  color: white;
}
.adm__notify .alert::before {
  position: absolute;
  left: 10px;
  color: white;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
.adm__notify .alert.open {
  height: 40px;
  opacity: 1;
}
.adm__notify .alert.success {
  background-color: #4ce899;
}
.adm__notify .alert.success::before {
  content: "\f00c";
  top: -6px;
  font-size: 61px;
}
.adm__notify .alert.info {
  background-color: #52a5e4;
}
.adm__notify .alert.info::before {
  content: "\f075";
  top: -9px;
  font-size: 50px;
}
.adm__notify .alert.warning {
  background-color: #f9a63a;
}
.adm__notify .alert.warning::before {
  content: "\f071";
  top: -9px;
  font-size: 51px;
}
.adm__notify .alert.error {
  background-color: #e45252;
}
.adm__notify .alert.error::before {
  content: "\f165";
  top: -9px;
  font-size: 50px;
}
