.global-message {
  width: 320px;
  background: #212529;
  border-radius: 8px;
  border: 1px solid #424549;
  position: fixed;
  top: 20%;
  right: 100px;
  overflow: hidden;
  z-index: 99999;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s, visibility 0.5s;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.global-message.hidden {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
}
.global-message.success .message-header .brand i {
  color: var(--success);
}
.global-message.success .message-body .line {
  background: var(--success);
}
.global-message.error .message-header .brand i {
  color: var(--danger);
}
.global-message.error .message-body .line {
  background: var(--danger);
}
.global-message .message-header {
  border-bottom: 1px solid #424549;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
}
.global-message .message-header .brand {
  display: flex;
  align-items: center;
  gap: 5px;
}
.global-message .message-header .brand i {
  font-size: 18px;
}
.global-message .message-header .brand strong {
  font-size: 10px;
  color: var(--white);
  padding-top: 3px;
}
.global-message .message-header button {
  color: var(--white);
}
.global-message .message-body {
  padding: 10px;
  font-size: 12px;
  color: var(--white);
  position: relative;
}
.global-message .message-body .line {
  position: absolute;
  height: 4px;
  bottom: 0;
  left: 0;
  width: 100%;
  animation: moveLine 5s linear forwards;
}

@keyframes moveLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .global-message {
    right: 3%;
    width: 94%;
    max-width: 320px;
  }
}/*# sourceMappingURL=notifications.css.map */