.ymi-flash-stack {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
}

.ymi-flash-message {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  background: #f8fafc;
  color: #344054;
  box-shadow: 0 1px 2px rgb(16 24 40 / 4%);
}

.ymi-flash-message p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
}

.ymi-flash-message-icon {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 2px;
  background: #667085;
}

.ymi-flash-message.is-success {
  border-color: #a9d8b8;
  background: #f0f9f3;
  color: #196c3a;
}

.ymi-flash-message.is-success .ymi-flash-message-icon {
  background: #23864b;
}

.ymi-flash-message.is-error {
  border-color: #efb2ad;
  background: #fff1f0;
  color: #a9251c;
}

.ymi-flash-message.is-error .ymi-flash-message-icon {
  background: #d92d20;
}

.ymi-flash-message.is-warning {
  border-color: #f2c88f;
  background: #fff8eb;
  color: #8a4b08;
}

.ymi-flash-message.is-warning .ymi-flash-message-icon {
  background: #dc7b13;
}

.ymi-flash-message.is-info {
  border-color: #a8c7f0;
  background: #f1f7ff;
  color: #184f90;
}

.ymi-flash-message.is-info .ymi-flash-message-icon {
  background: #2e75c7;
}

@media (max-width: 640px) {
  .ymi-flash-stack {
    margin-bottom: 12px;
  }

  .ymi-flash-message {
    padding: 10px 11px;
  }
}
