.notification-message {
  margin: 12px 0;
  border-radius: 4px;
  padding: 12px 24px;
  background: rgba(49, 139, 113, 0.2);
  border: 2px solid #318b71;
  color: #318b71;
  cursor: pointer;
  transition: all 300ms ease;
}
.notification-message:hover {
  background: rgba(49, 139, 113, 0.3);
}
.notification-message .title {
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 3px;
  padding-top: 5px;
  color: #318b71;
  padding-bottom: 5px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}
.notification-message .message {
  font-size: 0.8em;
  text-transform: uppercase;
  color: #318b71;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}
.notification-message.error {
  background: rgba(139, 49, 67, 0.2);
  color: #8b3143;
  border-color: #8b3143;
}
.notification-message.error:hover {
  background: rgba(139, 49, 67, 0.3);
}
.notification-message.error .message, .notification-message.error .title {
  color: #8b3143;
}/*# sourceMappingURL=notifications.css.map */