.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 {
    margin: 0;
}

.full-bleed-hero-carousel .fb-hero-slides {
    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 .fb-hero-slide:first-child {
    display: flex;
}

.full-bleed-hero-carousel.is-enhanced .fb-hero-slide-region .fb-hero-slide {
    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.is-enhanced .fb-hero-slide-region {
    display: grid;
}

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

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

.full-bleed-hero-carousel .fb-hero-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.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: inline-flex;
    align-items: 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;
    transition: background-color 0.25s ease;
}

.full-bleed-hero-carousel .fb-hero-arrow .icon {
    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 {
    box-shadow: 0 0 0 2px var(--cerulean-blue);
    outline: none;
}

.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 {
    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%;
    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: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    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;
    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: flex;
    justify-content: 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: var(--color-grey2);
    color: #111;
}

.brand-theme .full-bleed-hero-carousel .fb-hero-arrow .icon {
    color: #111 !important;
}

.brand-theme .full-bleed-hero-carousel .fb-hero-arrow:hover {
    background-color: #cacacb;
}

.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;
    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: flex;
    align-items: center;
    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 {
    justify-content: flex-end;
}

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

.full-bleed-hero-carousel.is-single-slide .fb-hero-navigation,
.full-bleed-hero-carousel.is-single-slide .fb-hero-controls,
.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: inline-flex;
    }

    .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;
    }
}
