.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.parsley-errors-list {
  margin-bottom: 0; }

body {
  font-family: var(--font-default); }

a {
  color: var(--color-primary); }

.footer {
  padding: 20px 0;
  border-bottom: 1px solid #eee; }
  .footer img {
    height: 40px; }
  .footer a {
    margin-right: 20px; }

.header {
  padding: 20px 0;
  border-bottom: 1px solid #eee; }
  .header img {
    height: 40px; }
  .header a {
    margin-right: 20px; }

.powered-by {
  --powered-by-copy-gap: 10px;
  --powered-by-park-offset: 42px;
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 90;
  padding: 0;
  font-size: 14px;
  text-align: left;
  transform: translateX(0);
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1); }
  .powered-by.is-scroll-parked:not(:hover):not(:focus-within) {
    transform: translateX(var(--powered-by-park-offset)); }
  .powered-by__link {
    display: inline-flex;
    min-height: 54px;
    padding: 7px 8px 7px 11px;
    align-items: center;
    gap: var(--powered-by-copy-gap);
    border: 1px solid rgba(35, 43, 38, 0.18);
    border-radius: 14px;
    background: #f7f5ef;
    color: #232b26;
    font-family: "Public Sans", Arial, sans-serif;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease; }
  .powered-by__link:hover {
    border-color: rgba(35, 43, 38, 0.32);
    background: #d5c5a3;
    color: #232b26;
    text-decoration: none; }
  .powered-by__link:focus-visible {
    outline: 2px solid #18382c;
    outline-offset: 4px; }
  .powered-by__mark {
    display: block;
    width: 36px;
    height: 36px;
    flex: 0 0 auto; }
  .powered-by__copy {
    display: inline-grid;
    min-width: 0;
    flex: 0 0 auto;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    transition: grid-template-columns 340ms cubic-bezier(0.16, 1, 0.3, 1); }
  .powered-by__label {
    display: block;
    overflow: hidden;
    min-width: 0;
    padding-right: var(--powered-by-copy-gap);
    color: inherit;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1;
    white-space: nowrap;
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transition: opacity 180ms ease, clip-path 340ms cubic-bezier(0.16, 1, 0.3, 1); }
  .powered-by.is-compact:not(:hover):not(:focus-within) .powered-by__copy {
    grid-template-columns: minmax(0, 0fr) auto; }
  .powered-by.is-compact:not(:hover):not(:focus-within) .powered-by__label {
    opacity: 0;
    clip-path: inset(0 100% 0 0); }
  .powered-by__free {
    display: inline-flex;
    min-height: 28px;
    padding: 0 10px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #18382c;
    color: #f7f5ef;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap; }
  @media (max-width: 480px) {
    .powered-by {
      --powered-by-copy-gap: 8px;
      --powered-by-park-offset: 34px;
      right: max(10px, env(safe-area-inset-right));
      bottom: max(10px, env(safe-area-inset-bottom)); }
      .powered-by__link {
        min-height: 50px;
        padding: 6px 7px 6px 9px;
      border-radius: 12px; }
      .powered-by__mark {
        width: 32px;
        height: 32px; }
      .powered-by__label {
        font-size: 0.74rem; }
      .powered-by__free {
        min-height: 26px;
        padding: 0 8px;
        font-size: 0.62rem; } }

@media (prefers-reduced-motion: reduce) {
  .powered-by {
    transition-duration: 1ms; }
  .powered-by__label {
    transition-duration: 1ms; }
  .powered-by__copy {
    transition-duration: 1ms; } }

.section, .section-sm, .section-lg {
  border-bottom: 1px solid #eee; }
