@charset "UTF-8";
/* BACKGROUND COLOR OPACITY */
/* general opacity */
/* css filters */
/* TEXT SHADOW */
/* Border radius */
/* Reset/Adjust styles of <button> elements */
/* open-sans-300 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: local(""), url("fonts/open-sans-v34-latin-300.woff2") format("woff2"), url("fonts/open-sans-v34-latin-300.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-regular - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("fonts/open-sans-v34-latin-regular.woff2") format("woff2"), url("fonts/open-sans-v34-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-700 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("fonts/open-sans-v34-latin-700.woff2") format("woff2"), url("fonts/open-sans-v34-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-800 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: local(""), url("fonts/open-sans-v34-latin-800.woff2") format("woff2"), url("fonts/open-sans-v34-latin-800.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-300 - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  src: local(""), url("fonts/montserrat-v25-latin-300.woff2") format("woff2"), url("fonts/montserrat-v25-latin-300.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-regular - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("fonts/montserrat-v25-latin-regular.woff2") format("woff2"), url("fonts/montserrat-v25-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-800 - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  src: local(""), url("fonts/montserrat-v25-latin-800.woff2") format("woff2"), url("fonts/montserrat-v25-latin-800.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
:where(a, a:active, a:visited) {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-color: color-mix(in srgb, currentColor 35%, transparent);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
  cursor: pointer;
  transition: color 0.2s, text-decoration-color 0.2s;
}
:where(a, a:active, a:visited):hover {
  color: #e5004b;
  text-decoration-color: #e5004b;
}
:where(a, a:active, a:visited):focus-visible {
  outline: none;
  border-radius: 2px;
  box-shadow: 0 0 0 3px rgba(229, 0, 75, 0.25);
}
:where(a, a:active, a:visited) img {
  border: 0;
}
:where(a, a:active, a:visited).link-emphasis, :where(a, a:active, a:visited).link-emphasis-arrow {
  font-weight: 700;
}
:where(a, a:active, a:visited).link-emphasis-arrow::after {
  content: "\f061";
  font-family: "FontAwesome";
  margin-left: 0.25rem;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
:where(a, a:active, a:visited).link-emphasis-arrow:hover::after {
  transform: translateX(4px);
}
.section--indigo :where(a, a:active, a:visited), .section--dark :where(a, a:active, a:visited), :where(a, a:active, a:visited).link-on-dark {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.45);
}
.section--indigo :where(a, a:active, a:visited):hover, .section--dark :where(a, a:active, a:visited):hover, :where(a, a:active, a:visited).link-on-dark:hover {
  color: #fff;
  text-decoration-color: #fff;
}
:where(a, a:active, a:visited).colorPrimary {
  color: #e5004b;
  text-decoration-color: rgba(229, 0, 75, 0.35);
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  -ms-transition: all 0.7s ease-out;
  -o-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
}
:where(a, a:active, a:visited).colorPrimary:hover {
  color: #00e0a1;
  text-decoration-color: #00e0a1;
}

textarea,
input[type=email],
input[type=password],
input[type=text],
input[type=tel],
input[type=search],
input[type=number] {
  -webkit-appearance: none;
  box-sizing: border-box;
  background-clip: padding-box;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #25292d;
  outline: 0;
  padding: 0.625rem;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
textarea::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder {
  color: #767676;
}
textarea:hover:not(:disabled):not([readonly]),
input[type=email]:hover:not(:disabled):not([readonly]),
input[type=password]:hover:not(:disabled):not([readonly]),
input[type=text]:hover:not(:disabled):not([readonly]),
input[type=tel]:hover:not(:disabled):not([readonly]),
input[type=search]:hover:not(:disabled):not([readonly]),
input[type=number]:hover:not(:disabled):not([readonly]) {
  border-color: #767676;
}
textarea:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=text]:focus,
input[type=tel]:focus,
input[type=search]:focus,
input[type=number]:focus {
  outline: none;
  border-color: #4502da;
  box-shadow: 0 0 0 3px rgba(69, 2, 218, 0.15);
}
textarea[aria-invalid=true],
input[type=email][aria-invalid=true],
input[type=password][aria-invalid=true],
input[type=text][aria-invalid=true],
input[type=tel][aria-invalid=true],
input[type=search][aria-invalid=true],
input[type=number][aria-invalid=true] {
  border-color: #e5004b;
}
textarea[aria-invalid=true]:hover:not(:disabled),
input[type=email][aria-invalid=true]:hover:not(:disabled),
input[type=password][aria-invalid=true]:hover:not(:disabled),
input[type=text][aria-invalid=true]:hover:not(:disabled),
input[type=tel][aria-invalid=true]:hover:not(:disabled),
input[type=search][aria-invalid=true]:hover:not(:disabled),
input[type=number][aria-invalid=true]:hover:not(:disabled) {
  border-color: rgb(167.8, 0, 54.9563318777);
}
textarea[aria-invalid=true]:focus,
input[type=email][aria-invalid=true]:focus,
input[type=password][aria-invalid=true]:focus,
input[type=text][aria-invalid=true]:focus,
input[type=tel][aria-invalid=true]:focus,
input[type=search][aria-invalid=true]:focus,
input[type=number][aria-invalid=true]:focus {
  border-color: #e5004b;
  box-shadow: 0 0 0 3px rgba(229, 0, 75, 0.18);
}
textarea:disabled, textarea[readonly],
input[type=email]:disabled,
input[type=email][readonly],
input[type=password]:disabled,
input[type=password][readonly],
input[type=text]:disabled,
input[type=text][readonly],
input[type=tel]:disabled,
input[type=tel][readonly],
input[type=search]:disabled,
input[type=search][readonly],
input[type=number]:disabled,
input[type=number][readonly] {
  background: #f3f3f3;
  color: #767676;
  cursor: not-allowed;
}
textarea.halfWidth,
input[type=email].halfWidth,
input[type=password].halfWidth,
input[type=text].halfWidth,
input[type=tel].halfWidth,
input[type=search].halfWidth,
input[type=number].halfWidth {
  width: 49%;
}
textarea.autoWidth,
input[type=email].autoWidth,
input[type=password].autoWidth,
input[type=text].autoWidth,
input[type=tel].autoWidth,
input[type=search].autoWidth,
input[type=number].autoWidth {
  width: auto;
}
textarea.minWidth,
input[type=email].minWidth,
input[type=password].minWidth,
input[type=text].minWidth,
input[type=tel].minWidth,
input[type=search].minWidth,
input[type=number].minWidth {
  width: 40px;
}

.input-group {
  position: relative;
}
.input-group input {
  padding-left: 36px;
}
.input-group__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #767676;
  font-size: 1rem;
  pointer-events: none;
}

select {
  box-sizing: border-box;
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%2325292d' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='1.5 1.5 6 6 10.5 1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #25292d;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0.625rem;
  padding-right: 36px;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  transition: border-color 0.15s, box-shadow 0.15s;
}
select::-ms-expand {
  display: none;
}
select:hover:not(:disabled) {
  border-color: #767676;
}
select:focus {
  outline: none;
  border-color: #4502da;
  box-shadow: 0 0 0 3px rgba(69, 2, 218, 0.15);
}
select:disabled {
  background-color: #f3f3f3;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23999' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='1.5 1.5 6 6 10.5 1.5'/></svg>");
  color: #767676;
  cursor: not-allowed;
}
select.fullWidth {
  width: 100%;
}

.checkbox,
.radio {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.15;
  cursor: pointer;
}
.checkbox input[type=checkbox],
.checkbox input[type=radio],
.radio input[type=checkbox],
.radio input[type=radio] {
  display: inline-block;
  margin-top: 2px;
  accent-color: #e5004b;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.switch__track {
  position: absolute;
  inset: 0;
  background: #ddd;
  border-radius: 999px;
  transition: background 0.2s;
  cursor: pointer;
}
.switch__track::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.2s;
}
input:checked + .switch__track {
  background: #00e0a1;
}
input:checked + .switch__track::before {
  transform: translateX(18px);
}
input:focus-visible + .switch__track {
  box-shadow: 0 0 0 3px rgba(229, 0, 75, 0.25);
}

.btn,
.btn-primary,
.btn-secondary,
.btn-text,
.btn-danger,
.btn-primary-on-dark,
.btn-secondary-on-dark {
  box-sizing: border-box;
  display: inline-block;
  white-space: nowrap;
  padding: 0.8em 1.4em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #e5004b;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9em;
  line-height: 1.5em;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn:active,
.btn-primary:active,
.btn-secondary:active,
.btn-text:active,
.btn-danger:active,
.btn-primary-on-dark:active,
.btn-secondary-on-dark:active {
  transform: translateY(1px);
}
.btn:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-text:focus-visible,
.btn-danger:focus-visible,
.btn-primary-on-dark:focus-visible,
.btn-secondary-on-dark:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(229, 0, 75, 0.3);
}

.btn,
.btn-secondary {
  color: #e5004b;
}

.btn-primary {
  background-color: #e5004b;
  color: #fff;
}

.btn-text {
  border-color: transparent;
  color: #e5004b;
  background-color: transparent;
}
.btn-text:hover {
  background-color: #fde6ed;
  border-color: transparent;
}

.btn-danger {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: transparent;
  color: #e5004b;
}
.btn-danger::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #e5004b;
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.btn-danger:hover {
  color: #fff;
}
.btn-danger:hover::before {
  transform: translateX(0);
}

.btn-sm {
  padding: 0.55em 1em;
  font-size: 0.8em;
}

.btn-lg {
  padding: 1em 1.8em;
  font-size: 1em;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  gap: 0;
}
.btn-icon::before, .btn-icon::after {
  content: none;
}

.btn-icon.btn-sm {
  width: 30px;
  height: 30px;
}

.btn-icon.btn-lg {
  width: 44px;
  height: 44px;
}

.btn[aria-busy=true],
.btn-primary[aria-busy=true],
.btn-secondary[aria-busy=true],
.btn-text[aria-busy=true],
.btn-danger[aria-busy=true] {
  position: relative;
  color: transparent !important;
  pointer-events: none;
  cursor: progress;
}
.btn[aria-busy=true] > *,
.btn-primary[aria-busy=true] > *,
.btn-secondary[aria-busy=true] > *,
.btn-text[aria-busy=true] > *,
.btn-danger[aria-busy=true] > * {
  visibility: hidden;
}
.btn[aria-busy=true]::before, .btn[aria-busy=true]::after,
.btn-primary[aria-busy=true]::before,
.btn-primary[aria-busy=true]::after,
.btn-secondary[aria-busy=true]::before,
.btn-secondary[aria-busy=true]::after,
.btn-text[aria-busy=true]::before,
.btn-text[aria-busy=true]::after,
.btn-danger[aria-busy=true]::before,
.btn-danger[aria-busy=true]::after {
  color: transparent;
}

.btn[aria-busy=true]::before,
.btn-primary[aria-busy=true]::before,
.btn-secondary[aria-busy=true]::before,
.btn-text[aria-busy=true]::before,
.btn-danger[aria-busy=true]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border: 2px solid rgba(229, 0, 75, 0.25);
  border-top-color: #e5004b;
  border-radius: 50%;
  animation: btn-spin 0.8s linear infinite;
}

.btn-primary[aria-busy=true]::before {
  border-color: rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
}

.btn-primary-on-dark[aria-busy=true]::before,
.btn-secondary-on-dark[aria-busy=true]::before {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}
.btn-success {
  color: #00e0a1;
  border-color: #00e0a1;
}
.btn-success:hover {
  color: #00e0a1;
}
.btn-success::before {
  margin-right: 7px;
  font-family: "FontAwesome";
  content: " \f00c";
}

.btn-arrow-right::after {
  display: inline-block;
  margin-left: 7px;
  font-family: "FontAwesome";
  content: " \f105";
  transition: transform 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.btn-arrow-right:hover::after {
  transform: translateX(4px);
}

.btn-arrow-left::before {
  display: inline-block;
  margin-right: 11px;
  font-family: "FontAwesome";
  content: "\f104";
  transition: transform 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.btn-arrow-left:hover::before {
  transform: translateX(-4px);
}

.btn-heart-o::before {
  margin-right: 11px;
  font-family: "Font Awesome 5 Free";
  font-weight: 200;
  content: "\f004";
}

.btn-heart::before {
  margin-right: 11px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f004";
}

.btn-primary-on-dark {
  background-color: #fff;
  color: #25292d;
  border-color: #fff;
}
.btn-primary-on-dark:hover {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: #fff;
  text-decoration: none;
}
.btn-primary-on-dark:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.btn-secondary-on-dark {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-secondary-on-dark:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  text-decoration: none;
}
.btn-secondary-on-dark:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.badge--neutral {
  background: #f3f3f3;
  color: #25292d;
}
.badge--dark {
  background: #25292d;
  color: #fff;
}
.badge--primary {
  background: #fde6ed;
  color: #99002f;
}
.badge--indigo {
  background: rgba(69, 2, 218, 0.12);
  color: #4502da;
}
.badge--success {
  background: rgba(0, 224, 161, 0.18);
  color: #00553c;
}
.badge--warning {
  background: rgba(255, 188, 10, 0.22);
  color: #6b4d00;
}
.badge--outline {
  background: transparent;
  color: #25292d;
  border: 1px solid #25292d;
  padding: 3px 9px;
}
.badge--dot::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.badge--count {
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  justify-content: center;
  background: #e5004b;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
}
.badge--count.badge--lg {
  font-size: 10px;
  padding: 0 6px;
  letter-spacing: 0;
  gap: 5px;
}
.badge--sm {
  font-size: 9px;
  padding: 3px 8px;
}
.badge--lg {
  font-size: 13px;
  padding: 6px 14px;
  gap: 7px;
  letter-spacing: 0.06em;
}
.badge--lg.badge--outline {
  padding: 5px 13px;
}
.badge--lg.badge--dot::before {
  width: 7px;
  height: 7px;
}
.badge--price {
  background: #f3f3f3;
  color: #4502da;
  font-variant-numeric: tabular-nums;
}
.badge--calendar {
  background: #f3f3f3;
  color: #25292d;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}
.badge--calendar .fa {
  font-size: 11px;
  opacity: 0.7;
}

.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.badge-group--left {
  justify-content: flex-start;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.5rem;
}

.text-xl {
  font-size: 1.75rem;
}

.text-shadow {
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
}

.text-primary {
  color: #e5004b !important;
}

.text-orange {
  color: #ffbc0a !important;
}

.text-indigo {
  color: #4502da !important;
}

.text-white {
  color: #fff !important;
}

.text-green {
  color: #00e0a1 !important;
}

.text-muted {
  color: #767676 !important;
}

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

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

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

.font-bold {
  font-weight: 700 !important;
}

.font-italic {
  font-style: italic;
}

.u-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.75rem;
  color: #e5004b;
  margin: 0 0 1.25rem;
}

h1,
h2,
h3 {
  margin: 0;
}

.headline {
  display: block;
  color: #000;
  text-transform: uppercase;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.75rem;
  line-height: 1;
  overflow-wrap: break-word;
}
@media (min-width: 640px) {
  .headline {
    font-size: 2.5rem;
  }
}

.subheadline {
  display: block;
  color: #25292d;
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.headline-block {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.header {
  box-sizing: border-box;
  width: 100%;
  height: 80px;
  background-color: #fff;
  border-bottom: 1px solid #ececec;
}
.header .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo {
  width: 125px;
  height: auto;
}
@media (min-width: 640px) {
  .header_logo {
    width: 150px;
  }
}
.header_logo img {
  width: 100%;
}

.header_meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 20px;
  color: #767676;
}
.header_meta .header-user-icon--active {
  color: #e5004b;
}

.header_burger_menu {
  cursor: pointer;
  box-sizing: border-box;
  padding-left: 20px;
  border-left: 1px solid #767676;
  text-transform: uppercase;
  font-weight: 400;
}
.header_burger_menu:first-child {
  border-left: none;
  padding-left: 0;
}
.header_burger_menu .header_burger_menu--label {
  display: none;
  margin-left: 5px;
}
@media (min-width: 640px) {
  .header_burger_menu .header_burger_menu--label {
    display: inline;
  }
}

.body--fixed {
  position: fixed;
  overflow: hidden;
  width: 100%;
}

.overlay {
  display: none;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.4666666667);
}

.overlay--active {
  display: block;
}

.side-menu {
  display: none;
  position: fixed;
  box-sizing: border-box;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff;
  overflow: hidden;
  animation: slide-out 0.3s ease-in forwards;
}

.side-menu--active {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  animation: slide-in 0.3s ease-in forwards;
}

.side-menu--header {
  display: flex;
  justify-content: space-between;
  flex-flow: row-reverse;
  align-items: center;
  height: 80px;
  min-height: 80px;
  box-sizing: border-box;
  padding: 0 20px;
  border-bottom: 1px solid #ececec;
}
.side-menu--header .side-menu--header__logo {
  width: 125px;
  height: auto;
}
.side-menu--header .side-menu--header__logo img {
  width: 100%;
}
.side-menu--header .side-menu--header__close {
  cursor: pointer;
  color: #000;
  text-align: right;
  padding-left: 20px;
  border-left: 1px solid #767676;
}

.side-menu--nav {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  height: 100%;
}

.side-menu--myaviva {
  background-color: #fff;
  padding: 0 20px 2rem;
}
.side-menu--myaviva__header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: row nowrap;
  -webkit-flex-flow: row nowrap;
  -moz-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  align-items: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  margin: 10px 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #25292d;
}
.side-menu--myaviva__cta {
  padding: 1.25rem 0;
}
.side-menu--myaviva__cta .btn {
  width: 100%;
  text-align: center;
}
.side-menu--myaviva__name {
  font-size: clamp(20px, 5.7vw, 22px);
  font-weight: 800;
  letter-spacing: -1.25px;
  text-transform: uppercase;
}
.side-menu--myaviva .side-menu--myaviva__nav {
  list-style: none;
  margin: 0;
  margin-bottom: 10px;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  flex-flow: row wrap;
  text-transform: uppercase;
}
.side-menu--myaviva .side-menu--myaviva__nav li {
  box-sizing: border-box;
  flex-basis: 25%;
  max-width: 25%;
  overflow: hidden;
  padding: 5px;
  margin: 0;
  font-size: 9px;
  font-weight: 400;
  text-align: center;
}
.side-menu--myaviva .side-menu--myaviva__nav li a {
  display: block;
  text-decoration: none;
}
.side-menu--myaviva .side-menu--myaviva__nav li i {
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 20px;
}

.side-menu--main {
  padding: 20px;
  position: relative;
}
.side-menu--main ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(28px, 9vw, 35px);
  line-height: 1.3em;
  letter-spacing: -0.05em;
}
.side-menu--main ul a {
  text-decoration: none;
}
.side-menu--main ul li {
  padding: 0;
  margin: 0;
}
.side-menu--main ul li .side-menu--main__root {
  cursor: pointer;
}
.side-menu--main ul li .side-menu--main__sub {
  position: absolute;
  z-index: 10000;
  top: 0;
  left: 0;
  padding-top: 20px;
  padding-left: 20px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: #fff;
  font-size: clamp(20px, 6.4vw, 25px);
  line-height: 1.3em;
}
.side-menu--main ul li .side-menu--main__sub .side-menu--main__sub-back {
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  color: #767676;
  padding-bottom: 5px;
}
.side-menu--main ul li .side-menu--main__sub-active {
  animation: slide-in 0.3s ease-in;
}
.side-menu--main ul li .side-menu--main__sub-inactive {
  transform: translateX(120%);
  animation: slide-out 0.1s ease-out;
}

@keyframes slide-in {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-out {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@media (min-width: 640px) {
  .side-menu {
    width: 40%;
  }
  .side-menu--header__logo {
    display: none;
  }
}
@media (min-width: 1280px) {
  .side-menu {
    width: 33%;
  }
  .side-menu--header__logo {
    display: none;
  }
}
.desktop-nav {
  display: none;
}

.header_user-dropdown {
  position: relative;
}
.header_user-dropdown__trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}
.header_user-dropdown__trigger:hover {
  color: #e5004b;
}
.header_user-dropdown__panel {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  padding: 8px 0;
  z-index: 200;
  margin-top: 8px;
}
.header_user-dropdown__panel::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.header_user-dropdown__greeting {
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  border-bottom: 1px solid #ececec;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .header_user-dropdown--open .header_user-dropdown__panel {
    display: block;
  }
}
.header_user-dropdown .side-menu--myaviva__nav {
  list-style: none;
  margin: 0;
  padding: 0 8px;
}
.header_user-dropdown .side-menu--myaviva__nav li {
  margin: 0;
}
.header_user-dropdown .side-menu--myaviva__nav li:last-child {
  border-top: 1px solid #ececec;
  margin-top: 4px;
  padding-top: 4px;
}
.header_user-dropdown .side-menu--myaviva__nav a {
  display: block;
  padding: 10px 16px;
  color: #25292d;
  text-decoration: none;
  font-size: 14px;
  border-radius: 5px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.header_user-dropdown .side-menu--myaviva__nav a:hover {
  color: #e5004b;
  background-color: rgba(229, 0, 75, 0.06);
}
.header_user-dropdown .side-menu--myaviva__nav a i {
  width: 20px;
  text-align: center;
  margin-right: 8px;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    flex: 1;
  }
  .header_burger_menu {
    display: none;
  }
  .header_meta {
    margin-left: 24px;
    margin-right: 0;
  }
  .desktop-nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    margin-left: auto;
  }
  .desktop-nav__item {
    position: relative;
  }
  .desktop-nav__link {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    color: #25292d;
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
  }
  .desktop-nav__link:hover {
    color: #e5004b;
  }
  .desktop-nav__item--has-sub > .desktop-nav__link::after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-bottom: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    margin-top: -2px;
    flex-shrink: 0;
  }
  .desktop-nav__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    padding: 8px 0;
    z-index: 100;
    margin-top: 8px;
  }
  .desktop-nav__dropdown::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
  }
  .desktop-nav__item:hover > .desktop-nav__dropdown,
  .desktop-nav__item--active > .desktop-nav__dropdown {
    display: block;
  }
  .desktop-nav__item:hover > .desktop-nav__link,
  .desktop-nav__item--active > .desktop-nav__link {
    color: #e5004b;
  }
  .desktop-nav__sub-list {
    list-style: none;
    margin: 0;
    padding: 0 8px;
  }
  .desktop-nav__sub-list li {
    margin: 0;
  }
  .desktop-nav__sub-list a {
    display: block;
    padding: 10px 16px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #25292d;
    text-decoration: none;
    border-radius: 5px;
    transition: color 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
  }
  .desktop-nav__sub-list a:hover {
    color: #e5004b;
    background-color: rgba(229, 0, 75, 0.06);
  }
  .desktop-nav__sub-list a.active {
    color: #e5004b;
    font-weight: 600;
  }
}
.breadcrumb {
  margin: 0;
  padding: 1em 0;
  font-weight: 400;
  font-size: 0.8em;
}
@media (min-width: 640px) {
  .breadcrumb {
    padding: 1.5em 0;
  }
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb ol li {
  display: inline-block;
}
.breadcrumb ol li:not(:first-child)::before {
  margin: 0 0.8em;
  font-family: "FontAwesome";
  content: "\f105";
  color: #767676;
}
.breadcrumb__home-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.statusbar {
  padding: 0.75em;
  background-color: #4502da;
  color: #fff;
  font-size: 0.85em;
}
.statusbar__highlight {
  font-weight: 700;
}
.statusbar a,
.statusbar a:hover,
.statusbar a:visited, a:active .statusbar__link {
  margin: 0 1.5em;
  font-weight: 800;
  color: #fff;
}

.auth-login-box {
  padding: 1.25rem;
  border: 1px solid #ececec;
  border-radius: 3px;
  box-shadow: 0 0 15px #ececec;
}

.auth-login__forgot {
  text-align: right;
  font-size: 0.75rem;
  margin-top: -0.25rem;
  margin-bottom: 1.25rem;
}
.auth-login__options {
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}
.auth-login__actions {
  margin-top: 1.25rem;
}
.auth-login__actions .btn {
  width: 100%;
}
.auth-login__register {
  margin-top: 0.625rem;
  text-align: center;
  font-size: 0.875rem;
}

.form-field {
  margin-bottom: 1.25rem;
}
.form-field input[aria-invalid=true], .form-field textarea[aria-invalid=true], .form-field select[aria-invalid=true] {
  border-color: #e5004b;
}
.form-field select {
  width: 100%;
}
.form-field__label {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  text-transform: uppercase;
  color: #25292d;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.form-field__label--required::after {
  content: " *";
  color: #e5004b;
}
.form-field__opt {
  color: #767676;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.75rem;
}
.form-field__hint {
  display: block;
  font-size: 0.875rem;
  color: #767676;
  line-height: 1.15;
  margin-top: 0.25rem;
}
.form-field__error {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #e5004b;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  text-align: left;
}
.form-field--fieldset {
  border: none;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}
.form-field--fieldset select {
  width: auto;
}
.form-field--checkbox .form-field__label {
  text-transform: none;
  color: #25292d;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 0;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.form-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1.25rem;
}
.form-inline .form-field {
  margin-bottom: 0;
}
.form-inline > .form-field:first-child {
  flex: 1 1 220px;
}
.form-inline .btn {
  flex-shrink: 0;
}

.display {
  margin: 0;
  padding: 30px 0;
  background-color: #fff;
}
.display__wrapper {
  padding: 0;
}
.display--centered {
  text-align: center;
}
.display__headline, .display__subheadline {
  display: block;
  margin: 0;
  padding: 0;
}
.display__headline {
  text-transform: uppercase;
  color: #000;
  font-size: 3rem;
  font-weight: 800;
  line-height: 0.9em;
  letter-spacing: -0.2rem;
  overflow-wrap: break-word;
}
.display__subheadline {
  margin-top: 0.625rem;
  color: #25292d;
  font-size: 1.25rem;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: -0.075rem;
}

@media (min-width: 640px) {
  .display__headline {
    font-size: 6rem;
    line-height: 0.9em;
    letter-spacing: -0.4rem;
  }
  .display__subheadline {
    font-size: 1.75rem;
  }
}
.hidden {
  display: none !important;
}

.classes-next-up {
  list-style: none;
  margin: 0.625rem 0 0;
  padding: 0;
}
.classes-next-up__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.classes-next-up__item:last-child {
  border-bottom: none;
}
.classes-next-up__title {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.next-courses {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.next-courses__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.next-courses__eyebrow {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.75rem;
  color: #e5004b;
}
.next-courses--compact .next-courses__headline {
  font-size: 1.75rem;
}
.next-courses__lede {
  margin: 6px 0 0;
  max-width: 32em;
  line-height: 1.15;
}
.next-courses--compact .next-courses__lede {
  display: none;
}
.next-courses__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.next-courses__item {
  display: block;
}
.next-courses__row {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid #ececec;
  cursor: pointer;
  transition: background-color 0.15s;
  text-decoration: none;
  color: inherit;
}
.next-courses__row:hover {
  background: rgba(229, 0, 75, 0.03);
  margin-inline: -0.625rem;
  padding-inline: 0.625rem;
}
.next-courses__item:last-child .next-courses__row {
  border-bottom: none;
}
.next-courses--compact .next-courses__row {
  grid-template-columns: 70px 1fr auto;
}
.next-courses__time-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.next-courses__time {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #25292d;
}
.next-courses--compact .next-courses__time {
  font-size: 1.25rem;
}
.next-courses__day {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
  font-weight: 700;
  color: #767676;
}
.next-courses__day--today {
  color: #e5004b;
}
.next-courses__body {
  min-width: 0;
}
.next-courses__title {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #25292d;
  transition: color 0.15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.next-courses--compact .next-courses__title {
  font-size: 1rem;
}
.next-courses__row:hover .next-courses__title {
  color: #e5004b;
}
.next-courses__meta {
  margin-top: 3px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  color: #767676;
}
.next-courses__arrow {
  font-size: 16px;
  color: #767676;
  transition: transform 0.2s, color 0.15s;
}
.next-courses__row:hover .next-courses__arrow {
  color: #e5004b;
  transform: translateX(4px);
}
.next-courses__footer {
  padding-top: 0.625rem;
  border-top: 1px solid #ececec;
}

.class-dates__headline {
  display: block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.75rem;
  color: #767676;
}
.class-dates__option-legend {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}
.class-dates__option-legend li {
  margin-bottom: 6px;
}
.class-dates__option-legend li:last-child {
  margin-bottom: 0;
}
.class-dates__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #ececec;
  border-radius: 3px;
  background-color: #fff;
  overflow: hidden;
}
.class-dates__list-item {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 12px 0.625rem 12px calc(1.25rem + 3px);
  border-bottom: 1px solid #ececec;
  background-color: #fff;
}
.class-dates__list-item:last-child {
  border-bottom: 0;
}
.class-dates__list-item-band {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: transparent;
}
.class-dates__list-item--available .class-dates__list-item-band {
  background-color: #00e0a1;
}
.class-dates__list-item--almost .class-dates__list-item-band {
  background-color: #ffbc0a;
}
.class-dates__list-item--full .class-dates__list-item-band {
  background-color: #e5004b;
}
.class-dates__list-item--confirmed .class-dates__list-item-band, .class-dates__list-item--succeeded .class-dates__list-item-band {
  background-color: #00a877;
}
.class-dates__list-item--waiting .class-dates__list-item-band {
  background-color: #ffbc0a;
}
.class-dates__list-item--error .class-dates__list-item-band {
  background-color: #e5004b;
}
.class-dates__list-item--selected {
  background-color: rgba(229, 0, 75, 0.04);
  box-shadow: inset 0 0 0 1px rgba(229, 0, 75, 0.25);
}
.class-dates__list-item-anchor {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.class-dates__list-item-day {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #767676;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.class-dates__list-item-time {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.04em;
  color: #25292d;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.class-dates__list-item-time-until {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0;
  color: #767676;
  white-space: nowrap;
}
.class-dates__list-item-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.class-dates__list-item-instructor {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #25292d;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.class-dates__list-item-hint {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffbc0a;
  line-height: 1;
}
.class-dates__list-item-hint--full {
  color: #e5004b;
}
.class-dates__list-item-hint--almost {
  color: #ffbc0a;
}
.class-dates__list-item-actions, .class-dates__list-item-response {
  display: flex;
  flex-flow: column nowrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.class-dates__list-item-actions:has(> .class-dates__list-item-cta) {
  flex-flow: row nowrap;
  gap: 0.5rem;
  align-items: center;
}
.class-dates__list-item-cta {
  appearance: none;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #25292d;
  border: 1px solid #ececec;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  padding: 0;
  line-height: 1;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.class-dates__list-item-cta:hover {
  background-color: #e5004b;
  border-color: #e5004b;
  color: #fff;
}
.class-dates__list-item-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(229, 0, 75, 0.25);
  position: relative;
  z-index: 1;
}
.class-dates__list-item-cta--primary {
  background-color: #e5004b;
  border-color: #e5004b;
  color: #fff;
}
.class-dates__list-item-cta--primary:hover {
  background-color: #25292d;
  border-color: #25292d;
}
.class-dates__list-item-soon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #767676;
  font-size: 16px;
}
.class-dates__list-item-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
}
.class-dates__list-item-status--confirmed, .class-dates__list-item-status--succeeded {
  background-color: rgba(0, 224, 161, 0.18);
  color: #00553c;
}
.class-dates__list-item-status--waiting {
  background-color: rgba(255, 188, 10, 0.2);
  color: #6b4d00;
}
.class-dates__list-item-status--error {
  background-color: rgba(229, 0, 75, 0.12);
  color: #e5004b;
}
.class-dates__list-item-status-icon {
  font-size: 14px;
  line-height: 1;
}
.class-dates__list-item-status-type {
  font-size: 13px;
  opacity: 0.85;
}
.class-dates__list-item-undo {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: inherit;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s;
}
.class-dates__list-item-undo::before {
  content: "\f0e2";
  font-family: "FontAwesome";
  font-weight: normal;
  margin-right: 6px;
  font-size: 11px;
}
.class-dates__list-item-undo-label {
  text-decoration-line: underline;
  text-decoration-color: color-mix(in srgb, currentColor 35%, transparent);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
  transition: text-decoration-color 0.2s;
}
.class-dates__list-item-undo:hover {
  color: #e5004b;
}
.class-dates__list-item-undo:hover .class-dates__list-item-undo-label {
  text-decoration-color: #e5004b;
}
.class-dates__list-item-undo:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(229, 0, 75, 0.25);
  border-radius: 2px;
}
.class-dates__cta {
  margin-top: 0.625rem;
  text-align: center;
}

.class-bookings__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.class-bookings__list-month {
  position: sticky;
  top: 0;
  padding: 0.5em 0;
  background-color: #fff;
  font-size: 1.75em;
  font-weight: 800;
  text-transform: uppercase;
}
.class-bookings__list-item {
  min-height: 60px;
  padding: 15px;
  margin-bottom: 15px;
  box-sizing: border-box;
  border-radius: 3px;
  font-size: 0.9em;
  background-color: #f3f3f3;
  display: grid;
  grid-template-columns: 40px 0.5fr 2fr;
  grid-gap: 20px 15px;
  align-items: center;
}
@media (min-width: 640px) {
  .class-bookings__list-item {
    grid-template-columns: 40px 0.75fr 2fr 0.75fr;
    grid-gap: 10px 20px;
    padding: 20px;
  }
}
.class-bookings__list-item-day span {
  display: block;
  text-transform: uppercase;
  font-size: 0.9em;
  text-align: center;
}
.class-bookings__list-item-day span:first-child {
  font-size: 1.6em;
  font-weight: 800;
}
.class-bookings__list-item-time .start {
  display: block;
  font-weight: 700;
}
.class-bookings__list-item-time .until {
  display: none;
}
.class-bookings__list-item-time .end {
  font-size: 0.9em;
}
@media (min-width: 640px) {
  .class-bookings__list-item-time {
    text-align: center;
  }
  .class-bookings__list-item-time .start {
    display: inline;
    font-size: 1.2em;
  }
  .class-bookings__list-item-time .until {
    display: inline;
  }
}
.class-bookings__list-item-title .instructor,
.class-bookings__list-item-title .title {
  display: block;
}
.class-bookings__list-item-title .instructor {
  font-size: 0.9em;
}
.class-bookings__list-item-title .title {
  text-transform: uppercase;
  font-weight: 800;
}
@media (min-width: 640px) {
  .class-bookings__list-item-title .title {
    font-size: 1.2em;
  }
}
.class-bookings__list-item-status {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  grid-column: 1/span 3;
  grid-row: 2;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  line-height: 1.5em;
}
.class-bookings__list-item-status .status,
.class-bookings__list-item-status .position,
.class-bookings__list-item-status .type {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin: 0 8px;
}
@media (min-width: 640px) {
  .class-bookings__list-item-status {
    grid-column: 1/span 4;
    padding-top: 15px;
  }
}
.class-bookings__list-item-status-icon {
  margin-right: 5px;
  font-size: 1.4em;
}
.class-bookings__list-item-status-icon .confirmed,
.class-bookings__list-item-status-icon .succeeded {
  color: #00e0a1;
}
.class-bookings__list-item-status-icon .waiting {
  color: #ffbc0a;
}
.class-bookings__list-item-status-text, .class-bookings__list-item-status-position {
  padding: 0 6px;
  border-radius: 3px;
  border: 1px solid #25292d;
  text-transform: uppercase;
  font-size: 0.6em;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 20px;
}
.class-bookings__list-item-status-position {
  font-size: 0.8em;
}
.class-bookings__list-item-actions {
  grid-column: 1/span 3;
  grid-row: 3;
  text-align: center;
}
@media (min-width: 640px) {
  .class-bookings__list-item-actions {
    grid-column: 4;
    grid-row: 1;
    text-align: right;
  }
}
.class-bookings__list-item-cta {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  line-height: 40px;
}
.class-bookings__list-item-cta:last-child {
  margin-left: 10px;
}
.class-bookings__list-item-cta:hover {
  background-color: #25292d;
}
.class-bookings__list-item-cta:hover i {
  color: #fff;
}
.class-bookings__list-item-cta-primary {
  background-color: #e5004b;
  color: #fff;
}
.class-bookings__list-item-date {
  font-weight: 700;
}
.class-bookings__list-item-instructor {
  font-size: 0.9em;
  text-align: right;
}

.admin-participants {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.admin-participants__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

.class-participants__list {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}
.class-participants__list-day {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.75em 0;
  background-color: transparent;
}
.class-participants__list-day .weekday {
  font-size: 1.75em;
  font-weight: 800;
  text-transform: uppercase;
}
.class-participants__list-day .date {
  padding: 0.25em 1em;
  border-radius: 1em;
  text-align: right;
  font-weight: 700;
  font-size: 0.9em;
  color: #fff;
  background-color: #4502da;
}
.class-participants__list-item {
  min-height: 60px;
  padding: 15px;
  margin-bottom: 15px;
  box-sizing: border-box;
  border-radius: 3px;
  font-size: 0.9em;
  background-color: #f3f3f3;
  display: grid;
  grid-template-columns: 1fr 1.75fr 0.75fr 1fr 0.75fr 40px;
  grid-gap: 0 15px;
  align-items: center;
  cursor: pointer;
}
.class-participants__list-item:hover {
  box-shadow: 0 0 15px #ececec;
}
.class-participants__list-item-cancelled {
  color: #767676;
  border-left: 5px solid #e5004b;
}
.class-participants__list-item-cancelled-text {
  padding: 0 6px;
  margin-left: 10px;
  border-radius: 3px;
  border: 1px solid #e5004b;
  color: #e5004b;
  text-transform: uppercase;
  font-size: 0.6em;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 20px;
}
.class-participants__list-item-full {
  border-left: 5px solid #e5004b;
}
.class-participants__list-item-almost {
  border-left: 5px solid #ffbc0a;
}
.class-participants__list-item-free {
  border-left: 5px solid #00e0a1;
}
.class-participants__list-item .time .start {
  font-size: 1.3em;
  font-weight: 700;
}
.class-participants__list-item .title {
  font-size: 1.3em;
  font-weight: 800;
  text-transform: uppercase;
}
.class-participants__list-item .participation {
  font-size: 1.3em;
}
.class-participants__list-item .participation-item {
  margin-right: 15px;
  font-weight: 700;
}
.class-participants__list-item .participation-item .max-occupancy {
  font-weight: 400;
  font-size: 0.8em;
}
.class-participants__list-item .participants {
  display: none;
  grid-column: 2/4;
}
.class-participants__list-item .participants__list {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 15px;
}
.class-participants__list-item .participants__list-item {
  margin-bottom: 1em;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 20px 20px 1fr 1fr;
  grid-gap: 0 10px;
  align-items: center;
}
.class-participants__list-item .participants__list-item .status {
  font-size: 1.25em;
}
.class-participants__list-item .participants__list-item .name .last-name {
  font-weight: 700;
}
.class-participants__list-item .actions {
  text-align: right;
}
.class-participants__list-item .actions-cta {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  line-height: 40px;
}
.class-participants__list-item .actions-cta:last-child {
  margin-left: 10px;
}
.class-participants__list-item .actions-cta:hover {
  background-color: #25292d;
}
.class-participants__list-item .actions-cta:hover i {
  color: #fff;
}
.class-participants__list-item .actions-cta-primary {
  background-color: #e5004b;
  color: #fff;
}
.class-participants__list-item .actions-cta-primary a {
  color: #fff;
}
.class-participants__list-item .toggle {
  text-align: center;
  font-size: 1.25em;
}

img {
  display: block;
  max-width: 100%;
}
img.image--cover {
  object-fit: cover;
  border-radius: 3px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .grid {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
  }
}

.col-1 {
  grid-column-end: span 1;
}

.col-2 {
  grid-column-end: span 2;
}

.col-3 {
  grid-column-end: span 3;
}

.col-4 {
  grid-column-end: span 4;
}

@media (min-width: 640px) {
  .col-sm-1 {
    grid-column-end: span 1;
  }
}

@media (min-width: 640px) {
  .col-sm-2 {
    grid-column-end: span 2;
  }
}

@media (min-width: 640px) {
  .col-sm-3 {
    grid-column-end: span 3;
  }
}

@media (min-width: 640px) {
  .col-sm-4 {
    grid-column-end: span 4;
  }
}

@media (min-width: 640px) {
  .col-sm-5 {
    grid-column-end: span 5;
  }
}

@media (min-width: 640px) {
  .col-sm-6 {
    grid-column-end: span 6;
  }
}

@media (min-width: 640px) {
  .col-sm-7 {
    grid-column-end: span 7;
  }
}

@media (min-width: 640px) {
  .col-sm-8 {
    grid-column-end: span 8;
  }
}

@media (min-width: 1024px) {
  .col-md-1 {
    grid-column-end: span 1;
  }
}

@media (min-width: 1024px) {
  .col-md-2 {
    grid-column-end: span 2;
  }
}

@media (min-width: 1024px) {
  .col-md-3 {
    grid-column-end: span 3;
  }
}

@media (min-width: 1024px) {
  .col-md-4 {
    grid-column-end: span 4;
  }
}

@media (min-width: 1024px) {
  .col-md-5 {
    grid-column-end: span 5;
  }
}

@media (min-width: 1024px) {
  .col-md-6 {
    grid-column-end: span 6;
  }
}

@media (min-width: 1024px) {
  .col-md-7 {
    grid-column-end: span 7;
  }
}

@media (min-width: 1024px) {
  .col-md-8 {
    grid-column-end: span 8;
  }
}

@media (min-width: 1024px) {
  .col-md-9 {
    grid-column-end: span 9;
  }
}

@media (min-width: 1024px) {
  .col-md-10 {
    grid-column-end: span 10;
  }
}

@media (min-width: 1024px) {
  .col-md-11 {
    grid-column-end: span 11;
  }
}

@media (min-width: 1024px) {
  .col-md-12 {
    grid-column-end: span 12;
  }
}

@media (min-width: 1024px) {
  .col-md-start-1 {
    grid-column-start: 1;
  }
}

@media (min-width: 1024px) {
  .col-md-start-2 {
    grid-column-start: 2;
  }
}

@media (min-width: 1024px) {
  .col-md-start-3 {
    grid-column-start: 3;
  }
}

@media (min-width: 1024px) {
  .col-md-start-4 {
    grid-column-start: 4;
  }
}

@media (min-width: 1024px) {
  .col-md-start-5 {
    grid-column-start: 5;
  }
}

@media (min-width: 1024px) {
  .col-md-start-6 {
    grid-column-start: 6;
  }
}

@media (min-width: 1024px) {
  .col-md-start-7 {
    grid-column-start: 7;
  }
}

@media (min-width: 1024px) {
  .col-md-start-8 {
    grid-column-start: 8;
  }
}

@media (min-width: 1024px) {
  .col-md-start-9 {
    grid-column-start: 9;
  }
}

@media (min-width: 1024px) {
  .col-md-start-10 {
    grid-column-start: 10;
  }
}

@media (min-width: 1024px) {
  .col-md-start-11 {
    grid-column-start: 11;
  }
}

@media (min-width: 1024px) {
  .col-md-start-12 {
    grid-column-start: 12;
  }
}

.plan-teaser__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 640px) {
  .plan-teaser__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
.plan-teaser__card {
  position: relative;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 3px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-sizing: border-box;
  transition: box-shadow 0.15s;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
}
.plan-teaser__card:hover {
  box-shadow: 0 0 15px #ececec;
}
.plan-teaser__card--featured {
  border: 2px solid #4502da;
}
.plan-teaser__ribbon {
  position: absolute;
  top: -10px;
  left: 1.25rem;
  background: #4502da;
  color: #fff;
  padding: 3px 0.625rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
}
.plan-teaser__name {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #25292d;
  line-height: 1;
}
.plan-teaser__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.plan-teaser__from {
  font-size: 0.875rem;
  color: #767676;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.plan-teaser__amount {
  font-size: 3rem;
  font-weight: 800;
  color: #4502da;
  line-height: 1;
  letter-spacing: -0.04em;
}
.plan-teaser__currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4502da;
}
.plan-teaser__asterisk {
  font-size: 0.75rem;
  vertical-align: super;
  line-height: 1;
}
.plan-teaser__old {
  font-size: 0.875rem;
  color: #767676;
  text-decoration: line-through;
}
.plan-teaser__period {
  font-size: 0.875rem;
  color: #767676;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.plan-teaser__divider {
  border: none;
  border-top: 1px solid #ececec;
  margin: 0.625rem 0;
}
.plan-teaser__benefits {
  list-style: none;
  margin: 0 0 0.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.plan-teaser__benefits li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #25292d;
  line-height: 1.15;
}
.plan-teaser__benefits i {
  color: #00e0a1;
  font-size: 0.875rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.plan-teaser__cta {
  margin-top: auto;
  padding-top: 1.25rem;
}
.plan-teaser__cta .btn {
  display: block;
  text-align: center;
}
.plan-teaser__footnote {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: #767676;
  text-align: center;
  line-height: 1.5;
}

.module-teaser .headline-block {
  text-align: center;
  margin-bottom: 2rem;
}
.module-teaser__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.module-teaser__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 3px;
  padding: 1.25rem;
  box-sizing: border-box;
  transition: box-shadow 0.15s;
}
.module-teaser__item:hover {
  box-shadow: 0 0 15px #ececec;
}
@media (min-width: 640px) {
  .module-teaser__item {
    gap: 2rem;
  }
}
.module-teaser__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(69, 2, 218, 0.08);
  border-radius: 3px;
  color: #4502da;
  font-size: 1.25rem;
}
.module-teaser__body {
  flex: 1;
  min-width: 0;
}
.module-teaser__name {
  font-size: 1rem;
  font-weight: 700;
  color: #25292d;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.module-teaser__desc {
  margin: 0;
  font-size: 0.875rem;
  color: #767676;
  line-height: 1.5;
}
.module-teaser__price {
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: #4502da;
  text-align: right;
}
.module-teaser__prefix {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}
.module-teaser__amount {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}
.module-teaser__currency {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}
.module-teaser__footnote {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: #767676;
  text-align: center;
  line-height: 1.5;
}

.abo-checkout-summary table td {
  padding: 10px 0;
}
.abo-checkout-summary table td:first-child {
  text-transform: uppercase;
  color: #767676;
  font-size: 0.9em;
  font-weight: 700;
  padding-right: 30px;
}
.abo-checkout-summary table td:last-child {
  text-align: right;
}
.abo-checkout-summary__info {
  font-size: 0.9em;
  color: #767676;
}
.abo-checkout-summary__info-title {
  color: #4502da;
  display: block;
  margin-bottom: 5px;
}

.abo-checkout-form label {
  text-transform: uppercase;
  color: #767676;
  font-size: 0.9em;
  font-weight: 700;
  display: block;
}
.abo-checkout-form p {
  margin-bottom: 20px;
}

.cards {
  display: grid;
  grid-template-columns: 100%;
}
@media (min-width: 640px) {
  .cards {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .cards--single {
    grid-template-columns: 100%;
  }
}
@media (min-width: 1280px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  .cards--single {
    grid-template-columns: 100%;
  }
  .cards--one {
    grid-template-columns: 1fr;
    max-width: 33.333%;
    margin-left: auto;
    margin-right: auto;
  }
  .cards--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 66.667%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 640px) {
  .cards--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .cards--4col {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cards .card {
  box-sizing: border-box;
  position: relative;
  container-type: inline-size;
  border: 1px solid #ececec;
  border-radius: 3px;
  display: flex;
  flex-flow: column;
  background-color: #fff;
  overflow: hidden;
  margin: 1.25rem 0;
}
@media (min-width: 640px) {
  .cards .card {
    margin: 0;
  }
}
.cards .card {
  transition: box-shadow 0.2s, transform 0.2s;
}
.cards .card:hover {
  box-shadow: 0 0 15px #ececec;
}
.cards .card p {
  margin: 0.625rem 0;
}
.cards .card hr {
  border: 1px solid #ececec;
}
.cards .card--flex-start {
  justify-content: flex-start;
}
.cards .card--tall {
  max-height: 400px;
}
.cards .card--scroll {
  overflow-y: auto;
}
.cards .card__date {
  position: absolute;
  left: 25px;
  top: 0;
  min-width: 60px;
  background-color: #4502da;
  color: #fff;
  text-align: center;
}
.cards .card__date-day {
  display: block;
  padding-top: 0.625rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.75rem;
  line-height: 0.8em;
}
.cards .card__date-month {
  display: block;
  padding-bottom: 0.25rem;
  font-size: 0.9em;
  text-transform: uppercase;
}
.cards .card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.cards .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cards .card__media--portrait {
  aspect-ratio: 3/4;
}
.cards .card:hover .card__media img {
  transform: scale(1.04);
}
.cards .card__eyebrow {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  background: #fff;
  color: #25292d;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.4;
}
.cards .card__eyebrow--accent {
  background: #e5004b;
  color: #fff;
}
.cards .card__body {
  padding: 2rem 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cards .card__body--no-margin {
  padding: 0;
}
.cards .card__body--date {
  padding-top: 4rem;
}
.cards .card__title {
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1.1em;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.cards .card__title--medium {
  font-size: 1.5em;
}
.cards .card__subtitle {
  margin-top: 0.25rem;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #767676;
  font-size: 1.125rem;
}
.cards .card__collapse-toggle {
  font-size: 0.8em;
  font-weight: 700;
  text-transform: uppercase;
}
.cards .card__meta {
  display: flex;
  gap: 0.625rem;
  font-size: 0.75rem;
  color: #767676;
  padding: 1.25rem 2rem;
  border-top: 1px solid #ececec;
}
.cards .card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.cards .card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  padding: 0 2rem 2rem;
  margin-top: auto;
}
.cards .card__columns {
  display: grid;
  grid-template-columns: 40% 60%;
  row-gap: 0.3em;
  margin-bottom: 1em;
  word-break: break-word;
  line-height: 1.4em;
}
.cards .card__columns-title {
  font-size: 0.8em;
  line-height: 1.8em;
  color: #767676;
  text-transform: uppercase;
}
.cards .card__columns-ellipsis {
  word-break: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cards .card__columns-auto {
  grid-template-columns: max-content auto;
  column-gap: 0.75em;
}
.cards .card__rows-item {
  display: grid;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid #ececec;
}

.popup {
  padding: 20px;
}
.popup hr {
  border: 1px solid #ececec;
}
.popup__close {
  text-align: right;
}
.popup__header {
  padding-bottom: 16px;
  border-bottom: 1px solid #ececec;
  margin-bottom: 20px;
}
.popup__header .badge {
  margin-top: 8px;
}
.popup__header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.popup__headline,
.popup .headline {
  padding: 0;
}
.popup #reminderDays {
  margin-bottom: 1.25rem;
}
.popup__login-features {
  list-style: none;
  padding: 0;
  margin: 12px 0 4px;
}
.popup__login-features li {
  margin-bottom: 6px;
}
.popup__login-features li:last-child {
  margin-bottom: 0;
}
.popup .collapsible__content {
  text-align: left;
}
.popup__availability {
  margin: 20px 0;
}
.popup__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.popup__details li {
  font-size: 0.9em;
}
.popup__details li .title {
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -1px;
}
.popup__details li.col-full {
  grid-column: 1/-1;
}
.popup__class-dates {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}
.popup__class-dates li {
  padding: 3px 0;
}

#popupOverlay {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  background-color: #fff;
  width: 95%;
  border-radius: 10px;
  box-shadow: 5px 5px 15px #555;
}

@media (min-width: 640px) {
  #popupOverlay {
    width: 450px;
  }
}
.popup_visible #popupOverlay {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.courseType {
  display: inline-block;
  padding-right: 4px;
  min-width: 12px;
  height: 12px;
  outline: 0;
  background-color: transparent;
}
.courseType.health, .courseType.wellbeing, .courseType.strength, .courseType.cardio {
  font-size: 0.9em;
  font-family: "FontAwesome";
}
.courseType.wellbeing::after {
  content: " \f6ad";
  color: #00e0a1;
}
.courseType.strength::after {
  content: " \f44b";
  color: #e5004b;
}
.courseType.cardio::after {
  content: " \f21e";
  color: #25292d;
}
.courseType.health::after {
  content: " \f0fe";
  color: #00e0a1;
}

.schedule {
  margin: 1.25rem 0;
}
.schedule__sticky {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: #fff;
  padding-top: 0.5rem;
  box-shadow: 0 6px 6px -6px rgba(0, 0, 0, 0.08);
}
@media (min-width: 1024px) {
  .schedule__sticky {
    position: static;
    padding-top: 0;
    box-shadow: none;
  }
}
.schedule__nav {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-bottom: 1.25rem;
}
.schedule__nav-arrow {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #ececec;
  border-radius: 5px;
  color: #25292d;
  text-decoration: none;
  font-size: 0.75rem;
}
.schedule__nav-arrow-label {
  display: none;
}
.schedule__nav-arrow--disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
@media (min-width: 1024px) {
  .schedule__nav-arrow {
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    gap: 0.25rem;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .schedule__nav-arrow-label {
    display: inline;
  }
  .schedule__nav-arrow:hover {
    color: #e5004b;
  }
}
.schedule__nav-label {
  flex: 0 1 auto;
  min-width: 0;
  text-align: center;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  color: #767676;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.schedule__nav-label-full {
  display: none;
}
.schedule__nav-label-compact {
  display: inline;
}
@media (min-width: 1024px) {
  .schedule__nav-label {
    font-size: 1.125rem;
  }
  .schedule__nav-label .schedule__nav-label-full {
    display: inline;
  }
  .schedule__nav-label .schedule__nav-label-compact {
    display: none;
  }
}
.schedule__tabs {
  display: flex;
  gap: 0.25rem;
  padding-bottom: 0.625rem;
}
@media (min-width: 1024px) {
  .schedule__tabs {
    display: none;
  }
}
.schedule__tab {
  flex: 1;
  min-width: 0;
  padding: 0.25rem 0.5rem;
  background-color: #fff;
  color: #25292d;
  border: 1px solid #ececec;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}
.schedule__tab--active {
  background-color: #25292d;
  color: #fff;
  border-color: #25292d;
}
.schedule__tab--past:not(.schedule__tab--active) {
  opacity: 0.6;
}
.schedule__tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(229, 0, 75, 0.25);
  position: relative;
  z-index: 1;
}
.schedule__tab-name {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 11px;
}
.schedule__tab--today:not(.schedule__tab--active) .schedule__tab-name {
  color: #e5004b;
}
.schedule__tab-date {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  opacity: 0.75;
}
.schedule__tab--active .schedule__tab-date {
  opacity: 1;
}
@media (min-width: 1024px) {
  .schedule__days {
    display: flex;
    flex-flow: row nowrap;
    gap: 0.625rem;
    align-items: flex-start;
  }
}
.schedule__day-wrap {
  display: none;
}
.schedule__day-wrap--active {
  display: block;
}
.schedule__day-wrap:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(229, 0, 75, 0.25);
}
@media (min-width: 1024px) {
  .schedule__day-wrap {
    display: block;
    flex: 1 1 0;
    min-width: 0;
  }
}
.schedule__day {
  display: flex;
  flex-direction: column;
  border: 1px solid #ececec;
  border-top: 3px solid #ececec;
  border-radius: 3px;
  background-color: #fff;
}
.schedule__day--today {
  border-top-color: #e5004b;
  background-color: rgba(229, 0, 75, 0.025);
}
.schedule__day--past {
  opacity: 0.65;
}
.schedule__day-info {
  display: flex;
  flex-flow: row nowrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.25rem;
  padding: 0.625rem 1.25rem;
  border-bottom: 1px solid #ececec;
}
.schedule__day-name {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.75rem;
  color: #767676;
}
.schedule__day--today .schedule__day-name {
  color: #e5004b;
}
.schedule__day-date {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.04em;
  color: #767676;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.schedule__day--today .schedule__day-date {
  color: #25292d;
}
.schedule__day-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 180px;
  padding: 2rem 1.25rem;
  text-align: center;
}
.schedule__day-empty-icon {
  font-size: 1.5rem;
  color: #e5004b;
  opacity: 0.35;
}
.schedule__day-empty-text {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #767676;
}
.schedule__day-empty-sub {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  color: #767676;
  opacity: 0.8;
}
.schedule__classes {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.schedule__class {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.625rem;
  align-items: center;
  padding: 12px 1.25rem 12px calc(1.25rem + 3px);
  border-bottom: 1px solid #ececec;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.15s;
}
.schedule__class:last-child {
  border-bottom: 0;
}
.schedule__class--has-live {
  grid-template-columns: 56px 1fr auto;
}
.schedule__class:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(229, 0, 75, 0.25);
  position: relative;
  z-index: 1;
}
@media (hover: hover) {
  .schedule__class:not(.schedule__class--past):hover {
    background-color: rgba(229, 0, 75, 0.05);
  }
}
.schedule__class--past {
  opacity: 0.55;
  cursor: default;
}
.schedule__class-band {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: transparent;
}
.schedule__class--full .schedule__class-band {
  background-color: #e5004b;
}
.schedule__class--almost .schedule__class-band {
  background-color: #ffbc0a;
}
.schedule__class--free .schedule__class-band {
  background-color: #00e0a1;
}
.schedule__class-anchor {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.schedule__class-time {
  display: block;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.04em;
  color: #25292d;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.schedule__class-duration {
  display: block;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  color: #767676;
  font-variant-numeric: tabular-nums;
}
.schedule__class-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.schedule__class-title {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #25292d;
  line-height: 1.2;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.schedule__class-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
}
.schedule__class-category {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 10px;
  color: #e5004b;
}
.schedule__class-category--strength {
  color: #e5004b;
}
.schedule__class-category--cardio {
  color: #4502da;
}
.schedule__class-category--wellbeing {
  color: #00553c;
}
.schedule__class-category--health {
  color: #00553c;
}
.schedule__class-online {
  font-size: 11px;
  color: #767676;
}
.schedule__class-live {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e5004b;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
}
.schedule__class-live:hover {
  background-color: #25292d;
  color: #fff;
}
.schedule__error {
  padding: 1.25rem;
  color: #25292d;
}

.alert-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.875rem 1rem;
  border-radius: 3px;
  border: 1px solid transparent;
}
.alert-box__icon {
  flex-shrink: 0;
  font-size: 1.125rem;
  line-height: 1.3;
}
.alert-box__content {
  flex: 1;
  min-width: 0;
  font-size: 0.875rem;
  line-height: 1.45;
}
.alert-box__content > :first-child {
  margin-top: 0;
}
.alert-box__content > :last-child {
  margin-bottom: 0;
}
.alert-box__headline {
  font-weight: 700;
  margin-bottom: 0.25rem;
  display: block;
}
.alert-box__body {
  line-height: 1.45;
}
.alert-box__close {
  flex-shrink: 0;
  color: inherit;
  opacity: 0.55;
  background: none;
  border: 0;
  font-size: 0.875rem;
  line-height: 1;
  cursor: pointer;
  padding: 2px 0.25rem;
  margin: -2px -0.25rem -2px 0;
}
.alert-box__close:hover {
  opacity: 1;
}
.alert-box__action {
  margin-top: 0.625rem;
  display: flex;
  gap: 14px;
}
.alert-box__action a {
  color: inherit;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.alert-box--success {
  background: rgba(0, 224, 161, 0.12);
  border-color: rgba(0, 224, 161, 0.5);
  color: #00553c;
}
.alert-box--success .alert-box__icon {
  color: #00a877;
}
.alert-box--info {
  background: rgba(69, 2, 218, 0.06);
  border-color: rgba(69, 2, 218, 0.35);
  color: #2e0196;
}
.alert-box--info .alert-box__icon {
  color: #4502da;
}
.alert-box--warning {
  background: rgba(255, 188, 10, 0.14);
  border-color: rgba(255, 188, 10, 0.55);
  color: #6b4d00;
}
.alert-box--warning .alert-box__icon {
  color: #c78f00;
}
.alert-box--error {
  background: rgba(229, 0, 75, 0.08);
  border-color: rgba(229, 0, 75, 0.4);
  color: #99002f;
}
.alert-box--error .alert-box__icon {
  color: #e5004b;
}
.alert-box--toast {
  box-shadow: 0 4px 12px rgba(37, 41, 45, 0.08), 0 2px 4px rgba(37, 41, 45, 0.06);
}
.alert-box--inline {
  padding: 0.625rem 0.75rem;
  font-size: 0.75rem;
}
.alert-box--inline .alert-box__icon {
  font-size: 0.875rem;
}

@keyframes success-pop {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  65% {
    transform: scale(1.12);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.success-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding-block: 3rem;
}

.success-block__icon {
  font-size: 4rem;
  line-height: 1;
  color: #00e0a1;
  animation: success-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.success-block__title {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #000;
  line-height: 1.15;
  margin: 0;
}
@media (min-width: 640px) {
  .success-block__title {
    font-size: 2.5rem;
  }
}

.success-block__body {
  color: #25292d;
  max-width: 38ch;
}
.success-block__body p {
  margin: 0;
}
.success-block__body a {
  color: #e5004b;
  font-weight: 700;
}

.success-block__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.625rem;
}

@keyframes error-shake {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
  65% {
    transform: scale(1) rotate(-8deg);
  }
  80% {
    transform: scale(1) rotate(6deg);
  }
  90% {
    transform: scale(1) rotate(-4deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
.success-block--error .success-block__icon {
  color: #e5004b;
  animation: error-shake 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.success-block--warning .success-block__icon {
  color: #ffbc0a;
}

.collapsible-group {
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.collapsible-group > .collapsible + .collapsible {
  border-top: 1px solid #ececec;
}

.collapsible-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}
.collapsible-toolbar button {
  background: none;
  border: 0;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5004b;
  cursor: pointer;
  padding: 0.25rem 0.625rem;
  border-radius: 5px;
}
.collapsible-toolbar button:hover {
  background: #fde6ed;
}

.collapsible {
  background: #fff;
}
.collapsible--card {
  border: 1px solid #ececec;
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.collapsible--card[data-open=true] {
  box-shadow: 0 0 15px #ececec;
}

.collapsible__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: transparent;
  border: 0;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
  color: #25292d;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.collapsible__trigger:hover {
  background: #f3f3f3;
}
.collapsible__trigger:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px #e5004b;
}

.collapsible__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5004b;
}
.collapsible__icon .fa {
  font-size: 18px;
}

.collapsible__heading {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.collapsible__eyebrow {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5004b;
}

.collapsible__title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
  color: #25292d;
  letter-spacing: -0.01em;
}

.collapsible__meta {
  font-size: 0.875rem;
  color: #767676;
  flex-shrink: 0;
}

.collapsible__chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #25292d;
  transition: transform 0.25s cubic-bezier(0.65, 0.05, 0.36, 1), background-color 0.2s ease, color 0.2s ease;
}
.collapsible__chevron .fa {
  font-size: 14px;
}

.collapsible__trigger:hover .collapsible__chevron {
  background: #fff;
  color: #e5004b;
}

.collapsible[data-open=true] .collapsible__chevron {
  transform: rotate(180deg);
  color: #e5004b;
}

.collapsible__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.collapsible[data-open=true] .collapsible__panel {
  grid-template-rows: 1fr;
}

.collapsible__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.collapsible__content {
  padding: 1.25rem 1.25rem 2rem;
  font-size: 1rem;
  line-height: 1.55;
  color: #25292d;
}
.collapsible__content p {
  margin: 0 0 0.625rem;
}
.collapsible__content p:last-child {
  margin-bottom: 0;
}

.collapsible--with-icon .collapsible__content {
  padding-left: calc(1.25rem + 32px + 1.25rem);
}

.collapsible__actions {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.collapsible--sm .collapsible__trigger {
  padding: 0.625rem;
  gap: 0.625rem;
  font-size: 0.875rem;
}
.collapsible--sm .collapsible__icon {
  width: 24px;
  height: 24px;
}
.collapsible--sm .collapsible__icon .fa {
  font-size: 14px;
}
.collapsible--sm .collapsible__title {
  font-size: 1rem;
}
.collapsible--sm .collapsible__chevron {
  width: 24px;
  height: 24px;
}
.collapsible--sm .collapsible__chevron .fa {
  font-size: 12px;
}
.collapsible--sm .collapsible__content {
  padding: 0.625rem 0.625rem 1.25rem;
  font-size: 0.875rem;
}
.collapsible--sm.collapsible--with-icon .collapsible__content {
  padding-left: calc(0.625rem + 24px + 0.625rem);
}
.collapsible--sm .collapsible__actions {
  gap: 0.625rem;
  margin-top: 0.625rem;
}

@media (prefers-reduced-motion: reduce) {
  .collapsible__panel,
  .collapsible__chevron,
  .collapsible__trigger {
    transition: none;
  }
}
.list {
  margin: 0;
  padding: 0;
}
.list-unordered {
  list-style: none;
}
.list-unordered li {
  position: relative;
  margin: 0;
  padding: 0.25em 0;
  padding-left: 20px;
}
.list-unordered li::before {
  content: "/";
  position: absolute;
  left: 0;
  color: #e5004b;
  font-weight: bold;
}

.ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ul li {
  margin: 0;
  padding: 0.15em 0;
}
.ul__classFavs li {
  margin: 0.25em 0;
  padding: 0.25em 0;
  border-bottom: 1px solid #ececec;
  font-size: 0.9em;
  cursor: pointer;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.icon-list__item {
  position: relative;
  padding: 0.25rem 0;
  line-height: 1.6;
}
.icon-list--check, .icon-list--plus, .icon-list--times, .icon-list--dot {
  padding-left: 1.75em;
}
.icon-list--check .icon-list__item::before, .icon-list--plus .icon-list__item::before, .icon-list--times .icon-list__item::before, .icon-list--dot .icon-list__item::before {
  font-family: FontAwesome;
  color: var(--icon-list-color, #e5004b);
  position: absolute;
  left: -1.6em;
  font-size: 0.9em;
}
.icon-list--check .icon-list__item::before {
  content: "\f00c";
}
.icon-list--plus .icon-list__item::before {
  content: "\f067";
}
.icon-list--times .icon-list__item::before {
  content: "\f00d";
}
.icon-list--dot .icon-list__item::before {
  content: "\f111";
  font-size: 0.45em;
  top: 0.55em;
  left: -2.4em;
}
.icon-list--ordered {
  padding-left: 1.75em;
  counter-reset: icon-list-counter;
}
.icon-list--ordered .icon-list__item {
  counter-increment: icon-list-counter;
}
.icon-list--ordered .icon-list__item::before {
  content: counter(icon-list-counter) ".";
  position: absolute;
  left: -1.6em;
  font-weight: 700;
  color: #e5004b;
}
.icon-list--green {
  --icon-list-color: #00e0a1;
}
.icon-list--white {
  --icon-list-color: #fff;
}
.icon-list--cols-2 {
  column-count: 1;
  column-gap: 2rem;
}
@media (min-width: 640px) {
  .icon-list--cols-2 {
    column-count: 2;
  }
}
.icon-list--cols-3 {
  column-count: 1;
  column-gap: 2rem;
}
@media (min-width: 640px) {
  .icon-list--cols-3 {
    column-count: 3;
  }
}

.news-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}
.news-list__item {
  padding: 1.25rem 0;
  border-bottom: 1px solid #ddd;
}
.news-list__item:last-child {
  border-bottom: none;
}
.news-list__link {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  text-decoration: none;
}
.news-list__link:hover .news-list__title {
  color: #e5004b;
}
.news-list__thumbnail {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 15px;
  object-fit: cover;
}
.news-list__thumbnail--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25292d;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.news-list__body {
  display: flex;
  flex-direction: column;
}
.news-list__title {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #25292d;
  text-decoration: none;
  line-height: 1.1em;
}
.news-list__title:hover {
  color: #e5004b;
}
.news-list__date {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #767676;
}
.news-list--compact {
  margin: 0;
}
.news-list--compact .news-list__item {
  padding: 0.625rem 0;
}
.news-list--compact .news-list__thumbnail {
  width: 40px;
  height: 40px;
}
.news-list--compact .news-list__title {
  font-size: 1rem;
}
.news-list--compact .news-list__date {
  font-size: 0.75rem;
}

.news-teaser {
  padding: 2rem 0;
  border-bottom: 1px solid #ddd;
}
.news-teaser__row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}
.news-teaser--no-thumb .news-teaser__row {
  grid-template-columns: minmax(0, 1fr);
}
.news-teaser__thumb {
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: transparent;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 3px;
}
.news-teaser__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-teaser__head {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.news-teaser__head .u-eyebrow {
  margin: 0;
}
.news-teaser__head .headline {
  cursor: pointer;
  text-wrap: balance;
}
.news-teaser__head .subheadline {
  margin: 0;
  font-weight: 400;
  text-wrap: pretty;
}
.news-teaser__meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: #767676;
}
.news-teaser__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.news-teaser__meta-spacer {
  flex: 1;
}
.news-teaser__like {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 0;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  color: #25292d;
}
.news-teaser__like[aria-pressed=true] {
  color: #e5004b;
}
.news-teaser__body {
  margin-top: 2rem;
}
.news-teaser__hero {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-radius: 3px;
  margin-bottom: 2rem;
}
.news-teaser__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.news-teaser__copy p {
  margin: 0;
}
.news-teaser__tags {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #ececec;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.news-teaser__tag {
  display: inline-block;
  padding: 0.25rem 1.25rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #25292d;
  background: #f3f3f3;
}
.news-teaser__toggle-collapse {
  display: none;
}
.news-teaser[data-expanded=true] .news-teaser__thumb {
  display: none;
}
.news-teaser[data-expanded=true] .news-teaser__row {
  grid-template-columns: minmax(0, 1fr);
}
.news-teaser[data-expanded=true] .news-teaser__toggle-read {
  display: none;
}
.news-teaser[data-expanded=true] .news-teaser__toggle-collapse {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 639px) {
  .news-teaser__row {
    grid-template-columns: minmax(0, 1fr);
  }
  .news-teaser__thumb {
    max-width: 180px;
  }
}

.event-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}
.event-list__item {
  padding: 1.25rem 0;
  border-bottom: 1px solid #ddd;
}
.event-list__item:last-child {
  border-bottom: none;
}
.event-list__link {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  text-decoration: none;
}
.event-list__link:hover .event-list__title {
  color: #e5004b;
}
.event-list__badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 15px;
  background-color: #4502da;
  color: #fff;
}
.event-list__badge-day {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1em;
}
.event-list__badge-month {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.event-list__body {
  display: flex;
  flex-direction: column;
}
.event-list__title {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #25292d;
  line-height: 1.1em;
}
.event-list__time {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #767676;
}
.event-list--compact {
  margin: 0;
}
.event-list--compact .event-list__item {
  padding: 0.625rem 0;
}
.event-list--compact .event-list__badge {
  width: 40px;
  height: 40px;
  border-radius: 5px;
}
.event-list--compact .event-list__badge-day {
  font-size: 1.125rem;
}
.event-list--compact .event-list__badge-month {
  font-size: 0.6rem;
}
.event-list--compact .event-list__title {
  font-size: 1rem;
}
.event-list--compact .event-list__time {
  font-size: 0.75rem;
}

.event {
  --event-date-w: 80px;
  position: relative;
  display: grid;
  grid-template-columns: var(--event-date-w) 1fr auto;
  grid-template-areas: "date body    chevron" "date badges  badges" "date actions actions" "panel panel  panel";
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.event:hover {
  box-shadow: 0 0 15px #ececec;
}
.event[data-open=true] {
  border-color: #4502da;
  box-shadow: 0 0 15px #ececec;
}
.event:not(:has(> .event__date)) {
  --event-date-w: 0px;
}
.event:not([data-expandable]):has(> .event__actions) {
  grid-template-columns: var(--event-date-w) 1fr;
  grid-template-areas: "date body" "date badges" "date actions" "panel panel";
}
.event[data-expandable]:not(:has(> .event__actions)) {
  grid-template-columns: var(--event-date-w) 1fr auto;
  grid-template-areas: "date body   chevron" "date badges badges" "panel panel panel";
}
.event:not([data-expandable]):not(:has(> .event__actions)) {
  grid-template-columns: var(--event-date-w) 1fr;
  grid-template-areas: "date body" "date badges" "panel panel";
}
@container (min-width: 600px) {
  .event {
    --event-date-w: 100px;
    grid-template-columns: var(--event-date-w) 1fr auto auto auto;
    grid-template-areas: "date  body   badges actions chevron" "panel panel  panel  panel   panel";
  }
  .event:not([data-expandable]):has(> .event__actions) {
    grid-template-columns: var(--event-date-w) 1fr auto auto;
    grid-template-areas: "date  body   badges actions" "panel panel  panel  panel";
  }
  .event[data-expandable]:not(:has(> .event__actions)) {
    grid-template-columns: var(--event-date-w) 1fr auto auto;
    grid-template-areas: "date  body   badges chevron" "panel panel  panel  panel";
  }
  .event:not([data-expandable]):not(:has(> .event__actions)) {
    grid-template-columns: var(--event-date-w) 1fr auto;
    grid-template-areas: "date  body   badges" "panel panel  panel";
  }
}

.event__date {
  grid-area: date;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0.625rem 0.5rem 0.625rem 0.625rem;
  gap: 2px;
  overflow: hidden;
  transition: background-color 0.15s ease;
}
@container (min-width: 600px) {
  .event__date {
    padding: 1.25rem 0.5rem 1.25rem 1.25rem;
  }
}

.event__date-day {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #25292d;
}
@container (min-width: 600px) {
  .event__date-day {
    font-size: 1.75rem;
  }
}

.event__date-month {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #767676;
}

.event__body {
  grid-area: body;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem 0.5rem;
  min-width: 0;
  transition: background-color 0.15s ease;
}
@container (min-width: 600px) {
  .event__body {
    padding: 1.25rem;
  }
}

.event__title {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}
@container (min-width: 600px) {
  .event__title {
    font-size: 1.25rem;
  }
}

.event__meta {
  font-size: 0.875rem;
  color: #25292d;
  line-height: 1.4;
}

.event__badges {
  grid-area: badges;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem 0.625rem;
  transition: background-color 0.15s ease;
}
@container (min-width: 600px) {
  .event__badges {
    padding: 1.25rem 2rem 1.25rem 0.625rem;
    justify-content: flex-end;
  }
}

.event__actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.625rem 1.25rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: background-color 0.15s ease;
}
@container (min-width: 600px) {
  .event__actions {
    padding: 1.25rem 1.25rem 1.25rem 0;
  }
  .event:not([data-expandable]) .event__actions {
    padding-right: 1.25rem;
  }
}

.event__chevron-wrap {
  grid-area: chevron;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  transition: background-color 0.15s ease;
}
@container (min-width: 600px) {
  .event__chevron-wrap {
    padding: 1.25rem;
  }
}

.event__chevron {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #767676;
  font-size: 12px;
  transition: transform 0.25s cubic-bezier(0.65, 0.05, 0.36, 1), color 0.2s ease;
}
.event[data-open=true] .event__chevron {
  transform: rotate(180deg);
  color: #4502da;
}
.event[data-expandable]:not([data-open=true]):hover .event__chevron {
  color: #4502da;
}

.event__trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}
.event__trigger:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px #e5004b;
  border-radius: inherit;
}

.event[data-expandable]:not([data-open=true]):hover .event__date,
.event[data-expandable]:not([data-open=true]):hover .event__body,
.event[data-expandable]:not([data-open=true]):hover .event__badges,
.event[data-expandable]:not([data-open=true]):hover .event__actions,
.event[data-expandable]:not([data-open=true]):hover .event__chevron-wrap,
.event[data-expandable]:not([data-open=true]):hover .event__panel {
  background: #f3f3f3;
}

.event__panel {
  grid-area: panel;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s cubic-bezier(0.65, 0.05, 0.36, 1);
  position: relative;
  z-index: 2;
}
.event[data-open=true] .event__panel {
  grid-template-rows: 1fr;
}

.event__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.event__panel-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #25292d;
  border-top: 1px solid #ececec;
}
.event__panel-content p {
  margin: 0;
}

.event__details {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5rem 1.25rem;
  font-size: 0.875rem;
  margin: 0.5rem 0 0;
}
.event__details dt {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: #767676;
  align-self: center;
}
.event__details dd {
  margin: 0;
  color: #25292d;
}

@media (prefers-reduced-motion: reduce) {
  .event,
  .event__date,
  .event__body,
  .event__badges,
  .event__actions,
  .event__chevron-wrap,
  .event__panel,
  .event__chevron,
  .event__trigger {
    transition: none;
  }
}
.cards .empty-state {
  grid-column: 1/-1;
}

.empty-state {
  text-align: center;
  padding: 5rem 1.25rem;
}
.empty-state__icon {
  display: block;
  font-size: 3rem;
  color: #ececec;
  margin-bottom: 1.25rem;
}
.empty-state__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #767676;
  margin-bottom: 0.5rem;
}
.empty-state__text {
  font-size: 0.875rem;
  color: #767676;
}
.empty-state__actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.col-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .col-layout {
    flex-direction: row;
    gap: 3rem;
  }
}
.col-layout__col {
  flex: 1;
  min-width: 0;
}

.section {
  padding: 3rem 0;
}
@media (min-width: 1024px) {
  .section {
    padding: 5rem 0;
  }
}
.section {
  margin-top: 0;
}
.section--muted {
  background-color: #f3f3f3;
}
.section--indigo {
  background-color: #4502da;
  color: #fff;
}
.section--indigo .headline,
.section--indigo .subheadline,
.section--indigo a {
  color: #fff;
}
.section--dark {
  background-color: #25292d;
  color: #fff;
}

.bg--primary, .bg--dark, .bg--indigo {
  padding: 1.25rem;
  color: #fff;
}
.bg--primary p, .bg--dark p, .bg--indigo p,
.bg--primary h1,
.bg--dark h1,
.bg--indigo h1,
.bg--primary h2,
.bg--dark h2,
.bg--indigo h2,
.bg--primary .headline,
.bg--dark .headline,
.bg--indigo .headline,
.bg--primary .subheadline,
.bg--dark .subheadline,
.bg--indigo .subheadline {
  margin: 0;
  padding: 0;
  padding-bottom: 0.5rem;
  color: #fff;
}
.bg--primary a, .bg--dark a, .bg--indigo a {
  color: #fff;
}
.bg--primary a:hover, .bg--dark a:hover, .bg--indigo a:hover {
  color: #fff;
}
.bg--primary .btn, .bg--dark .btn, .bg--indigo .btn,
.bg--primary .btn-primary,
.bg--dark .btn-primary,
.bg--indigo .btn-primary {
  margin-right: 10px;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  font-weight: 700;
  box-sizing: border-box;
  font-size: 0.9em;
}
.bg--primary .btn:hover, .bg--dark .btn:hover, .bg--indigo .btn:hover,
.bg--primary .btn-primary:hover,
.bg--dark .btn-primary:hover,
.bg--indigo .btn-primary:hover {
  color: #fff;
}

.bg--indigo {
  background-color: #4502da;
}

.bg--dark {
  background-color: #25292d;
}

.bg--primary {
  background-color: #e5004b;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bg--primary > :last-child {
  margin-top: auto;
}

.bg--white {
  padding: 1.25rem;
  background-color: #fff;
  color: #25292d;
}
.bg--white p,
.bg--white h1,
.bg--white h2,
.bg--white .headline,
.bg--white .subheadline {
  color: #25292d;
}
.bg--white a,
.bg--white a:hover,
.bg--white a:active,
.bg--white a:visited {
  color: #25292d;
}

.cta-block {
  background: #4502da;
  color: #fff;
  padding: 3rem 0;
}
@media (min-width: 1024px) {
  .cta-block {
    padding: 5rem 0;
  }
}

.cta-block__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.25rem;
}

.cta-block__title {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  font-size: 1.75rem;
  line-height: 1;
  color: #fff;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}
@media (min-width: 1024px) {
  .cta-block__title {
    font-size: 2.5rem;
  }
}

.cta-block__title--display {
  font-size: 2.5rem;
}
@media (min-width: 1024px) {
  .cta-block__title--display {
    font-size: 4rem;
    letter-spacing: -0.25rem;
  }
}

.cta-block__lede {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.25rem;
  max-width: 32em;
  text-wrap: pretty;
}
@media (min-width: 1024px) {
  .cta-block__lede {
    font-size: 1.125rem;
  }
}

.cta-block__actions {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-block__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.cta-block__text {
  flex: 1;
}

.cta-block__media {
  aspect-ratio: 4/3;
  background: #25292d center/cover no-repeat;
  border-radius: 3px;
  width: 100%;
}
@media (min-width: 1024px) {
  .cta-block__media {
    flex: 1;
  }
}

.cta-block--centered {
  text-align: center;
}
.cta-block--centered .cta-block__title,
.cta-block--centered .cta-block__lede {
  margin-left: auto;
  margin-right: auto;
}
.cta-block--centered .cta-block__title {
  max-width: 18em;
}
.cta-block--centered .cta-block__lede {
  max-width: 36em;
}
.cta-block--centered .cta-block__actions {
  justify-content: center;
}

@media (min-width: 1024px) {
  .cta-block--banner .cta-block__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
  .cta-block--banner .cta-block__text {
    max-width: 32em;
  }
  .cta-block--banner .cta-block__title {
    margin-bottom: 0.5rem;
  }
  .cta-block--banner .cta-block__lede {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .cta-block--split .cta-block__inner {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .cta-block--split .cta-block__text {
    flex: 1;
  }
}

.cta-block--bordered {
  background: #fff;
  color: #25292d;
  border: 1px solid #e5004b;
  border-radius: 3px;
  padding: 2rem;
}
.cta-block--bordered .cta-block__eyebrow {
  color: #e5004b;
}
.cta-block--bordered .cta-block__title {
  color: #000;
}
.cta-block--bordered .cta-block__lede {
  color: #25292d;
}
.cta-block--bordered .cta-block__actions {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .cta-block--bordered .cta-block__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
}

.cta-block--band {
  padding: 1.25rem 0;
}
.cta-block--band .cta-block__inner {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-block--band .cta-block__title {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
}
.cta-block--band .cta-block__actions {
  margin-top: 0;
}

.media-block {
  padding-block: 3rem;
}
@media (min-width: 1024px) {
  .media-block {
    padding-block: 5rem;
  }
}

.media-block__text {
  align-self: center;
}

@media (min-width: 1024px) {
  .media-block--half .media-block__media-col,
  .media-block--wide-text .media-block__media-col {
    order: 2;
  }
  .media-block--half .media-block__text,
  .media-block--wide-text .media-block__text {
    order: 1;
  }
}
.media-block__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #e5004b;
  margin: 0 0 1.25rem;
}

.media-block__text .headline {
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.media-block__lede {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.45;
  color: #25292d;
  margin: 0 0 1.25rem;
  max-width: 32em;
  text-wrap: pretty;
}

.media-block__body {
  font-size: 1rem;
  line-height: 1.65;
  color: #25292d;
  margin: 0 0 1.25rem;
  max-width: 32em;
}
.media-block__body p {
  margin: 0 0 0.625rem;
}
.media-block__body p:last-child {
  margin-bottom: 0;
}

.media-block__cta-row {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.media-block__media {
  width: 100%;
  background: #ececec center/cover no-repeat;
  border-radius: 3px;
  aspect-ratio: 4/3;
}
.media-block__media--portrait {
  aspect-ratio: 3/4;
}
.media-block__media--square {
  aspect-ratio: 1/1;
}
.media-block__media--wide {
  aspect-ratio: 16/9;
}

.text-block {
  padding-block: 3rem;
}
@media (min-width: 1024px) {
  .text-block {
    padding-block: 5rem;
  }
}

.text-block__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #e5004b;
  margin: 0 0 1.25rem;
}

.text-block__col-title .headline {
  text-wrap: balance;
  margin-bottom: 0;
}

.text-block__col-body {
  min-width: 0;
}
.text-block__col-body p {
  margin: 0 0 1.25rem;
  line-height: 1.6;
  font-size: 1rem;
  color: #25292d;
}
.text-block__col-body p:last-child {
  margin-bottom: 0;
}

.block {
  padding-block: 3rem;
}
@media (min-width: 1024px) {
  .block {
    padding-block: 5rem;
  }
}

.block__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #e5004b;
  margin: 0 0 1.25rem;
}

.block__title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  font-size: 1.75rem;
  line-height: 1;
  color: #000;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}
@media (min-width: 1024px) {
  .block__title {
    font-size: 2.5rem;
  }
}

.block__title--display {
  font-size: 3rem;
}
@media (min-width: 1024px) {
  .block__title--display {
    font-size: 4rem;
    letter-spacing: -0.25rem;
  }
}

.block__lede {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  color: #25292d;
  margin: 0 0 1.25rem;
  max-width: 32em;
  text-wrap: pretty;
}
@media (min-width: 1024px) {
  .block__lede {
    font-size: 1.125rem;
  }
}

.block__cta-row {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-top: 0.625rem;
}

.text-block--manifest {
  text-align: center;
}
.text-block--manifest .block__title,
.text-block--manifest .block__lede {
  margin-left: auto;
  margin-right: auto;
}
.text-block--manifest .block__title {
  max-width: 14em;
}
.text-block--manifest .block__lede {
  max-width: 36em;
}
.text-block--manifest .block__cta-row {
  justify-content: center;
}

.tb-features__intro {
  text-align: center;
}
.tb-features__intro .block__title {
  max-width: 14em;
  margin-left: auto;
  margin-right: auto;
}
.tb-features__intro .block__lede {
  margin-left: auto;
  margin-right: auto;
}

.tb-features-divider {
  border: 0;
  border-top: 1px solid #ececec;
  margin: 2rem 0 2.5rem;
  grid-column: 1/-1;
}

.tb-feature__num {
  font-weight: 800;
  font-size: 1.5rem;
  color: #e5004b;
  margin-bottom: 0.5rem;
  display: block;
}

.tb-feature__title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 1rem;
  line-height: 1.2;
  color: #000;
  margin: 0 0 0.5rem;
}

.tb-feature__body {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #25292d;
  margin: 0;
}

.text-block--quote {
  text-align: center;
  background: #f3f3f3;
  padding-block: 4rem;
}

.tb-quote__mark {
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 0.5;
  color: #e5004b;
  display: block;
  margin: 0 auto 2rem;
  height: 2rem;
}

.tb-quote__text {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 300;
  color: #25292d;
  margin: 0 auto 2rem;
  max-width: 22em;
  text-wrap: balance;
}
@media (min-width: 1024px) {
  .tb-quote__text {
    font-size: 2rem;
  }
}

.tb-quote__author {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #767676;
}
.tb-quote__author strong {
  color: #25292d;
  margin-right: 0.25rem;
}

.full-bleed-overlay {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  min-height: 360px;
  color: #fff;
  background: #000 center/cover no-repeat;
  display: flex;
}
@media (min-width: 1024px) {
  .full-bleed-overlay {
    min-height: 520px;
  }
}

.full-bleed-overlay__inner {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 32em;
}
@media (min-width: 1024px) {
  .full-bleed-overlay__inner {
    padding: 3rem;
  }
}

.full-bleed-overlay__eyebrow {
  margin: 0 0 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

.full-bleed-overlay .headline {
  color: #fff;
}

.full-bleed-overlay__lede {
  margin: 1.25rem 0;
  max-width: 32em;
  font-size: 1.125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.full-bleed-overlay__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.625rem;
}

.full-bleed-overlay--bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}
.full-bleed-overlay--bottom-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.75) 100%);
}

.full-bleed-overlay--side-card {
  align-items: stretch;
}
.full-bleed-overlay--side-card .full-bleed-overlay__inner {
  align-self: center;
  margin: 2rem;
  padding: 2rem;
  max-width: 24em;
  background: #4502da;
  border-radius: 3px;
}
@media (min-width: 1024px) {
  .full-bleed-overlay--side-card .full-bleed-overlay__inner {
    margin: 3rem;
    padding: 3rem;
  }
}

.card-overlap {
  padding-block: 3rem;
  background: #f3f3f3;
}
@media (min-width: 1024px) {
  .card-overlap {
    padding-block: 5rem;
  }
}

.card-overlap + .card-overlap {
  margin-top: 0;
  padding-top: 0;
}

.card-overlap__media {
  width: 100%;
  background: #ececec center/cover no-repeat;
  border-radius: 3px;
  aspect-ratio: 4/3;
}

.card-overlap__panel {
  align-self: center;
  background: #fff;
  padding: 2rem;
  border-radius: 3px;
}
@media (min-width: 1024px) {
  .card-overlap__panel {
    padding: 3rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 2;
  }
}

@media (min-width: 1024px) {
  .card-overlap--right .card-overlap__panel {
    margin-left: -4rem;
  }
  .card-overlap--left .card-overlap__panel {
    margin-right: -4rem;
  }
  .card-overlap--left .card-overlap__media-col {
    order: 2;
  }
  .card-overlap--left .card-overlap__panel {
    order: 1;
  }
}
.card-overlap__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #e5004b;
  margin: 0 0 1.25rem;
}

.card-overlap__panel .headline {
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.card-overlap__lede {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.45;
  color: #25292d;
  margin: 0 0 1.25rem;
  max-width: 32em;
  text-wrap: pretty;
}

.card-overlap__cta-row {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.container {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem;
  container-type: inline-size;
}
@media (min-width: 1024px) {
  .container {
    padding: 2rem;
  }
}
@media (min-width: 1280px) {
  .container {
    padding: 3rem;
  }
}
.container {
  max-width: 1440px;
  padding-block: 0;
}

.container--wide {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem;
  container-type: inline-size;
}
@media (min-width: 1024px) {
  .container--wide {
    padding: 2rem;
  }
}
@media (min-width: 1280px) {
  .container--wide {
    padding: 3rem;
  }
}
.container--wide {
  max-width: 1150px;
}

.container--reading {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem;
  container-type: inline-size;
}
@media (min-width: 1024px) {
  .container--reading {
    padding: 2rem;
  }
}
@media (min-width: 1280px) {
  .container--reading {
    padding: 3rem;
  }
}
.container--reading {
  max-width: 860px;
}

.container--prose {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem;
  container-type: inline-size;
}
@media (min-width: 1024px) {
  .container--prose {
    padding: 2rem;
  }
}
@media (min-width: 1280px) {
  .container--prose {
    padding: 3rem;
  }
}
.container--prose {
  max-width: 680px;
}

.container--narrow {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem;
  container-type: inline-size;
}
@media (min-width: 1024px) {
  .container--narrow {
    padding: 2rem;
  }
}
@media (min-width: 1280px) {
  .container--narrow {
    padding: 3rem;
  }
}
.container--narrow {
  max-width: 480px;
}

.container--full {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem;
  container-type: inline-size;
}
@media (min-width: 1024px) {
  .container--full {
    padding: 2rem;
  }
}
@media (min-width: 1280px) {
  .container--full {
    padding: 3rem;
  }
}
.container--full {
  max-width: none;
  padding: 0;
}

.container__flex {
  display: flex;
}
.container__flex-between {
  flex-flow: row nowrap;
  justify-content: space-between;
}
.container__flex-align-center {
  align-items: center;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.stack--sm {
  gap: 1.25rem;
}

.flex-split {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .flex-split {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }
}

.panel {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
  padding: 2rem;
}
@media (min-width: 1024px) {
  .panel {
    padding: 3rem;
  }
}

.spacer--xs {
  padding: 0.25rem 0;
}
.spacer--sm {
  padding: 0.625rem 0;
}
.spacer--md {
  padding: 1.25rem 0;
}
.spacer--lg {
  padding: 2rem 0;
}
.spacer--xl {
  padding: 3rem 0;
}
.spacer--divider {
  border-bottom: 1px solid #ececec;
}

.adventDoor {
  box-sizing: border-box;
}
.adventDoor .adventDoorContent {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2em;
  font-size: 2em;
  background-color: #ececec;
  margin: auto;
  text-align: center;
  font-weight: 900;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media (min-width: 1280px) {
  .adventDoor .adventDoorContent {
    width: 85%;
    height: 2.5em;
    font-size: 2.5em;
  }
}
.adventDoor .adventDoorContent:hover {
  box-shadow: 0 0 15px #767676;
  background-color: #e5004b;
  color: #fff;
}

progress[value] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  color: #4502da;
}

progress::-webkit-progress-bar {
  background-color: #ececec;
  border-radius: 7px;
  border: 0.5px solid #767676;
}

progress::-webkit-progress-value {
  background-color: #4502da;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}

progress::-moz-progress-bar {
  background-color: #4502da;
}

.progressbar {
  width: 100%;
  height: 7px;
}

.flexbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  align-items: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
}
.flexbox.flex-between {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: row nowrap;
  -webkit-flex-flow: row nowrap;
  -moz-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}
.flexbox.flex-center {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  align-items: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
}
.flexbox {
  margin-top: 0px;
}
.flexbox .flex6 {
  -webkit-box-flex: 0 1 auto;
  -moz-box-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  padding: 0px 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
  width: 33.33%;
  flex-basis: 33.33%;
}
.flexbox .flex33,
.flexbox .flex50 {
  -webkit-box-flex: 0 1 auto;
  -moz-box-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
}
.flexbox .flex33 img,
.flexbox .flex50 img {
  max-width: 100%;
}

@media (min-width: 640px) {
  article .flexbox .flex6 {
    width: 33.33%;
    flex-basis: 33.33%;
  }
  article .flexbox .flex33 {
    width: 50%;
    flex-basis: 50%;
  }
  article .flexbox .flex50 {
    width: 50%;
    flex-basis: 50%;
  }
}
@media (min-width: 1280px) {
  article .flexbox .flex6 {
    width: 16.66%;
    flex-basis: 16.66%;
  }
  article .flexbox .flex33 {
    width: 33.33%;
    flex-basis: 33.33%;
  }
  article .flexbox .flex50 {
    width: 50%;
    flex-basis: 50%;
  }
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-wrapper--flush {
  margin: 0;
  overflow-x: visible;
}

.t {
  width: 100%;
  border-collapse: collapse;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #25292d;
  line-height: 1.15;
}
.t thead th {
  text-align: left;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #767676;
  padding: 1.25rem;
  padding-top: 0.625rem;
  border-bottom: 2px solid #25292d;
  vertical-align: bottom;
  white-space: nowrap;
}
.t tbody td {
  padding: 1.25rem;
  border-bottom: 1px solid #ececec;
  vertical-align: middle;
}
.t tbody tr:last-child td {
  border-bottom: 0;
}
.t tbody tr {
  transition: background-color 0.15s;
}
.t tbody tr:hover {
  background: #f3f3f3;
}
.t tbody tr[aria-selected=true] {
  background: rgba(229, 0, 75, 0.04);
  box-shadow: inset 3px 0 0 #e5004b;
}
.t .t-num, .t th.t-num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.t .t-fit, .t th.t-fit {
  width: 1%;
  white-space: nowrap;
}
.t th.t-sort {
  cursor: pointer;
  user-select: none;
  transition: color 0.15s;
}
.t th.t-sort::after {
  content: "↕";
  display: inline-block;
  margin-left: 0.5rem;
  opacity: 0.4;
  font-size: 0.9em;
  transition: opacity 0.15s, transform 0.15s;
}
.t th.t-sort:hover {
  color: #25292d;
}
.t th.t-sort:hover::after {
  opacity: 1;
}
.t th.t-sort[aria-sort=ascending] {
  color: #25292d;
}
.t th.t-sort[aria-sort=ascending]::after {
  content: "↑";
  opacity: 1;
  color: #e5004b;
}
.t th.t-sort[aria-sort=descending] {
  color: #25292d;
}
.t th.t-sort[aria-sort=descending]::after {
  content: "↓";
  opacity: 1;
  color: #e5004b;
}
.t a,
.t a:active,
.t a:visited {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s, text-decoration-color 0.15s;
}
.t a:hover {
  color: #e5004b;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}
.t a:focus-visible {
  outline: none;
  border-radius: 2px;
  box-shadow: 0 0 0 3px rgba(229, 0, 75, 0.25);
}

.t--striped tbody tr:nth-child(even) {
  background: #f3f3f3;
}
.t--striped tbody tr:nth-child(even):hover {
  background: #ececec;
}

.t--compact {
  font-size: 0.875rem;
}
.t--compact thead th {
  padding: 0.625rem;
  padding-top: 0.25rem;
  font-size: 0.6875rem;
}
.t--compact tbody td {
  padding: 0.625rem;
}

.t--dark thead th {
  background: #25292d;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 0;
  padding: 0.625rem 1.25rem;
}
.t--dark thead th:first-child {
  border-top-left-radius: 3px;
}
.t--dark thead th:last-child {
  border-top-right-radius: 3px;
}

.t--dark thead a {
  color: rgba(255, 255, 255, 0.85);
}

.t-card {
  border: 1px solid #ececec;
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
}
.t-card > .t thead th {
  background: #f3f3f3;
  border-bottom: 1px solid #ececec;
}
.t-card > .t tbody tr:last-child td {
  border-bottom: 0;
}

.t-avatar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.t-avatar__circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3f3f3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #767676;
  flex-shrink: 0;
}
.t-avatar__meta {
  line-height: 1.25;
}
.t-avatar__meta small {
  display: block;
  font-size: 0.75rem;
  color: #767676;
  font-weight: 400;
}

.t-price {
  font-weight: 800;
  color: #4502da;
  font-size: 1.125rem;
  font-variant-numeric: tabular-nums;
}

.t-row-cta {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #25292d;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.t-row-cta::after {
  content: "→";
  transition: transform 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.t-row-cta:hover {
  color: #e5004b;
  text-decoration: none;
}
.t-row-cta:hover::after {
  transform: translateX(4px);
}

.t-empty {
  text-align: center;
  padding: 5rem 1.25rem !important;
  color: #767676;
}
.t-empty i {
  font-size: 28px;
  display: block;
  margin-bottom: 0.25rem;
  color: #ececec;
}
.t-empty strong {
  display: block;
  color: #25292d;
  font-weight: 700;
  margin-bottom: 4px;
}

footer {
  padding: 0;
  background-color: #25292d;
}
footer > .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  align-items: flex-start;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
footer a,
footer a:active,
footer a:visited {
  color: #fff;
  text-decoration: none;
}
footer a:hover,
footer a:active:hover,
footer a:visited:hover {
  color: #fff;
  text-decoration: underline;
}
footer p {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6em;
  margin: 0.25rem 0;
}
footer address {
  font-style: normal;
}
footer .footer__heading {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 0.625rem 0;
}

.footer__brand {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .footer__brand {
    flex: 1 1 0;
  }
}

.footer__logo {
  width: 150px;
}

.footer__hours dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  row-gap: 0.25rem;
}
@media (min-width: 640px) {
  .footer__hours dl {
    grid-template-columns: max-content auto;
    column-gap: 3rem;
  }
}
.footer__hours dt,
.footer__hours dd {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6em;
  margin: 0;
}
.footer__hours dt {
  font-weight: 400;
}

.footer__social {
  display: flex;
  gap: 0.625rem;
}
.footer__social a {
  opacity: 0.8;
}
.footer__social a:hover {
  opacity: 1;
  text-decoration: none;
}
.footer__social i {
  font-size: 2.5rem;
}

.footer__legal {
  background-color: #1c1f22;
  padding: 2rem 0;
}
.footer__legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}
.footer__legal nav a {
  font-size: 0.75rem;
  color: #fff;
  opacity: 0.6;
}
.footer__legal nav a:hover {
  opacity: 1;
}

.footer__nav {
  flex: 1 1 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}
@media (min-width: 1024px) {
  .footer__nav {
    flex: 2 1 0;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.footer__nav-group .footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer__nav-group li a {
  font-size: 0.875rem;
  font-weight: 300;
  opacity: 0.8;
}
.footer__nav-group li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.display__headline,
h1 {
  line-height: 0.9;
  text-wrap: balance;
}

.headline,
h2 {
  line-height: 1;
  text-wrap: balance;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.subheadline,
h3 {
  line-height: 1.15;
}

p {
  margin: 0.75em 0;
}

ul:where(:not([class])),
ol:where(:not([class])) {
  margin: 0.75em 0;
  padding-left: 1.25rem;
}

ul:where(:not([class])) > li + li,
ol:where(:not([class])) > li + li {
  margin-top: 0.35em;
}

ul:where(:not([class])) {
  list-style: disc;
}

ol:where(:not([class])) {
  list-style: decimal;
}

strong, b {
  font-weight: 700;
}

em {
  font-style: italic;
}

small {
  font-size: 0.75rem;
  color: #767676;
}

hr {
  border: 0;
  height: 1px;
  background: #ececec;
  margin: 2rem 0;
}

blockquote {
  margin: 2rem 0;
  padding-left: 1.25rem;
  border-left: 3px solid #e5004b;
  color: #25292d;
  font-style: normal;
}

.prose {
  max-width: 65ch;
  font-size: 1rem;
  line-height: 1.65;
  color: #25292d;
}
.prose > * + * {
  margin-top: 1.25rem;
}
.prose h2 {
  margin-top: 3rem;
  margin-bottom: 0.5rem;
}
.prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.prose p, .prose ul, .prose ol {
  text-wrap: pretty;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
html,
body {
  margin: 0px;
  padding: 0px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #25292d;
  line-height: 1.5;
  scroll-behavior: smooth;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

code {
  border-left: 2px solid #767676;
  background-color: #ececec;
  padding: 0.4em 0.8em;
}

header,
article,
footer {
  width: 100%;
}

p {
  margin: 10px 0;
  font-size: 1em;
  line-height: 1.6em;
  font-weight: 400;
}
