.notification {
  position: relative;
  padding: 1rem;
  padding-left: 3rem;
  font-size: 1rem;
  color: var(--title-button-text-color);
  background-color: var(--title-button-bg-color) !important;
}

.notification.error {
  box-shadow: 4px 4px 0 var(--highlight-color);
}

.notification.success {
  box-shadow: 4px 4px 0 var(--success-highlight-color);
}

.notification.information {
  box-shadow: 4px 4px 0 var(--primary-bg-color);
}

.notification:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  color: var(--title-button-text-color);
  font-family: 'Font Awesome 5 Free';
}

.notification.error:after {
  font-weight: 600;
  content: '\f071';
}

.notification.success:after {
  font-weight: 600;
  content: '\f00c';
}

.notification.information:after {
  font-weight: 600;
  content: '\f129';
}
