.nbAlert {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
}
.nbAlert::before {
  width: 20px;
  height: 20px;
  content: "";
}
.nbAlert--danger {
  color: #f21400;
  background: #fceeed;
  border: 2px solid #f21400;
}
.nbAlert--danger::before {
  background-image: url("../images/alert-icon/danger-icon.svg");
}
.nbAlert--success {
  color: #2db270;
  background: #e7f7ef;
  border: 2px solid #2db270;
}
.nbAlert--success::before {
  background-image: url("../images/alert-icon/success-icon.svg");
}