.Green {
  background-color: var(--success-color);
}

.Red {
  background-color: var(--error-color);
}

.Yellow {
  background-color: var(--warning-color);
}

.NotificationBar {
  font-weight: bold;
  color: white;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 30px;
  padding-left: 10px;
}

.NotificationBarWithX {
  font-weight: bold;
  color: white;
  min-height: 50px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 30px;
  padding-left: 10px;
}

.NotificationBar > span {
  padding-left: 5px;
}

.NotificationBarWithX > span {
  padding-left: 5px;
  margin-left: auto;
}

button {
  overflow: visible;
  border: 0;
  font: inherit;
  color: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer;
}

.XButton {
  margin-left: auto;
  padding: 0;
}

:global(.Notification-enter) {
  opacity: 0.01;
}

:global(.Notification-enter-active) {
  opacity: 1;
  transition: opacity 0.5s ease-in;
}

:global(.Notification-exit) {
  opacity: 1;
}

:global(.Notification-exit-active) {
  opacity: 0.01;
  transition: opacity 0.5s ease-in;
}
