.notifyjs-mse-success-base,
.notifyjs-mse-error-base {
  font-family: 'Poppins', sans-serif;
  position: relative;
  background-color: #fff;
  max-width: 540px;
  padding: 20px;
  padding-left: 30px;
  border-radius: 6px;
  -webkit-box-shadow: 0 1px 4px 0 rgb(95 108 164 / 20%);
  -moz-box-shadow: 0 1px 4px 0 rgb(95 108 164 / 20%);
  box-shadow: 0 1px 4px 0 rgb(95 108 164 / 20%);
  overflow: hidden;
}
.notifyjs-mse-success-base:before,
.notifyjs-mse-error-base:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
}
.notifyjs-mse-success-base .material-icons,
.notifyjs-mse-error-base .material-icons {
  margin-right: 10px;
}
.notifyjs-mse-success-base p,
.notifyjs-mse-error-base p {
  font-size: 16px;
  margin-bottom: 0;
}
.notifyjs-mse-success-base:before {
  background-color: #00bab3;
}
.notifyjs-mse-error-base:before {
  background-color: #ba0000;
}
.notifyjs-mse-success-base .material-icons {
  color: #00bab3;
}
.notifyjs-mse-error-base .material-icons {
  color: #ba0000;
}