.alert {
  color: #15181b;
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: normal;
  border-width: 0.125rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .alert {
    font-size: calc(14px + 2 * ((100vw - 768px) / 632));
  }
}
@media (min-width: 1400px) {
  .alert {
    font-size: 16px;
    line-height: 1.6;
  }
}
.alert > :not(a, .material-symbols-outlined, pre) {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}
.alert > * {
  display: inline-flex;
  flex: 1;
  justify-content: center;
}
.alert > *:last-child {
  margin: 0;
}
.alert span.icon {
  align-items: center;
  border-radius: 0.25rem;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  height: 1.5rem;
  font-size: 1rem;
  margin-right: 0.5rem;
  width: 1.5rem;
}
.alert-success {
  border-color: #2c9456;
}
.alert-success span.icon {
  background-color: #2c9456;
}
.alert-danger {
  border-color: #e61a38;
}
.alert-danger span.icon {
  background-color: #e61a38;
}
.alert-warning {
  border-color: #ea7036;
}
.alert-warning span.icon {
  background-color: #ea7036;
}
.alert-info {
  border-color: #1b97c8;
}
.alert-info span.icon {
  background-color: #1b97c8;
}
.alert pre {
  text-align: left;
}

#lts-status-alerts #lts-alerts {
  background: #fff6da !important;
  font-size: 1em !important;
  text-align: center;
}