.notifications {
  position: fixed;
  top: 50px;
  right: 15px;
  z-index: 99;
}
.notifications .notification {
  transition: opacity 0.3s, height 0.3s, padding-top 0.3s, padding-bottom 0.3s;
  margin-bottom: 4px;
  -webkit-box-shadow: -1px 1px 16px 0px rgba(0, 0, 0, 0.38);
  -moz-box-shadow: -1px 1px 16px 0px rgba(0, 0, 0, 0.38);
  box-shadow: -1px 1px 16px 0px rgba(0, 0, 0, 0.38);
  border-left: 3px solid #8ae2b6;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 6px;
  padding: 0 20px;
  height: 40px;
}
.notifications .notification.save {
  --border-color:#8ae2b6 ;
}
