@import "./utility.css";
@import "./typography.css";

.lds-layout-container {
  margin: 0 auto;
}

body:not(.appear) {
  display: none;
}

.default-content-wrapper.lds-layout-container > * {
  grid-column: span 12;
}

.text-component.lds-layout-container > * {
  grid-column: span 12;
}

@media (width >= 1200px) {
  /* Narrow Content Section Container */
  /* Offset Column Container Sections */
  /* Ideally this should be handled in aem.js as we decorate sections / blocks */
  .lds-content-section-padding-narrow
    > [class*="-wrapper"]:not(.form-wrapper, .two-column-with-image-wrapper)
    > .lds-layout-container
    > [class*="col-"],
  .section.multi-column-split.offset > [class*="col-"] {
    grid-column-start: 2;
    grid-column-end: span 10;
  }

  .lds-content-section-padding-narrow
    > [class*="-wrapper"]:not(.form-wrapper, .two-column-with-image-wrapper)
    > .lds-layout-container
    > .carousel-indicators {
    grid-column-end: span 2;
  }

  /* Narrow content section container fix for text components */
  .lds-content-section-padding-narrow .text-component.block > div {
    grid-column-start: 2;
    grid-column-end: span 10;
  }

  .lds-content-section-padding-narrow .default-content-wrapper > * {
    grid-column-start: 2;
    grid-column-end: span 10;
  }

  /* Wide content section container fix for text components */
  .lds-content-section-padding-wide .text-component.block > div {
    grid-column-start: 3;
    grid-column-end: span 8;
  }

  .lds-content-section-padding-wide .default-content-wrapper > * {
    grid-column-start: 3;
    grid-column-end: span 8;
  }

  /* Wide Content Section Container */
  /* Ideally this should be handled in aem.js as we decorate sections / blocks */
  .lds-content-section-padding-wide
    > [class*="-wrapper"]:not(.form-wrapper, .two-column-with-image-wrapper)
    > .lds-layout-container
    > [class*="col-"] {
    grid-column-start: 3;
    grid-column-end: span 8;
  }
}

/* LDS adjustment for native-aem-columns */
[class*="columns-"] > div {
  grid-column: span 12;
}

/* Adjusting font-faces to point to the local folder, should be removed later */
@font-face {
  font-family: "Ringside";
  src: url("../assets/fonts/ringside/sans-serif/400/latin.woff2")
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "ITC Garamond Narrow";
  src: url("../assets/fonts/garamond/serif-narrow-condensed/400/latin.woff2")
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "ITC Garamond Narrow Italic";
  src: url("../assets/fonts/garamond/serif-narrow-condensed/400/latin_italic.woff2")
    format("woff2");
  font-display: swap;
}

/* remove later */
.p,
.paragraph,
blockquote,
dd,
dt,
li,
p {
  font: inherit;
  color: inherit;
}

main .lds-content-section-primary-red {
  background-color: var(--lds-g-color-palette-red-005);
}

main .lds-content-section-secondary-red {
  background-color: var(--lds-g-color-palette-red-010);
}

main .lds-content-section-tertiary-blue {
  background-color: var(--lds-g-color-palette-stone-005);
}

main .lds-content-section-quaternary-gray {
  background-color: var(--lds-g-color-palette-stone-020);
}

main .lds-content-section-secondary-green {
  background-color: var(--lds-g-color-palette-teal-020);
}

main .lds-content-section-padding-wide {
  padding: var(--lds-g-spacing-1800) 0;
}

main .lds-content-section-padding-narrow {
  padding: var(--lds-g-spacing-800) 0;
}

main .lds-content-section-margin-narrow {
  margin: var(--lds-g-spacing-800);
}

main .lds-content-section-margin-wide {
  margin: var(--lds-g-spacing-1600);
}

main .lds-content-section-rounded-borders {
  border-radius: var(--lds-g-radius-4);
}

main .default-content-wrapper picture img {
  width: 100%;
  gap: 8px;
  border-radius: var(--corner-radius-48px, 48px);
}

