.alert_nopad {
}

.alert__wrapper {
  position: relative;
}
.alert {
  position: relative;
  background-color: var(--colorGrey);
  padding: 30px 0px;
}

.alert__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;

  @media (--screenMD) {
    flex-direction: row;
  }
}

.alert__icon {
  display: flex;
  margin-bottom: 20px;

  @media (--screenMD) {
    margin-bottom: 0;
    margin-right: 32px;
  }
}

.alert__content {
  margin-right: 24px;
}
.alert__content > *:first-child:not(h3) {
  margin-top: 0;
}

.alert__content > *:last-child {
  margin-bottom: 0;
}

.alert__close {
  position: absolute;
  right: 0;
  margin: 0;
  background: transparent !important;
  border: none;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  font-size: 0.875em;
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
}
