@charset "UTF-8";
@import '../fonts/stylesheet.css';
@keyframes link-underline {
  0% {
    background-size: 100% var(--al-underline-thickness);
    background-position-x: 100%;
  }
  50% {
    background-size: 0% var(--al-underline-thickness);
    background-position-x: 100%;
  }
  51% {
    background-position-x: 0;
  }
  100% {
    background-size: 100% var(--al-underline-thickness);
    background-position-x: 0;
  }
}
[class^=artlogic-social-icon] {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/**
 * Mixin: reduce-motion
 *
 * This mixin applies reduced motion styles based on the user's preference for reduced motion.
 * It allows you to easily implement reduced motion effects in your CSS.
 *
 * @param {Boolean} [$important=true] - Determines whether the reduced motion styles are marked as important using the `if-important` function.
 *
 * @usage
 *  @include reduce-motion() {
 *    // Additional styles for reduced motion
 *    // ...
 *  }
 *
 * @example
 *  @keyframes fadeIn {
 *    // Keyframes for fade-in animation
 *    // ...
 *  }
 *
 *  .element {
 *    animation: fadeIn 1s;
 *    transition: opacity 0.5s;
 *
 *    @include reduce-motion
 *  }
 */
:root {
  --al-space-3xs: clamp(0rem, 0rem + 0vw, 0rem);
  --al-space-2xs: clamp(0.5rem, 0.5rem + 0vw, 0.5rem);
  --al-space-xs: clamp(1rem, 1rem + 0vw, 1rem);
  --al-space-s: clamp(2rem, 2rem + 0vw, 2rem);
  --al-space-m: clamp(2.5rem, 2.3615384615rem + 0.38461538vw, 3rem);
  --al-space-l: clamp(3rem, 2.7230769231rem + 0.76923077vw, 4rem);
  --al-space-xl: clamp(3.5rem, 3.0846153846rem + 1.15384615vw, 5rem);
  --al-space-2xl: clamp(3.5rem, 2.9461538462rem + 1.53846154vw, 5.5rem);
  --al-space-3xl: clamp(4rem, 3.4461538462rem + 1.53846154vw, 6rem);
  --al-space-4xl: clamp(4.5rem, 3.8076923077rem + 1.92307692vw, 7rem);
  --al-space-5xl: clamp(5rem, 4.1692307692rem + 2.30769231vw, 8rem);
  --al-space-6xl: clamp(6rem, 4.3384615385rem + 4.61538462vw, 12rem);
  --al-space-container-px: clamp(2rem, 1.1692307692rem + 2.30769231vw, 5rem);
}

:root {
  --al-heading-font-size-1: clamp(2.7rem, 2.5338461538rem + 0.46153846vw, 3.3rem);
  --al-heading-font-size-2: clamp(2.2rem, 2.1169230769rem + 0.23076923vw, 2.5rem);
  --al-heading-font-size-3: clamp(2rem, 1.9169230769rem + 0.23076923vw, 2.3rem);
}

:root {
  --al-body-font-size--1: clamp(1.2rem, 1.1723076923rem + 0.07692308vw, 1.3rem);
  --al-body-font-size-0: clamp(1.4rem, 1.3446153846rem + 0.15384615vw, 1.6rem);
  --al-body-font-size-1: clamp(1.8rem, 1.7446153846rem + 0.15384615vw, 2rem);
}

:root {
  --al-color-base-50: #f8f8f8;
  --al-color-base-100: #f3f4f6;
  --al-color-base-200: #e5e7eb;
  --al-color-base-300: #d1d5db;
  --al-color-base-400: #9ca3af;
  --al-color-base-500: #6b7280;
  --al-color-base-600: #4b5563;
  --al-color-base-700: #374151;
  --al-color-base-800: #6d6d6d;
  --al-color-base-900: #111827;
  --al-color-base-950: #010101;
}

:root {
  --al-color-white: #ffffff;
  --al-color-black: #010101;
  --al-color-text-primary: var(--al-color-base-950);
  --al-color-text-secondary: var(--al-color-base-800);
  --al-color-text-body: var(--al-color-base-950);
  --al-color-border: var(--al-color-base-100);
  --al-color-border-focus: var(--al-color-base-300);
  --al-color-text-primary-invert: var(--al-color-white);
  --al-color-text-secondary-invert: var(--al-color-base-100);
  --al-color-text-body-invert: var(--al-color-base-300);
  --al-color-border-invert: var(--al-color-base-900);
  --al-color-border-focus-invert: var(--al-color-base-700);
  --al-color-error-primary: #dc2626;
  --al-color-error-secondary: #dc2626;
}

:root {
  --al-line-height-tight: 1;
  --al-line-height-snug: 1.3;
  --al-line-height-normal: 1.4;
  --al-line-height-relaxed: 1.6;
  --al-line-height-loose: 2;
  --al-line-height-prose: 1.75;
}

:root {
  --al-letter-spacing-tightest: -0.15em;
  --al-letter-spacing-tighter: -0.1em;
  --al-letter-spacing-tight: -0.05em;
  --al-letter-spacing-normal: 0;
  --al-letter-spacing-wide: 0.05em;
  --al-letter-spacing-wider: 0.1em;
  --al-letter-spacing-widest: 0.15em;
}

:root {
  --al-border-radius-none: 0;
  --al-border-radius-s: 0.4rem;
  --al-border-radius-m: 0.8rem;
  --al-border-radius-l: 1.6rem;
  --al-border-radius-xl: 3.2rem;
  --al-border-radius-pill: 999rem;
}

:root {
  --al-section-space: var(--al-space-3xl);
  --al-container-width: 166rem;
  --al-container-px: var(--al-space-container-px);
}

:root {
  --al-button-px: var(--al-space-m);
  --al-button-py: calc(var(--al-space-xs) + var(--al-space-2xs));
  --al-button-border-radius: 0;
  --al-button-transition: 0.3s all cubic-bezier(0.42, 0, 0.58, 1);
  --al-button-font-family: inherit;
  --al-button-font-size: var(--al-body-font-size-0);
  --al-button-line-height: var(--al-line-height-normal);
  --al-button-font-weight: 300;
  --al-button-font-style: normal;
  --al-button-letter-spacing: var(--al-letter-spacing-normal);
  --al-button-text-transform: unset;
  --al-button-color: var(--al-color-white);
  --al-button-background: var(--al-color-black);
  --al-button-border: none;
  --al-button-color-hover: var(--al-color-white);
  --al-button-background-hover: var(--al-color-base-800);
  --al-button-border-hover: none;
  --al-button-color-invert: var(--al-color-white);
  --al-button-background-invert: transparent;
  --al-button-border-invert: 1px solid var(--al-color-base-600);
  --al-button-color-hover-invert: var(--al-color-base-950);
  --al-button-background-hover-invert: var(--al-color-white);
  --al-button-border-hover-invert: 1px solid var(--al-color-white);
}

:root {
  --al-link-transition: 0.3s all cubic-bezier(0.42, 0, 0.58, 1);
  --al-link-font-family: inherit;
  --al-link-font-size: var(--al-body-font-size-0);
  --al-link-line-height: var(--line-height-normal);
  --al-link-font-weight: 300;
  --al-link-font-style: normal;
  --al-link-letter-spacing: var(--al-letter-spacing-normal);
  --al-link-color: var(--al-color-base-950);
  --al-link-color-hover: var(--al-color-text-secondary);
  --al-link-color-invert: var(--al-color-base-100);
  --al-link-color-hover-invert: var(--al-color-white);
}

.prose,
.mceContentBody {
  --al-prose-font-size: var(--al-body-font-size-0);
  --al-prose-line-height: var(--al-line-height-prose, 1.75);
  --al-prose-max-width: 100%;
  --al-prose-body-color: var(--al-color-text-body);
  --al-prose-heading-color: var(--al-color-text-primary);
  --al-prose-lead-color: var(--al-color-text-primary);
  --al-prose-link-color: var(--al-color-base-900);
  --al-prose-bold-color: var(--al-color-base-900);
  --al-prose-counters-color: var(--al-color-base-500);
  --al-prose-bullets-color: var(--al-color-base-300);
  --al-prose-hr-color: var(--al-color-base-200);
  --al-prose-blockquote-color: var(--al-color-base-900);
  --al-prose-blockquote-border-color: var(--al-color-base-200);
  --al-prose-captions-color: var(--al-color-base-500);
  --al-prose-code-color: var(--al-color-base-900);
  --al-prose-pre-code-color: var(--al-color-base-200);
  --al-prose-pre-bg-color: var(--al-color-base-800);
  --al-prose-th-border-color: var(--al-color-base-300);
  --al-prose-td-border-color: var(--al-color-base-200);
  --al-prose-invert-body-color: var(--al-color-text-body-invert, var(--al-color-base-300));
  --al-prose-invert-heading-color: var(--al-color-white);
  --al-prose-invert-lead-color: var(--al-color-base-400);
  --al-prose-invert-link-color: var(--al-color-white);
  --al-prose-invert-bold-color: var(--al-color-white);
  --al-prose-invert-counters-color: var(--al-color-base-400);
  --al-prose-invert-bullets-color: var(--al-color-base-600);
  --al-prose-invert-hr-color: var(--al-color-base-700);
  --al-prose-invert-blockquote-color: var(--al-color-base-100);
  --al-prose-invert-blockquote-border-color: var(--al-color-base-700);
  --al-prose-invert-captions-color: var(--al-color-base-400);
  --al-prose-invert-code-color: var(--al-color-white);
  --al-prose-invert-pre-code-color: var(--al-color-base-300);
  --al-prose-invert-pre-bg-color: rgb(0 0 0 / 50%);
  --al-prose-invert-th-border-color: var(--al-color-base-600);
  --al-prose-invert-td-border-color: var(--al-color-base-700);
  font-size: var(--al-prose-font-size);
  line-height: var(--al-prose-line-height);
  color: var(--al-prose-body-color);
  max-width: var(--al-prose-max-width);
  word-break: break-word;
}
.prose :where(p):not(:where([class~=not-prose] *)),
.mceContentBody :where(p):not(:where([class~=not-prose] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where([class~=lead]):not(:where([class~=not-prose] *)),
.mceContentBody :where([class~=lead]):not(:where([class~=not-prose] *)) {
  color: var(--al-prose-lead-color);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~=not-prose] *)),
.mceContentBody :where(a):not(:where([class~=not-prose] *)) {
  color: var(--al-prose-link-color);
  text-decoration: none;
  font-weight: 300;
}
.prose :where(strong):not(:where([class~=not-prose] *)),
.mceContentBody :where(strong):not(:where([class~=not-prose] *)) {
  color: var(--al-prose-bold-color);
  font-weight: 300;
}
.prose :where(a strong):not(:where([class~=not-prose] *)),
.mceContentBody :where(a strong):not(:where([class~=not-prose] *)) {
  color: inherit;
}
.prose :where(blockquote strong):not(:where([class~=not-prose] *)),
.mceContentBody :where(blockquote strong):not(:where([class~=not-prose] *)) {
  color: inherit;
}
.prose :where(thead th strong):not(:where([class~=not-prose] *)),
.mceContentBody :where(thead th strong):not(:where([class~=not-prose] *)) {
  color: inherit;
}
.prose :where(ol):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol):not(:where([class~=not-prose] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 0.625em;
}
.prose :where(ol[type=A]):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol[type=A]):not(:where([class~=not-prose] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type=a]):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol[type=a]):not(:where([class~=not-prose] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type=A s]):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol[type=A s]):not(:where([class~=not-prose] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type=a s]):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol[type=a s]):not(:where([class~=not-prose] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type=I]):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol[type=I]):not(:where([class~=not-prose] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type=i]):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol[type=i]):not(:where([class~=not-prose] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type=I s]):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol[type=I s]):not(:where([class~=not-prose] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type=i s]):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol[type=i s]):not(:where([class~=not-prose] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol[type="1"]):not(:where([class~=not-prose] *)) {
  list-style-type: decimal;
}
.prose :where(ul):not(:where([class~=not-prose] *)),
.mceContentBody :where(ul):not(:where([class~=not-prose] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 0.625em;
}
.prose :where(ol > li):not(:where([class~=not-prose] *))::marker,
.mceContentBody :where(ol > li):not(:where([class~=not-prose] *))::marker {
  font-weight: 300;
  color: var(--al-prose-counters-color);
}
.prose :where(ul > li):not(:where([class~=not-prose] *))::marker,
.mceContentBody :where(ul > li):not(:where([class~=not-prose] *))::marker {
  color: var(--al-prose-bullets-color);
}
.prose :where(hr):not(:where([class~=not-prose] *)),
.mceContentBody :where(hr):not(:where([class~=not-prose] *)) {
  border-width: 0;
  border-color: var(--al-prose-hr-color);
  border-top-width: 1px;
  border-style: solid;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose blockquote:not(:where([class~=not-prose] *)),
.mceContentBody blockquote:not(:where([class~=not-prose] *)) {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-size: var(--al-heading-font-size-2);
  line-height: var(--al-line-height-snug);
  font-weight: 300;
  font-style: normal;
  color: var(--al-prose-blockquote-color);
  border-left-style: solid;
  border-left-width: 0;
  border-left-color: var(--al-prose-blockquote-border-color);
  background-color: var(--al-prose-blockquote-background-color, transparent);
  quotes: "“" "”" "‘" "’";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
}
.prose blockquote:first-child:not(:where([class~=not-prose] *)),
.mceContentBody blockquote:first-child:not(:where([class~=not-prose] *)) {
  margin-top: 0;
}
.prose blockquote:last-child:not(:where([class~=not-prose] *)),
.mceContentBody blockquote:last-child:not(:where([class~=not-prose] *)) {
  margin-bottom: 0;
}
.prose :where(h1):not(:where([class~=not-prose] *)),
.mceContentBody :where(h1):not(:where([class~=not-prose] *)) {
  color: var(--al-prose-heading-color);
  font-weight: 300;
  font-size: 2.25em;
  line-height: 1.1111111;
  margin-top: 0;
  margin-bottom: 0.8888889em;
}
.prose :where(h1 strong):not(:where([class~=not-prose] *)),
.mceContentBody :where(h1 strong):not(:where([class~=not-prose] *)) {
  font-weight: 300;
  color: inherit;
}
.prose :where(h2):not(:where([class~=not-prose] *)),
.mceContentBody :where(h2):not(:where([class~=not-prose] *)) {
  color: var(--al-prose-heading-color);
  font-weight: 300;
  font-size: 1.5em;
  line-height: 1.3333333;
  margin-top: 2em;
  margin-bottom: 1em;
}
.prose :where(h2 strong):not(:where([class~=not-prose] *)),
.mceContentBody :where(h2 strong):not(:where([class~=not-prose] *)) {
  font-weight: 300;
  color: inherit;
}
.prose :where(h3):not(:where([class~=not-prose] *)),
.mceContentBody :where(h3):not(:where([class~=not-prose] *)) {
  color: var(--al-prose-heading-color);
  font-weight: 300;
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
}
.prose :where(h3 strong):not(:where([class~=not-prose] *)),
.mceContentBody :where(h3 strong):not(:where([class~=not-prose] *)) {
  font-weight: 300;
  color: inherit;
}
.prose :where(h4):not(:where([class~=not-prose] *)),
.mceContentBody :where(h4):not(:where([class~=not-prose] *)) {
  color: var(--al-prose-heading-color);
  font-weight: 600;
  font-size: 1em;
  line-height: 1.5;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.prose :where(h4 strong):not(:where([class~=not-prose] *)),
.mceContentBody :where(h4 strong):not(:where([class~=not-prose] *)) {
  font-weight: 300;
  color: inherit;
}
.prose :where(img):not(:where([class~=not-prose] *)),
.mceContentBody :where(img):not(:where([class~=not-prose] *)) {
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose :where(figure > *):not(:where([class~=not-prose] *)),
.mceContentBody :where(figure > *):not(:where([class~=not-prose] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(pre):not(:where([class~=not-prose] *)),
.mceContentBody :where(pre):not(:where([class~=not-prose] *)) {
  color: var(--al-prose-pre-code-color);
  background-color: var(--al-prose-pre-bg-color);
  overflow-x: auto;
  font-weight: 300;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}
.prose :where(pre code):not(:where([class~=not-prose] *)),
.mceContentBody :where(pre code):not(:where([class~=not-prose] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.prose :where(pre code):not(:where([class~=not-prose] *))::before,
.mceContentBody :where(pre code):not(:where([class~=not-prose] *))::before {
  content: none;
}
.prose :where(pre code):not(:where([class~=not-prose] *))::after,
.mceContentBody :where(pre code):not(:where([class~=not-prose] *))::after {
  content: none;
}
.prose :where(table):not(:where([class~=not-prose] *)),
.mceContentBody :where(table):not(:where([class~=not-prose] *)) {
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.prose :where(thead):not(:where([class~=not-prose] *)),
.mceContentBody :where(thead):not(:where([class~=not-prose] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--al-prose-th-border-color);
}
.prose :where(thead th):not(:where([class~=not-prose] *)),
.mceContentBody :where(thead th):not(:where([class~=not-prose] *)) {
  color: var(--al-prose-heading-color);
  font-weight: 300;
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.prose :where(tbody tr):not(:where([class~=not-prose] *)),
.mceContentBody :where(tbody tr):not(:where([class~=not-prose] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--al-prose-td-border-color);
}
.prose :where(tbody tr:last-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(tbody tr:last-child):not(:where([class~=not-prose] *)) {
  border-bottom-width: 0;
}
.prose :where(tbody td):not(:where([class~=not-prose] *)),
.mceContentBody :where(tbody td):not(:where([class~=not-prose] *)) {
  vertical-align: baseline;
}
.prose :where(tfoot):not(:where([class~=not-prose] *)),
.mceContentBody :where(tfoot):not(:where([class~=not-prose] *)) {
  border-top-width: 1px;
  border-top-color: var(--al-prose-th-border-color);
}
.prose :where(tfoot td):not(:where([class~=not-prose] *)),
.mceContentBody :where(tfoot td):not(:where([class~=not-prose] *)) {
  vertical-align: top;
}
.prose :where(video):not(:where([class~=not-prose] *)),
.mceContentBody :where(video):not(:where([class~=not-prose] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(figure):not(:where([class~=not-prose] *)),
.mceContentBody :where(figure):not(:where([class~=not-prose] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(li):not(:where([class~=not-prose] *)),
.mceContentBody :where(li):not(:where([class~=not-prose] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~=not-prose] *)),
.mceContentBody :where(ol > li):not(:where([class~=not-prose] *)) {
  padding-left: 0.375em;
}
.prose :where(ul > li):not(:where([class~=not-prose] *)),
.mceContentBody :where(ul > li):not(:where([class~=not-prose] *)) {
  padding-left: 0.375em;
}
.prose :where(.prose > ul > li p):not(:where([class~=not-prose] *)),
.mceContentBody :where(.prose > ul > li p):not(:where([class~=not-prose] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > *:first-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(.prose > ul > li > *:first-child):not(:where([class~=not-prose] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ul > li > *:last-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(.prose > ul > li > *:last-child):not(:where([class~=not-prose] *)) {
  margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > *:first-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(.prose > ol > li > *:first-child):not(:where([class~=not-prose] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ol > li > *:last-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(.prose > ol > li > *:last-child):not(:where([class~=not-prose] *)) {
  margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose] *)),
.mceContentBody :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(hr + *):not(:where([class~=not-prose] *)),
.mceContentBody :where(hr + *):not(:where([class~=not-prose] *)) {
  margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~=not-prose] *)),
.mceContentBody :where(h2 + *):not(:where([class~=not-prose] *)) {
  margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~=not-prose] *)),
.mceContentBody :where(h3 + *):not(:where([class~=not-prose] *)) {
  margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~=not-prose] *)),
.mceContentBody :where(h4 + *):not(:where([class~=not-prose] *)) {
  margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(thead th:first-child):not(:where([class~=not-prose] *)) {
  padding-left: 0;
}
.prose :where(thead th:last-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(thead th:last-child):not(:where([class~=not-prose] *)) {
  padding-right: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~=not-prose] *)),
.mceContentBody :where(tbody td, tfoot td):not(:where([class~=not-prose] *)) {
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose] *)) {
  padding-left: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose] *)) {
  padding-right: 0;
}
.prose :where(*:first-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(*:first-child):not(:where([class~=not-prose] *)) {
  margin-top: 0;
}
.prose :where(*:last-child):not(:where([class~=not-prose] *)),
.mceContentBody :where(*:last-child):not(:where([class~=not-prose] *)) {
  margin-bottom: 0;
}

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  /* 2 */
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Set the font size so 1rem is 10px 
*/
html {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
  tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  font-size: 62.5%;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
*/
body {
  margin: 0;
  font-size: var(--al-body-font-size-0, 1.6rem);
  line-height: var(--al-line-height-normal, 1.5);
  color: var(--base-color, var(--al-color-base-950));
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/
button,
[role=button] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}

[type=text],
input:where(:not([type])),
[type=email],
[type=url],
[type=password],
[type=number],
[type=date],
[type=datetime-local],
[type=month],
[type=search],
[type=tel],
[type=time],
[type=week],
[multiple],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--al-input-background-color, var(--white));
  border-color: var(--al-input-border-color, var(--al-color-border));
  border-width: 1px;
  border-style: solid;
  border-radius: 0px;
  padding-top: 0.5em;
  padding-right: 0.75em;
  padding-bottom: 0.5em;
  padding-left: 0.75em;
  font-size: 1em;
  line-height: 1.5;
  --al-shadow: 0 0 var(--al-color-black);
}
[type=text]:focus,
input:where(:not([type])):focus,
[type=email]:focus,
[type=url]:focus,
[type=password]:focus,
[type=number]:focus,
[type=date]:focus,
[type=datetime-local]:focus,
[type=month]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=time]:focus,
[type=week]:focus,
[multiple]:focus,
textarea:focus,
select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --al-ring-offset-width: 2px;
  --al-ring-offset-color: #fff;
  --al-ring-color: var(--border-color);
  --al-ring-offset-shadow: 0 0 0 var(--al-ring-offset-width) var(--al-ring-offset-color);
  --al-ring-shadow: 0 0 0 calc(1px + var(--al-ring-offset-width)) var(--al-ring-color);
  box-shadow: var(--al-ring-offset-shadow), var(--al-ring-shadow), var(--al-shadow);
  border-color: var(--al-color-border-focus);
}

::-moz-placeholder,
textarea::-moz-placeholder,
input::placeholder,
textarea::placeholde {
  color: var(--al-color-base-300);
  opacity: 1;
}

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-date-and-time-value {
  min-height: 1.5em;
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-meridiem-field {
  padding-top: 0;
  padding-bottom: 0;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  width: 100%;
}

[multiple],
[size]:where(select:not([size="1"])) {
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75em;
  -webkit-print-color-adjust: unset;
  print-color-adjust: unset;
}

[type=checkbox],
[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  flex-shrink: 0;
  height: 1em;
  width: 1em;
  color: var(--al-color-base-800);
  background-color: #fff;
  border-color: var(--al-input-border-color, var(--al-color-border));
  border-width: 1px;
  border-style: solid;
  --al-shadow: 0 0 #0000;
}
[type=checkbox]:focus,
[type=radio]:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --al-ring-offset-width: 2px;
  --al-ring-offset-color: #fff;
  --al-ring-color: var(--al-color-base-800);
  --al-ring-offset-shadow: var(--al-ring-inset) 0 0 0 var(--al-ring-offset-width) var(--al-ring-offset-color);
  --al-ring-shadow: var(--al-ring-inset) 0 0 0 calc(2px + var(--al-ring-offset-width)) var(--al-ring-color);
  box-shadow: var(--al-ring-offset-shadow), var(--al-ring-shadow), var(--al-shadow);
}
[type=checkbox]:checked,
[type=radio]:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type=checkbox] {
  border-radius: 0px;
}

[type=radio] {
  border-radius: 100%;
}

[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

[type=radio]:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

[type=checkbox]:checked:hover,
[type=checkbox]:checked:focus,
[type=radio]:checked:hover,
[type=radio]:checked:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type=checkbox]:indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
[type=checkbox]:indeterminate:hover, [type=checkbox]:indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type=file] {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}
[type=file]:focus {
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--al-line-height-snug);
  color: var(--al-color-text-primary);
}

blockquote {
  border: initial;
  background: initial;
  padding: initial;
  overflow: initial;
  line-height: inherit;
}

.price {
  white-space: nowrap;
}
@media only screen and (max-width: 639px) {
  .price .sale_label {
    display: block;
  }
}
@media only screen and (max-width: 459px) {
  .price strike {
    display: block;
  }
}

.caption {
  margin-top: var(--al-space-xs);
}

.description {
  display: block;
}

.subheading,
.related_items_panel_heading {
  display: block;
  color: var(--al-color-text-primary);
  margin-bottom: var(--al-panel-header-mb, var(--al-space-2xl));
}

.mceContentBody {
  padding: 1em;
}

/* classes defined in the 'Styles' menu in tinymce (see archimedes-editscreens-additional.js) */
.cms_strike {
  text-decoration: line-through;
}

.cms_textremoved {
  color: var(--al-color-base-400, #aaaaaa);
  text-decoration: line-through;
}

.cms_code {
  font-family: monospace;
  font-size: 0.8em;
}

.cms_red {
  color: #ea0000;
}

.cms_gray {
  color: var(--al-color-text-body);
}

.cms_black {
  color: var(--al-color-text-primary);
}

.embedded_img.right {
  padding: 0 0 var(--al-space-l) var(--al-space-2xl);
  float: right;
}

.embedded_img.left {
  padding: 0 var(--al-space-2xl) var(--al-space-l) 0;
  float: left;
}

:root {
  --al-section-space: var(--al-space-3xl);
  --al-container-width: 100%;
  --al-container-px: var(--al-space-container-px);
  --al-section-space-y: var(--al-space-xl);
  --box-shadow: 0 5px 10px -5px rgb(45 45 45 / 20%);
  --easing: cubic-bezier(.49, .11, .24, 1);
  --transition: 0.6s all var(--easing);
  --close: url("data:image/svg+xml,%3Csvg width='23' height='23' viewBox='0 0 23 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='16.3145' y='5' width='1' height='16' transform='rotate(45 16.3145 5)' fill='%23010101'/%3E%3Crect x='5.31445' y='6' width='1' height='16' transform='rotate(-45 5.31445 6)' fill='%23010101'/%3E%3C/svg%3E%0A");
  --arrow: url("data:image/svg+xml,%3Csvg width='17' height='8' viewBox='0 0 17 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.3536 4.35355C16.5488 4.15829 16.5488 3.84171 16.3536 3.64645L13.1716 0.464467C12.9763 0.269205 12.6597 0.269205 12.4645 0.464467C12.2692 0.659729 12.2692 0.976312 12.4645 1.17157L15.2929 4L12.4645 6.82843C12.2692 7.02369 12.2692 7.34027 12.4645 7.53553C12.6597 7.7308 12.9763 7.7308 13.1716 7.53554L16.3536 4.35355ZM-4.37114e-08 4.5L16 4.5L16 3.5L4.37114e-08 3.5L-4.37114e-08 4.5Z' fill='%23010101'/%3E%3C/svg%3E%0A");
}

:root {
  --al-button-outline-px: var(--al-space-m);
  --al-button-outline-py: var(--al-space-xs);
  --al-button-outline-border-radius: 0;
  --al-button-outline-transition: 0.3s all cubic-bezier(0.42, 0, 0.58, 1);
  --al-button-outline-font-family: inherit;
  --al-button-outline-font-size: var(--al-body-font-size-0);
  --al-button-outline-line-height: var(--al-line-height-normal);
  --al-button-outline-font-weight: 300;
  --al-button-outline-font-style: normal;
  --al-button-outline-letter-spacing: var(--al-letter-spacing-normal);
  --al-button-outline-text-transform: unset;
  --al-button-outline-color: var(--al-color-black);
  --al-button-outline-background: var(--al-color-white);
  --al-button-outline-border: 1px solid var(--al-color-black);
  --al-button-outline-color-hover: var(--al-color-white);
  --al-button-outline-background-hover: var(--al-color-base-800);
  --al-button-outline-border-hover: 1px solid var(--al-color-base-800);
  --al-button-outline-color-invert: var(--al-color-white);
  --al-button-outline-background-invert: transparent;
  --al-button-outline-border-invert: 1px solid var(--al-color-base-600);
  --al-button-outline-color-hover-invert: var(--al-color-base-950);
  --al-button-outline-background-hover-invert: var(--al-color-white);
  --al-button-outline-border-hover-invert: 1px solid var(--al-color-white);
}

[type=text],
[type=tel],
[type=email],
textarea {
  --al-input-background-color: var(--al-color-base-50);
  --al-input-border-color: transparent;
  --al-color-border-focus: transparent;
  padding: calc(var(--al-space-s) - 2px) var(--al-space-s);
}

[type=checkbox],
[type=radio] {
  --al-input-border-color: var(--al-color-base-800);
}

.inputField::placeholder,
textarea::placeholder {
  color: var(--al-color-text-primary);
}

.form_row.form_row_submit {
  margin-top: var(--al-space-l);
}

img {
  width: 100%;
}

body {
  font-family: "Acumin Pro", sans-serif;
  font-size: var(--al-body-font-size-0);
  font-weight: 300;
}

:is(h1, h2, h3, h4, h5, h6) {
  line-height: var(--al-line-height-normal);
  font-weight: 300;
}

h1 {
  font-size: var(--al-heading-font-size-1);
}

h2 {
  font-size: var(--al-heading-font-size-2);
}

.subheading,
.related_items_panel_heading {
  font-size: var(--al-heading-font-size-2);
}

.caption {
  font-size: var(--al-body-font-size--1);
  text-align: end;
}

blockquote {
  max-width: 70ch;
}
blockquote blockquote {
  font-size: var(--al-heading-font-size-2);
}

blockquote.prose {
  --al-prose-font-size: var(--al-heading-font-size-2);
  --al-prose-max-width: 70ch;
}

/*# sourceMappingURL=base.css.map */