main .default-content-wrapper picture {
  display: flex;
  padding: 72px 0;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.icon {
  display: inline-block;
  height: 24px;
  width: 24px;
}

@media (width > 1440px) {
  main .lds-content-section-margin-narrow {
    margin: var(--lds-g-spacing-800)
      calc((100vw - 1440px) / 2 + var(--lds-g-spacing-800)) !important;
  }
  main .lds-content-section-margin-wide {
    margin: var(--lds-g-spacing-1600)
      calc((100vw - 1440px) / 2 + var(--lds-g-spacing-1600)) !important;
  }
}

@media (width < 900px) {
  .lds-content-section-padding-narrow
    > [class*="-wrapper"]:not(.form-wrapper)
    > .lds-layout-container
    > .carousel-indicators {
    grid-column-end: span 4;
  }

  main .default-content-wrapper picture img {
    display: flex;
    width: 100%;
    height: 458.691px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 24px;
    padding: 0;
    object-fit: cover;
    object-position: center;
  }

  main .default-content-wrapper picture {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: var(--color-lillybrand-white, #fff);
  }
}

/* section metadata */
main .section.light,
main .section.highlight {
  background-color: var(--light-color);
}

/* -----------------Breadcrumb styles--------------- */
.breadcrumb-container {
  z-index: 10;
  display: flex;
  align-items: center;
  width: inherit;
  padding: var(--lds-g-spacing-50);
  gap: var(--lds-g-spacing-100);
  width: 100%;
}

.breadcrumb-container .breadcrumb-item {
  overflow: hidden;
  color: var(--lds-g-color-neutral-base-000);
  text-overflow: ellipsis;
  font: var(--lds-g-typography-ringside-special-eyebrow-desktop);
  font-size: var(--lds-g-font-size-neg-2);
  text-transform: uppercase;
  text-decoration: none;
  cursor: unset;
}

.breadcrumb-container .breadcrumb-link {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 4%;
  text-underline-offset: 24%;
  text-underline-position: from-font;
  cursor: pointer;
  text-overflow: unset;
  overflow: visible;
}

.breadcrumb-container .breadcrumb-link:focus-visible {
  border-radius: var(--lds-g-radius-0);
  border: var(--lds-g-sizing-border-2) solid var(--lds-g-color-neutral-base-020);
  outline: none;
}

.breadcrumb-container .breadcrumb-divider {
  color: var(--lds-g-color-neutral-base-000);
  font: var(--lds-g-typography-ringside-special-eyebrow-desktop);
  text-transform: uppercase;
  text-decoration: none;
}

.breadcrumb-container .breadcrumb-home-page-container {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: var(--lds-g-spacing-050);
}

.breadcrumb-container .breadcrumb-home-page-container:focus-visible {
  border-radius: var(--lds-g-radius-0);
  border: var(--lds-g-sizing-border-2) solid var(--lds-g-color-neutral-base-020);
  outline: none;
}

.breadcrumb-container .breadcrumb-home-page-container .breadcrumb-item {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 4%;
  text-underline-offset: 24%;
  text-underline-position: from-font;
}

.breadcrumb-container .icon-home-page {
  line-height: 0;
}

.breadcrumb-container .icon-home-page img {
  width: 13px;
  height: 13px;
  max-width: unset;
}

.breadcrumb-container .breadcrumb-ellipse {
  color: var(--lds-g-color-neutral-base-000);
  font: var(--lds-g-typography-ringside-special-eyebrow-desktop);
  font-weight: var(--lds-g-font-weight-900);
  text-transform: uppercase;
  padding: var(--lds-g-spacing-50) var(--lds-g-spacing-100);
  cursor: pointer;
  width: var(--lds-g-spacing-350);
  height: var(--lds-g-spacing-350);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.breadcrumb-container .breadcrumb-ellipse:focus-visible {
  border-radius: 50%;
  border: var(--lds-g-sizing-border-2) solid var(--lds-g-color-neutral-base-020);
  outline: none;
}

.breadcrumb-container .breadcrumb-ellipse-dropdown {
  display: flex;
  max-width: 260px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: var(--lds-g-radius-4);
  box-shadow: var(--lds-g-shadow-bottom-3);
  background: var(--lds-g-color-neutral-base-005);
  position: absolute;
  z-index: 1000;
}

.breadcrumb-container .dropdown-item {
  color: var(--lds-g-color-neutral-base-100);
  font: var(--lds-g-typography-ringside-body-large);
  text-decoration: none;
  padding: var(--lds-g-spacing-200) var(--lds-g-spacing-300);
  cursor: pointer;
  word-break: break-all;
}

.breadcrumb-top-positioned {
  margin: calc(var(--lds-g-spacing-2000) + var(--lds-g-spacing-250))
    var(--lds-g-spacing-800) 0 var(--lds-g-spacing-800);
}

.breadcrumb-top-positioned .breadcrumb-home-page-container:focus-visible {
  border: var(--lds-g-sizing-border-2) solid var(--lds-g-color-neutral-base-100);
}

.breadcrumb-top-positioned .breadcrumb-link:focus-visible {
  border: var(--lds-g-sizing-border-2) solid var(--lds-g-color-neutral-base-100);
}

.breadcrumb-top-positioned .breadcrumb-item {
  color: var(--lds-g-color-neutral-base-100);
}

.breadcrumb-top-positioned .breadcrumb-divider {
  color: var(--lds-g-color-neutral-base-100);
}

.breadcrumb-top-positioned .breadcrumb-ellipse {
  color: var(--lds-g-color-neutral-base-100);
}

.breadcrumb-top-positioned .breadcrumb-ellipse:focus-visible {
  border: var(--lds-g-sizing-border-2) solid var(--lds-g-color-neutral-base-100);
}

.breadcrumb-top-positioned .icon-home-page img {
  filter: brightness(0) saturate(100%) invert(8%) sepia(17%) saturate(18%)
    hue-rotate(124deg) brightness(94%) contrast(95%);
}
.breadcrumb-home-page-container.breadcrumb-item.breadcrumb-link
  .home-page-breadcrumb {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 4%;
  text-underline-offset: 24%;
  text-underline-position: from-font;
}
.breadcrumb-home-page-container.breadcrumb-item.breadcrumb-link
  .home-page-breadcrumb
  + .breadcrumb-divider {
  padding-left: var(--lds-g-spacing-050);
}

@media (width < 950px) {
  .breadcrumb-container .breadcrumb-item {
    line-height: var(--lds-g-font-line-height-1);
  }

  .breadcrumb-container .current-page {
    width: 70vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1 1 0%;
  }

  .breadcrumb-container .home-page-breadcrumb {
    display: none;
  }

  .breadcrumb-top-positioned {
    margin: calc(var(--lds-g-spacing-1200) + var(--lds-g-spacing-100))
      var(--lds-g-spacing-200) 0 var(--lds-g-spacing-200);
  }
}

/* -------------cta links and buttons styles-------------------- */

.cta-button-filled,
.cta-button-dark,
.cta-button-outline {
  font: var(--lds-g-typography-ringside-special-cta-button-desktop);
  padding: var(--lds-g-spacing-150) var(--lds-g-spacing-300);
  border-radius: var(--lds-g-radius-6);
  text-decoration: none;
  border: none;
  box-shadow: none;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--lds-g-spacing-150);
  cursor: pointer;
}

/* filled cta */
.cta-button-filled {
  background-color: var(--lds-g-color-palette-red-060);
  color: var(--lds-g-color-neutral-base-000);
}

.cta-button-filled:focus-visible {
  border-radius: var(--lds-g-radius-7);
  background: var(--lds-g-color-palette-red-070);
  outline: var(--lds-g-sizing-border-2) solid
    var(--lds-g-color-neutral-base-100);
  outline-offset: var(--lds-g-sizing-border-2) !important;
}

.cta-button-filled:hover {
  background: var(--lds-g-color-palette-red-070);
}

.cta-button-filled:active {
  background: var(--lds-g-color-palette-red-080);
}

.cta-button-filled:disabled {
  background: var(--lds-g-color-neutral-base-020);
  color: var(--lds-g-color-neutral-base-060);
}
/* dark cta */
.cta-button-dark {
  background-color: var(--lds-g-color-neutral-base-090);
  border: 1.5px solid var(--lds-g-color-neutral-base-100);
  color: var(--lds-g-color-palette-transparent-white-100);
}

.cta-button-dark:focus-visible,
.cta-button-dark:hover {
  background: var(--lds-g-color-neutral-base-090);
  outline: var(--lds-g-sizing-border-2) solid
    var(--lds-g-color-neutral-base-100);
  outline-offset: var(--lds-g-sizing-border-2) !important;
}

.cta-button-dark:active {
  background: var(--lds-g-color-neutral-base-090);
}

.cta-button-dark:disabled {
  border-color: var(--lds-g-color-neutral-base-020);
  color: var(--lds-g-color-neutral-base-060);
  background: transparent;
  cursor: not-allowed;
}

/* outline cta button*/
.cta-button-outline {
  border: 1.5px solid var(--lds-g-color-neutral-base-100);
  background-color: transparent;
  color: var(--lds-g-color-neutral-base-100);
  font: var(--lds-g-typography-ringside-special-cta-button-default);
}

.cta-button-outline:focus-visible,
.cta-button-outline:hover {
  border-color: var(--lds-g-color-palette-red-070);
  color: var(--lds-g-color-palette-red-070);
}
.cta-button-outline:focus-visible {
  outline: var(--lds-g-sizing-border-2) solid
    var(--lds-g-color-neutral-base-100);
  outline-offset: var(--lds-g-sizing-border-2) !important;
}

.cta-button-outline:active {
  border-color: var(--lds-g-color-palette-red-080);
  color: var(--lds-g-color-palette-red-080);
}

.cta-button-outline:disabled {
  background: var(--lds-g-color-neutral-base-020);
  color: var(--lds-g-color-neutral-base-060);
  border: 1.5px solid var(--lds-g-color-neutral-base-060);
}

/* text cta */
.cta-text {
  font: var(--lds-g-typography-ringside-special-cta-text-link-desktop);
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 4%;
  text-underline-offset: 24%;
  text-underline-position: from-font;
  border-radius: var(--lds-g-radius-1);
  width: fit-content;
  cursor: pointer;
  outline: none;
}

.cta-text.cta-text-red {
  color: var(--lds-g-color-palette-red-060);
}

.cta-text.cta-text-red:visited {
  color: var(--lds-g-color-palette-red-080);
}

.cta-text.cta-text-red:focus-visible {
  color: var(--lds-g-color-palette-red-060);
  border: var(--lds-g-sizing-border-2) solid var(--lds-g-color-neutral-base-070);
  padding: var(--lds-g-spacing-050) var(--lds-g-spacing-0);
}

.cta-text.cta-text-red:hover {
  color: var(--lds-g-color-palette-red-060);
}

.cta-text.cta-text-red:active {
  color: var(--lds-g-color-palette-red-070);
}

.cta-text.cta-text-black {
  color: var(--lds-g-color-neutral-base-080);
}

.cta-text.cta-text-black:visited {
  color: var(--lds-g-color-neutral-base-100);
}

.cta-text.cta-text-black:focus-visible {
  color: var(--lds-g-color-neutral-base-080);
  border: var(--lds-g-sizing-border-2) solid var(--lds-g-color-neutral-base-070);
  padding: var(--lds-g-spacing-050) var(--lds-g-spacing-0);
}

.cta-text.cta-text-black:hover {
  color: var(--lds-g-color-neutral-base-080);
}

.cta-text.cta-text-black:active {
  color: var(--lds-g-color-neutral-base-090);
}

@media (width < 950px) {
  .cta-button-filled,
  .cta-button-dark,
  .cta-button-outline {
    font: var(--lds-g-typography-ringside-special-cta-button-default);
  }
  .cta-text {
    font: var(--lds-g-typography-ringside-special-cta-text-link-default);
  }
}

/* cta icons */
.cta-button-outline .icon-black-arrow,
.cta-button-filled .icon-arrow-right,
.cta-button-filled .icon-download-white,
.cta-text .icon-arrow-right {
  width: var(--lds-g-sizing-6);
  height: var(--lds-g-sizing-6);
  display: flex;
  align-items: center;
}

.cta-button-filled .icon-download-white-icon {
  line-height: 0;
}

.cta-button-outline .icon-play {
  filter: brightness(0) saturate(100%) invert(7%) sepia(56%) saturate(1%)
    hue-rotate(82deg) brightness(96%) contrast(94%);
}

.cta-button-outline:focus-visible .icon-black-arrow,
.cta-button-outline:focus-visible .icon-play,
.cta-button-outline:hover .icon-black-arrow,
.cta-button-outline:hover .icon-play {
  filter: brightness(0) saturate(100%) invert(14%) sepia(81%) saturate(3026%)
    hue-rotate(351deg) brightness(95%) contrast(101%);
}

.cta-button-outline:active .icon-black-arrow,
.cta-button-outline:active .icon-play {
  filter: brightness(0) saturate(100%) invert(14%) sepia(24%) saturate(6038%)
    hue-rotate(345deg) brightness(94%) contrast(99%);
}

.cta-icon-left {
  flex-direction: row-reverse;
}

/* -----------------rte link styles-------------------- */

.red-inline-link,
.black-inline-link {
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 4%;
  text-underline-offset: 24%;
  text-underline-position: from-font;
  width: fit-content;
  cursor: pointer;
  background: none;
  outline: none;
}

.red-inline-link {
  color: var(--lds-g-color-palette-red-060);
}

.red-inline-link:visited {
  color: var(--lds-g-color-palette-red-080);
}

.red-inline-link:focus-visible {
  color: var(--lds-g-color-palette-red-060);
  border-radius: var(--lds-g-radius-1);
  border: var(--lds-g-sizing-border-2) solid var(--lds-g-color-neutral-base-070);
  padding: var(--lds-g-spacing-050) var(--lds-g-spacing-0);
}

.red-inline-link:hover {
  color: var(--lds-g-color-palette-red-060);
}

.red-inline-link:active {
  color: var(--lds-g-color-palette-red-070);
}

.black-inline-link {
  color: var(--lds-g-color-neutral-base-080);
}

.black-inline-link:visited {
  color: var(--lds-g-color-neutral-base-060);
}

.black-inline-link:focus-visible {
  color: var(--lds-g-color-neutral-base-080);
  border-radius: var(--lds-g-radius-1);
  border: var(--lds-g-sizing-border-2) solid var(--lds-g-color-neutral-base-070);
  padding: var(--lds-g-spacing-050) var(--lds-g-spacing-0);
}

.black-inline-link:hover {
  color: var(--lds-g-color-neutral-base-080);
}

.black-inline-link:active {
  color: var(--lds-g-color-neutral-base-090);
}

/* -----------------carousel css-------------------- */
.numerical-pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  padding: var(--lds-g-spacing-0) var(--lds-g-spacing-100);
  gap: var(--lds-g-spacing-100);
  border-radius: var(--lds-g-radius-8);
  background-color: var(--lds-g-color-neutral-base-005);
  width: 160px;
  margin-top: var(--lds-g-spacing-420);
}

.numerical-pagination-container .arrow-prev,
.numerical-pagination-container .arrow-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  cursor: pointer;
  background-color: transparent;
  transition: color 0.3s ease;
  font-size: var(--typography-ringside-body-medium-font-size);
  color: var(--lds-g-color-neutral-base-100);
}

