.elementor-widget-ljc_animated_header_banner.elementor-invisible {
    visibility: visible !important;
    opacity: 1 !important;
}

.ljc-announcement-bar {
    --ljc-banner-gap: 36px;
    --ljc-banner-duration: 28s;
    --ljc-banner-background: #5f315f;
    --ljc-banner-background-end: #b86570;
    --ljc-banner-angle: 105deg;
    --ljc-banner-text: #fff9f2;
    --ljc-banner-icon: #ffd98e;
    --ljc-banner-link: #fff;
    --ljc-banner-link-hover: #ffd98e;
    --ljc-banner-control: #fff9f2;
    --ljc-banner-control-background: rgba(255,255,255,.12);
    position: relative;
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    overflow: hidden;
    padding: 10px 48px;
    color: var(--ljc-banner-text);
    background-color: var(--ljc-banner-background);
    background-image: linear-gradient(var(--ljc-banner-angle), var(--ljc-banner-background) 0%, var(--ljc-banner-background-end) 100%);
    isolation: isolate;
}

.ljc-banner-background-solid .ljc-announcement-bar {
    background-color: var(--ljc-banner-background);
    background-image: none;
}

.ljc-banner-background-gradient .ljc-announcement-bar {
    background-color: var(--ljc-banner-background);
    background-image: linear-gradient(var(--ljc-banner-angle), var(--ljc-banner-background) 0%, var(--ljc-banner-background-end) 100%);
}

.ljc-banner-background-solid .ljc-announcement-bar::before {
    display: none;
}

.ljc-announcement-bar::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 18% -80%, rgba(255,255,255,.22), transparent 40%),
        linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent);
    content: "";
    pointer-events: none;
}

.ljc-banner-full-bleed-yes .ljc-announcement-bar {
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
}

.ljc-announcement-bar[hidden] {
    display: none !important;
}

.ljc-announcement-bar__viewport {
    display: flex;
    width: 100%;
    max-width: 1600px;
    min-width: 0;
    align-items: center;
    margin: 0 auto;
    overflow: hidden;
}

.ljc-announcement-bar__track,
.ljc-announcement-bar__group {
    display: flex;
    flex: none;
    width: max-content;
    align-items: center;
}

.ljc-announcement-bar__track {
    will-change: transform;
    animation: ljc-banner-marquee var(--ljc-banner-duration) linear infinite;
}

.ljc-announcement-bar__group {
    justify-content: flex-start;
}

.ljc-announcement-bar--pause:hover .ljc-announcement-bar__track,
.ljc-announcement-bar--pause:focus-within .ljc-announcement-bar__track {
    animation-play-state: paused;
}

.ljc-announcement-bar__item {
    display: inline-flex;
    flex: none;
    align-items: center;
    justify-content: center;
    gap: .55em;
    padding-inline: calc(var(--ljc-banner-gap) / 2);
    text-align: center;
}

.ljc-announcement-bar__message {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .035em;
    line-height: 1.35;
}

.ljc-announcement-bar__icon,
.ljc-announcement-bar__separator {
    display: inline-flex;
    flex: none;
    align-items: center;
    justify-content: center;
    color: var(--ljc-banner-icon);
    font-size: 14px;
}

.ljc-announcement-bar__icon svg,
.ljc-announcement-bar__separator svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.ljc-announcement-bar__separator {
    opacity: .76;
}

.ljc-announcement-bar__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .3em;
    color: var(--ljc-banner-link);
    font-size: .92em;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.ljc-announcement-bar__link::after {
    position: absolute;
    right: 0;
    bottom: -.23em;
    left: 0;
    height: 2px;
    border-radius: 100%;
    background: currentColor;
    content: "";
    transform: rotate(-1deg) scaleX(.96);
    transform-origin: left;
    transition: transform .2s ease;
}

.ljc-banner-link-solid .ljc-announcement-bar__link::after {
    bottom: -.12em;
    height: 1px;
    border-radius: 0;
    transform: none;
}

.ljc-banner-link-none .ljc-announcement-bar__link::after {
    display: none;
}

.ljc-announcement-bar__link:hover,
.ljc-announcement-bar__link:focus-visible {
    color: var(--ljc-banner-link-hover);
    transform: translateY(-1px);
}

