.full-bleed-hero-carousel {
  --fb-hero-media-height: 0px;
  --fb-hero-dot-color: rgba(255, 255, 255, 0.65);
  --fb-hero-dot-active-color: #fff;
  position: relative;
  z-index: 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 2.75rem;
  overflow: hidden;
}

.full-bleed-hero-carousel .fb-hero-slide-region {
  display: grid;
  margin: 0;
}

.full-bleed-hero-carousel .fb-hero-slide-region > * {
  grid-area: 1/1;
  min-width: 0;
}

.full-bleed-hero-carousel .fb-hero-slides {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.full-bleed-hero-carousel .fb-hero-slide-region .fb-hero-slide {
  display: none;
  margin: 0;
}

.full-bleed-hero-carousel .fb-hero-slide-region > *:first-child .fb-hero-slide,
.full-bleed-hero-carousel .fb-hero-slide-region > .fb-hero-slide:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.full-bleed-hero-carousel.is-enhanced .fb-hero-slide-region .fb-hero-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-area: 1/1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.full-bleed-hero-carousel.is-enhanced .fb-hero-slide-region .fb-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.full-bleed-hero-carousel .fb-hero-navigation {
  z-index: 6;
}

.full-bleed-hero-carousel .fb-hero-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}

.full-bleed-hero-carousel .fb-hero-controls,
.full-bleed-hero-carousel .fb-hero-dots {
  pointer-events: auto;
}

.full-bleed-hero-carousel .fb-hero-control-btn {
  border: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  position: relative;
}

.full-bleed-hero-carousel .fb-hero-control-btn:hover {
  opacity: 0.85;
}

.full-bleed-hero-carousel .fb-hero-control-btn:focus {
  outline: 2px solid #007dff;
  outline-offset: 2px;
}

.full-bleed-hero-carousel .fb-hero-arrow {
  background-color: var(--color-grey2);
  color: #111;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}

.full-bleed-hero-carousel .fb-hero-arrow .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.full-bleed-hero-carousel .fb-hero-arrow:hover {
  background-color: var(--color-grey8);
  opacity: 1;
}

.full-bleed-hero-carousel .fb-hero-arrow:focus,
.full-bleed-hero-carousel .fb-hero-arrow:focus-visible {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
}

.full-bleed-hero-carousel .fb-hero-play-pause {
  --fb-hero-progress-track: #b8b8b8;
  --fb-hero-progress-active: #111;
  --fb-hero-toggle-color: #111;
  background: transparent;
  color: var(--fb-hero-toggle-color);
  opacity: 1;
}

.full-bleed-hero-carousel .fb-hero-play-pause:hover {
  background: transparent;
}

.full-bleed-hero-carousel .fb-hero-play-pause:focus {
  -webkit-box-shadow: 0 0 0 2px var(--cerulean-blue);
          box-shadow: 0 0 0 2px var(--cerulean-blue);
  outline: none;
}

.full-bleed-hero-carousel.controls-placement-inside-media .fb-hero-play-pause {
  --fb-hero-progress-active: #fff;
  --fb-hero-toggle-color: #fff;
}

.full-bleed-hero-carousel .fb-hero-progress-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  pointer-events: none;
}

.full-bleed-hero-carousel .fb-hero-progress-track,
.full-bleed-hero-carousel .fb-hero-progress-value {
  fill: none;
  stroke-width: 3;
}

.full-bleed-hero-carousel .fb-hero-progress-track {
  stroke: var(--fb-hero-progress-track);
}

.full-bleed-hero-carousel .fb-hero-progress-value {
  stroke: var(--fb-hero-progress-active);
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.full-bleed-hero-carousel .fb-hero-toggle-icon {
  position: absolute;
  inset: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.full-bleed-hero-carousel .fb-hero-toggle-icon svg {
  display: block;
}

.full-bleed-hero-carousel .fb-hero-toggle-icon-play {
  opacity: 0;
  -webkit-transform: translateX(1px);
          transform: translateX(1px);
}

.full-bleed-hero-carousel .fb-hero-play-pause.is-paused .fb-hero-toggle-icon-play {
  opacity: 1;
}

.full-bleed-hero-carousel .fb-hero-play-pause.is-paused .fb-hero-toggle-icon-pause {
  opacity: 0;
}

.full-bleed-hero-carousel .fb-hero-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.35rem;
}

.full-bleed-hero-carousel .fb-hero-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  border: 0;
  background: var(--fb-hero-dot-color);
  cursor: pointer;
  padding: 0;
}

.full-bleed-hero-carousel .fb-hero-dot.is-active {
  background: var(--fb-hero-dot-active-color);
}

.full-bleed-hero-carousel .fb-hero-dot:focus {
  outline: 2px solid #007dff;
  outline-offset: 2px;
}

.full-bleed-hero-carousel.dots-color-dark {
  --fb-hero-dot-color: rgba(17, 17, 17, 0.35);
  --fb-hero-dot-active-color: #111;
}

.brand-theme .full-bleed-hero-carousel {
  background: var(--brand-bg);
}