.numerical-pagination-container .arrow-prev.disabled,
.numerical-pagination-container .arrow-next.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.page-info-wrapper {
  display: flex;
  gap: var(--lds-g-spacing-50);
  align-items: center;
}

.active-page-container {
  width: 12px;
  height: 20px;
  border-radius: 5px;
  margin-right: 2px;
  background-color: #333;
  color: var(--lds-g-color-palette-transparent-white-100);
  text-align: center;
  font: var(--lds-g-typography-ringside-body-small);
}

.page-info-container {
  display: flex;
  gap: var(--lds-g-spacing-100);
  font-size: var(--typography-ringside-body-small-font-size);
  color: var(--lds-g-color-palette-transparent-black-100);
}

.page-info-container .page-number {
  padding: var(--lds-g-spacing-50) var(--lds-g-spacing-100);
  border-radius: var(--lds-g-radius-8);
  cursor: pointer;
  background-color: transparent;
  color: var(--lds-g-color-palette-transparent-black-100);
  border: 1px solid transparent;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.total-page-info-container {
  font-style: normal;
}

@media (width <= 768px) {
  .lds-content-section-padding-narrow
    > [class*="-wrapper"]:not(.form-wrapper)
    > .lds-layout-container
    > .carousel-indicators {
    grid-column-end: span 4;
  }

  main .lds-content-section-padding-wide {
    padding: var(--lds-g-spacing-1200) 0;
  }

  main
    .lds-content-section-padding-wide
    .lds-layout-container:not(.disable-layout-margins) {
    padding-left: var(--lds-g-grid-gutter-tablet);
    padding-right: var(--lds-g-grid-gutter-tablet);
  }

  main .lds-content-section-padding-narrow {
    padding: var(--lds-g-spacing-500) 0;
  }

  main .lds-content-section-margin-narrow {
    margin: var(--lds-g-spacing-200) !important;
  }

  main .lds-content-section-margin-wide {
    margin: var(--lds-g-spacing-400) !important;
  }

  .numerical-pagination-container .arrow-prev,
  .numerical-pagination-container .arrow-next {
    display: none;
  }

  .pagination-container {
    background-color: transparent;
  }

  .numerical-pagination-container {
    justify-content: center;
    border-radius: var(--lds-g-radius-9);
    height: 36px;
    width: 60px;
    margin-top: var(--lds-g-spacing-300);
  }
}

.dots-pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 48px;
  gap: 5px;
  border-radius: 56px;
  background-color: var(--lds-g-color-neutral-base-005);
  margin-top: var(--lds-g-spacing-300);
  padding: var(--lds-g-spacing-0) var(--lds-g-spacing-100);
}

.arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border-radius: var(--lds-g-radius-6);
}

.arrow.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.dot-pagination {
  display: flex;
  align-items: center;
  gap: var(--lds-g-spacing-100);
  position: relative;
  padding-left: var(--lds-g-spacing-100);
}

.dot {
  height: 8px;
  width: 8px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s, width 0.3s ease;
  position: relative;
  z-index: 1;
}

.dot.active {
  background-color: #333;
  height: 8px;
  border-radius: 5px;
}

.dot-indicator {
  position: absolute;
  height: 6px;
  width: 24px;
  background-color: var(--lds-g-color-palette-transparent-black-100);
  border-radius: 3px;
  bottom: 2px;
  left: var(--lds-g-spacing-0);
  transition: transform 0.3s ease, width 0.3s ease;
  z-index: 0;
}

@media (width <= 768px) {
  .arrow {
    display: none;
  }

  .dots-pagination-container {
    justify-content: center;
    padding: 5px;
    background-color: transparent;
    margin-left: var(--lds-g-spacing-0);
    margin-top: var(--lds-g-spacing-300);
  }

  .dot.active {
    width: 24px;
    height: 8px;
  }
}

/* -----------------rte text styles-------------------- */

strong {
  font-weight: var(--lds-g-font-weight-900);
}

.block u {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 4%;
  text-underline-offset: 24%;
  text-underline-position: from-font;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

.federated-components.block.lds-layout-container:has(unex-crm-form) {
  max-width: 100%;
  padding: 0;
}