.ljc-announcement-bar__link:hover::after,
.ljc-announcement-bar__link:focus-visible::after {
    transform: rotate(1deg) scaleX(.72);
}

.ljc-announcement-bar__link-arrow {
    transition: transform .2s ease;
}

.ljc-announcement-bar__link:hover .ljc-announcement-bar__link-arrow,
.ljc-announcement-bar__link:focus-visible .ljc-announcement-bar__link-arrow {
    transform: translate(2px, -2px);
}

.ljc-announcement-bar__stage {
    position: relative;
    display: grid;
    flex: 1;
    min-width: 0;
    place-items: center;
    overflow: hidden;
}

.ljc-announcement-bar__stage .ljc-announcement-bar__item {
    grid-area: 1 / 1;
    width: 100%;
    padding-inline: 12px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.ljc-announcement-bar__stage .ljc-announcement-bar__item:first-child {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.ljc-announcement-bar.is-ready .ljc-announcement-bar__stage .ljc-announcement-bar__item {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.ljc-announcement-bar.is-ready .ljc-announcement-bar__stage .ljc-announcement-bar__item.is-active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.ljc-announcement-bar--fade .ljc-announcement-bar__item {
    transition: opacity .45s ease, visibility .45s ease;
}

.ljc-announcement-bar--slide .ljc-announcement-bar__item {
    opacity: 0;
    transform: translateY(120%);
    transition: opacity .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1), visibility .45s ease;
}

.ljc-announcement-bar--slide .ljc-announcement-bar__item:first-child {
    transform: translateY(0);
}

.ljc-announcement-bar--slide.is-ready .ljc-announcement-bar__item {
    transform: translateY(120%);
}

.ljc-announcement-bar--slide.is-ready .ljc-announcement-bar__item.is-active {
    opacity: 1;
    transform: translateY(0);
}

.ljc-announcement-bar__control {
    display: inline-grid;
    flex: none;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--ljc-banner-control);
    background: var(--ljc-banner-control-background);
    font: inherit;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    opacity: .82;
    place-items: center;
    transition: opacity .2s ease, background-color .2s ease, transform .2s ease;
}

.ljc-announcement-bar__control:hover,
.ljc-announcement-bar__control:focus-visible {
    background: rgba(255,255,255,.22);
    opacity: 1;
    outline: 2px solid currentColor;
    outline-offset: 2px;
    transform: scale(1.05);
}

.ljc-announcement-bar__dismiss {
    position: absolute;
    top: 50%;
    right: 12px;
    z-index: 3;
    transform: translateY(-50%);
}

.ljc-announcement-bar__dismiss:hover,
.ljc-announcement-bar__dismiss:focus-visible {
    transform: translateY(-50%) scale(1.05);
}

.ljc-announcement-bar__control--previous,
.ljc-announcement-bar__control--next {
    position: relative;
    z-index: 2;
}

.ljc-announcement-bar--none .ljc-announcement-bar__stage .ljc-announcement-bar__item:not(:first-child) {
    display: none;
}

.ljc-announcement-bar--none .ljc-announcement-bar__stage .ljc-announcement-bar__item:first-child {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

@keyframes ljc-banner-marquee {
    from { transform: translateX(100vw); }
    to { transform: translateX(-100%); }
}

@media (max-width: 767px) {
    .ljc-announcement-bar {
        padding: 9px 42px 9px 12px;
    }

    .ljc-announcement-bar__item {
        gap: .4em;
    }

    .ljc-announcement-bar__message {
        font-size: 12px;
    }

    .ljc-announcement-bar__link-arrow {
        display: none;
    }

    .ljc-announcement-bar__control--previous,
    .ljc-announcement-bar__control--next {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .ljc-announcement-bar__dismiss {
        right: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ljc-announcement-bar__track {
        animation-play-state: paused;
        transform: none;
    }

    .ljc-announcement-bar__group[aria-hidden="true"] {
        display: none;
    }

    .ljc-announcement-bar__item,
    .ljc-announcement-bar__link,
    .ljc-announcement-bar__link-arrow,
    .ljc-announcement-bar__control {
        transition-duration: .01ms !important;
    }
}
