.alert-box {
  display: flex;
  justify-content: center;
  margin: 0 0 1.25rem 0;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  align-items: flex-start;
  gap: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px 0 rgba(0, 0, 0, 0.04);
  border: 0.094rem solid #e0e4e7;
  border-radius: 0.5rem;
  background: white;
}
.alert-box__state-icon {
  display: flex;
  flex-direction: column;
  width: 2.5rem;
  justify-items: start;
}
.alert-box__state-icon i {
  font-size: 1.5rem;
}
.alert-box__state-icon--info i {
  color: #005089;
}
.alert-box__state-icon--success i {
  color: #037927;
}
.alert-box__state-icon--warning i {
  color: #f2952f;
}
.alert-box__state-icon--error i {
  color: #a41a04;
}
.alert-box__close-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 20px;
  width: 20px;
}
.alert-box__close-icon i {
  font-size: 1.5rem;
  color: #283135;
}
.alert-box__close-icon:hover {
  border-radius: 0.375rem;
  border: 0 solid #fff;
  background: rgba(217, 217, 217, 0.4);
  /* stylelint-disable-next-line number-max-precision */
  backdrop-filter: blur(5.6999998093px);
}
.alert-box--success {
  background: #e6f2e9;
  border: 0.094rem solid #359452;
}
.alert-box--info {
  background: #e6eef3;
  border: 0.094rem solid #00406e;
}
.alert-box--warning {
  background: #fef4ea;
  border: 0.094rem solid #c27726;
}
.alert-box--error {
  background: #f6e8e6;
  border: 0.094rem solid #831503;
}
.alert-box__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.125rem;
  align-self: stretch;
  width: 100%;
}
.alert-box__content__heading {
  color: #283135;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}
.alert-box__content__text {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}