.brand-theme .full-bleed-hero-carousel.controls-placement-outside-media {
  --fb-hero-dot-color: rgba(255, 255, 255, 0.45);
  --fb-hero-dot-active-color: var(--brand-text);
}

.brand-theme .full-bleed-hero-carousel.controls-placement-outside-media .fb-hero-play-pause {
  --fb-hero-progress-track: rgba(255, 255, 255, 0.38);
  --fb-hero-progress-active: var(--brand-text);
  --fb-hero-toggle-color: var(--brand-text);
}

.brand-theme .full-bleed-hero-carousel .fb-hero-arrow {
  background-color: #1c1c1c;
  background-image: none;
  color: #bdbdbe;
  -webkit-transition: none;
  transition: none;
}

.brand-theme .full-bleed-hero-carousel .fb-hero-prev,
.brand-theme .full-bleed-hero-carousel .fb-hero-next {
  background-image: none;
}

.brand-theme .full-bleed-hero-carousel .fb-hero-arrow .icon {
  color: inherit;
  visibility: visible;
}

.brand-theme .full-bleed-hero-carousel .fb-hero-arrow:hover {
  background-color: #181818;
  background-image: none;
  color: #fff;
}

.brand-theme .full-bleed-hero-carousel .fb-hero-prev:hover,
.brand-theme .full-bleed-hero-carousel .fb-hero-next:hover {
  background-image: none;
}

.full-bleed-hero-carousel.controls-placement-inside-media .fb-hero-navigation {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.full-bleed-hero-carousel.controls-placement-inside-media .fb-hero-controls {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}

.full-bleed-hero-carousel.controls-placement-inside-media .fb-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.full-bleed-hero-carousel.content-placement-outside-media.controls-placement-inside-media .fb-hero-controls {
  bottom: auto;
  top: calc(var(--fb-hero-media-height) - 4rem);
}

.full-bleed-hero-carousel.content-placement-outside-media.controls-placement-inside-media .fb-hero-dots {
  bottom: auto;
  top: calc(var(--fb-hero-media-height) - 1.45rem);
}

.full-bleed-hero-carousel.controls-placement-outside-media .fb-hero-controls,
.full-bleed-hero-carousel.controls-placement-outside-media .fb-hero-dots {
  position: static;
}

.full-bleed-hero-carousel.controls-placement-outside-media .fb-hero-navigation {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 3rem;
  margin: 0.9rem 1.25rem 0.8rem;
}

.full-bleed-hero-carousel.content-placement-outside-media.controls-placement-outside-media .fb-hero-navigation {
  margin-top: 0;
}

.full-bleed-hero-carousel.controls-placement-outside-media .fb-hero-controls {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.full-bleed-hero-carousel.controls-placement-outside-media .fb-hero-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.full-bleed-hero-carousel.is-single-slide .fb-hero-arrow,
.full-bleed-hero-carousel.is-single-slide .fb-hero-dots {
  display: none;
}

@media (min-width: 1825px) {
  .full-bleed-hero-carousel {
    width: 1824px;
    max-width: 1824px;
    margin-left: calc(50% - 912px);
    margin-right: calc(50% - 912px);
  }
}
@media (max-width: 767.98px) {
  .full-bleed-hero-carousel .fb-hero-arrow {
    display: none;
  }
  .full-bleed-hero-carousel.show-arrows-mobile .fb-hero-arrow {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .full-bleed-hero-carousel.is-single-slide.show-arrows-mobile .fb-hero-arrow {
    display: none;
  }
  .full-bleed-hero-carousel.controls-placement-inside-media .fb-hero-controls {
    right: 0.75rem;
    bottom: 0.75rem;
  }
  .full-bleed-hero-carousel.content-placement-outside-media.controls-placement-inside-media .fb-hero-controls {
    bottom: auto;
    top: calc(var(--fb-hero-media-height) - 3.75rem);
  }
  .full-bleed-hero-carousel.content-placement-outside-media.controls-placement-inside-media .fb-hero-dots {
    bottom: auto;
    top: calc(var(--fb-hero-media-height) - 1.2rem);
  }
  .full-bleed-hero-carousel.controls-placement-outside-media .fb-hero-navigation {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
}
.full-bleed-hero-carousel.size-p0 {
  --fb-hero-reserved-height: 26rem;
}

.full-bleed-hero-carousel.size-p1 {
  --fb-hero-reserved-height: 34rem;
}

.full-bleed-hero-carousel .fb-hero-slides,
.full-bleed-hero-carousel .fb-hero-slide-region,
.full-bleed-hero-carousel .fb-hero-slide-region > .experience-component,
.full-bleed-hero-carousel .fb-hero-slide {
  min-height: var(--fb-hero-reserved-height);
}

@media (min-width: 821px) {
  .full-bleed-hero-carousel.size-p0 {
    --fb-hero-reserved-height: 34rem;
  }
  .full-bleed-hero-carousel.size-p1 {
    --fb-hero-reserved-height: 48rem;
  }
}
@media (max-width: 767.98px) {
  .full-bleed-hero-carousel.size-p0 {
    --fb-hero-reserved-height: 24rem;
  }
  .full-bleed-hero-carousel.size-p1 {
    --fb-hero-reserved-height: 30rem;
  }
}