.underline {
  text-decoration: underline;
}

.full-width {
  width: 100%;
}

.no-margin-top {
  margin-top: 0 !important;
}

.alerts {
  display: none;
  margin-top: 104px;
}
@media (min-width: 1200px) {
  .alerts {
    margin-top: 0;
  }
}

.alert {
  display: flex;
  margin-bottom: 10px;
}
.alert.bg-color-white {
  color: #637140 !important;
}
@media (min-width: 0) and (max-width: 576px) {
  .alert {
    margin-bottom: -10px;
    margin-top: 10px;
  }
}
.alert .alert__icon {
  align-items: center;
  display: flex;
  flex: 0 1 5%;
  justify-content: flex-end;
  padding: 12px 0;
}
.alert .alert__icon img {
  width: 50px;
  height: 45px;
  display: block;
  margin: auto;
}
.alert .alert__content {
  display: flex;
  flex: 0 1 85%;
  justify-content: flex-start;
  align-items: center;
  letter-spacing: 0.035rem;
}
@media (min-width: 768px) {
  .alert .alert__content {
    flex: 0 1 93%;
  }
}
.alert .alert__content p {
  margin: 12px;
  text-align: left;
}
@media (min-width: 0) and (max-width: 576px) {
  .alert .alert__content p {
    font-size: 14px;
  }
}
.alert .alert__body {
  flex: 1 1 85%;
  text-align: left;
  padding: 1rem 0 1rem 1rem;
  line-height: 1.3em;
}
@media (min-width: 768px) {
  .alert .alert__body {
    display: flex;
    align-items: center;
    padding: 1rem;
    min-width: 85%;
  }
}
@media (min-width: 0) and (max-width: 576px) {
  .alert .alert__body {
    flex: 0 1 100%;
  }
  .alert .alert__body::before {
    display: none;
  }
}
.alert .alert__body__link {
  white-space: nowrap;
  border: 0;
}
.alert .alert__dismiss {
  padding: 10px 40px 0 0;
  cursor: pointer;
}
.alert .alert__dismiss svg {
  fill: #331934;
}
.alert .alert__dismiss:hover svg {
  fill: #fff;
}