/* Last update: 2025-07-07T03:28:40+00:00 */

.wa-error-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-m);
}
.wa-error-page-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-xs);
}
.wa-error-page-content {
  margin-top: var(--space-l);
}
.wa-error-page-content__body {
  display: flex;
  padding: var(--space-l);
  background-color: var(--primary-ultra-light);
  justify-content: flex-start;
  flex-direction: column;
  gap: var(--space-m);
}
.wa-error-page-content__heading {
  font-size: var(--text-xl);
}
.wa-error-page-content__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-xs);
  width: 100%;
}
.wa-error-page-content__icon {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
}
.wa-error-page-content__icon path {
  stroke: var(--primary);
}
.wa-error-page__heading {
  font-size: calc(var(--text-xxl) * 1.2);
  text-align: center;
}
.wa-error-page__subheading {
  font-size: var(--text-l);
  color: var(--base-medium);
  font-weight: 500;
  text-align: center;
}
.wa-error-page__icon {
  transition: 0.2s all ease-in-out;
  height: 12rem;
}
.wa-error-page__number {
  font-size: calc(var(--text-xxl) * 1.2);
  line-height: 0.8;
  font-weight: 700;
  color: var(--primary);
}
@media (max-width: 767px) {
  .wa-error-page__heading {
    font-size: var(--text-xxl);
  }
  .wa-error-page__number {
    font-size: calc(var(--text-xxl));
  }
  .wa-error-page__icon {
    height: 6rem;
  }
}
