/* ==========================
   1. :root - CSS variables
	========================== */
:root {
    /* Semantic colors */
    --success-100: #1C843C;
    --error-100: hsl(1, 72%, 45%);
    --warning-100: hsl(21, 75%, 50%);
    --info-100: hsl(211, 95%, 46%);

    /* Neutrals */
    --neutrals-110: hsl(0, 0%,10%);
    --neutrals-100: hsl(0, 0%, 0%);
    --neutrals-90: hsl(0, 0%, 10%);
    --neutrals-10: hsl(0, 0%, 90%);
    --neutrals-5: hsl(0, 0%, 0%);

    --headline-color: #094067;
    --sub-headline-color: #5f6c7b;

    /* Brand / Primary colors */
    --primary-color: #1250dc; /* inferred from usage */
    --fs-color-primary: #1e6fd9; /* keep legacy var usage */
    --obelix-header-color: #161618;

    /* Background colors and palette */
    --nav-background-color: #CAE2EE;
    --blue-50: #f0fbff;
    --blue-100: #eaeffa;
    --blue-150: #c1d0f6;
    --blue-200: #acc0f3;
    --blue-300: #769dea;
    --blue-400: #306de4;
    --blue-500: #1250dc;
    --blue-600: #0037c1;
    --blue-700: #002c9a;
    --blue-800: #002174;
    --blue-900: #00164d;
    --blue-1000: #000b27;

    --black: #000;
    --white: #fff;
    --white-200: #fcfcfc;

    --gray-100: #f6f7f9;
    --gray-150: #edf0f3;
    --gray-200: #e4e8ed;
    --gray-300: #d9dfe5;
    --gray-400: #c1c8d1;
    --gray-500: #a9b2be;
    --gray-600: #657384;
    --gray-700: #4a4f63;
    --gray-800: #2f364a;
    --gray-800-80: rgba(47, 54, 74, 0.8);
    --gray-900: #20283d;
    --gray-1000: #020b27;

    /* Alerts */
    --red-100: #fffbfa; --red-200: #fef3f2; --red-300: #fee4e2; --red-400: #ffcdca; --red-500: #fda29b; --red-600: #fa7066; --red-700: #f04438; --red-800: #d92d20; --red-900: #b42318; --red-1000: #912018;
    --yellow-100: #fffcf5; --yellow-200: #fff3e1; --yellow-300: #fef0c7; --yellow-400: #fedf89; --yellow-500: #fec84b; --yellow-600: #fdb022; --yellow-700: #f79009; --yellow-800: #dc6803; --yellow-900: #b54708; --yellow-1000: #93370d;
    --green-100: #f6fef9; --green-200: #defcea; --green-300: #d1fadf; --green-400: #a6f4c5; --green-500: #6ce9a6; --green-600: #32d583; --green-700: #12b76a; --green-800: #039855; --green-900: #027a48; --green-1000: #05603a;

    /* Gradients */
    --gradient-blue-1: linear-gradient(315deg, var(--blue-500) 0%, var(--blue-400) 100%);
    --gradient-blue-2: linear-gradient(315deg, var(--blue-400) 0%, var(--blue-300) 100%);
    --gradient-blue-3: linear-gradient(315deg, var(--blue-300) 0%, var(--blue-200) 100%);
    --gradient-blue-4: linear-gradient(358deg, #bbcef4 1.63%, #dfe7fb 98.37%);
    --gradient-blue-5: linear-gradient(359deg, #bbcef4 -224.09%, #dfe7fb 111.69%);
    --gradient-green-1: linear-gradient(315deg, var(--green-800) 0%, var(--green-700) 100%);
    --gradient-green-2: linear-gradient(315deg, #039836 0%, #12b75e 100%);
    --gradient-yellow-1: linear-gradient(315deg, var(--yellow-700) 0%, var(--yellow-600) 100%);
    --gradient-red-1: linear-gradient(315deg, var(--red-800) 0%, var(--red-700) 100%);
    --gradient-red-3: linear-gradient(295deg, #CD1A0C 0%, #FF5246 98.45%);

    /* Shadows */
    --shadow-xs: 0px 0px 8px -2px rgba(0, 39, 102, 0.1), 0px 0px 4px -2px rgba(0, 39, 102, 0.06);
    --shadow-sm: 0px 0px 16px -4px rgba(0, 39, 102, 0.08), 0px 0px 6px -2px rgba(0, 39, 102, 0.03);
    --shadow-md: 0px 0px 24px -4px rgba(0, 39, 102, 0.08), 0px 0px 8px -4px rgba(0, 39, 102, 0.03);
    --shadow-lg: 0px 0px 48px -12px rgba(0, 39, 102, 0.18);
    --shadow-xl: 0px 0px 64px -12px rgba(0, 39, 102, 0.14);
    --shadow-2xl: 0px 0px 16px rgba(2, 11, 39, 0.04);
    --shadow-3xl: 0px -4px 16px rgba(2, 11, 39, 0.08);
}

/* ==========================
   2. Base & Elements
   ========================== */
/* list marker color */
li::marker { color: rgb(45, 135, 243); }

/* Headings */
.heading-3 { font-size: 1.3rem; border-bottom: 1px solid #eee; margin-bottom: 1rem; }
.heading-3 h3 { color: #1e6fd9; }

/* Typography utilities */
.fw-bolder { font-weight: bolder !important; }
.text-lowercase { text-transform: lowercase !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-capitalize { text-transform: capitalize !important; }
.text-theme { color: var(--primary-color); }
.text-orange { color: #f7941e; }
.brand { color: #00a7e1; text-transform: uppercase; font-family: sans-serif; }
.brand-medical { background: #f89a29; }
.brand-education { background: #00a7e1; }

/* Blockquote */
blockquote {
    border-left: 4px solid var(--fs-color-secondary);
    color: #345;
    font-style: italic;
    margin: 1.375rem 0;
    padding: 1rem;
    background: rgb(247 148 29 / 10%);
    border-radius: 5px;
    letter-spacing: .5px;
}
blockquote p { margin: 0; line-height: normal; font-size: 15px; }
blockquote ul, blockquote ol { padding-top: 10px !important; margin: 0; font-size: 16px; }

/* Buttons base */
.btn {
    padding: 20px 25px;
    gap: 10px;
    line-height: 1;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    color: #49515b;
    text-transform: uppercase;
    border: 2px solid rgba(241,89,39,0.5);
    border-radius: 50px;
}
.btn:hover { background: #f15927; color: #fff; }

/* Utility rounded */
.rounded-circle { border-radius: 50%; }

/* Images */
.wp-block-image img, .wp-caption img { border-radius: 10px; border: 1px solid #CAE2EE; }
.wp-block-image figcaption, .wp-caption figcaption { color: var(--gray-700); font-size: 13px; line-height: 16px; font-style: italic; }

/* Tables - common */
table { border-collapse: unset; border-spacing: 4px; border: 1px solid #e1e3e4; margin-bottom: 0; border-radius: 3px; }
.table > :not(caption) > * > * { padding: 0.5rem; border: 1px solid #eee; box-shadow: inset 0 0 0 9999px transparent; }
.table-1 thead tr th { white-space: nowrap; background-color: #004fb4; color: #fff; }
.table-1 th, .table-1 td { vertical-align: middle; }
.table-1 tbody td { padding-top: 1rem; padding-bottom: 1rem; vertical-align: top; }
.table-1 .tcol-6 { width: 1%; }
table.table-1 tr:nth-child(even):not(tr.colspan_subthead) { background: #eee; }
.wp-block-table thead { border: 2px solid #004fb4; background: #004fb4; color: #fff; }

/* Breadcrumbs */
.rank-math-breadcrumb { color: #061119; margin: 1rem 0; font-size: 0.875rem; letter-spacing: -0.2px; line-height: 1; white-space: nowrap; }
.rank-math-breadcrumb a { color: #1250dc; letter-spacing: .02em; }
.rank-math-breadcrumb a:first-of-type:before {
    content: "\f015"; font: normal normal normal 14px/1 FontAwesome; color: #595959; margin-right: 5px; width: 32px; height: 32px; border-radius: 50%; display: inline-flex; justify-content: center; align-items: center; background-color: #f4f8fe;
}
.bg-breadcrumbs { padding-top: 0; padding-bottom: 0; background-color: rgb(237, 240, 243); }

/*
* Element Name: Testimonial One
*/
.obelix-testimonial--one .title-wrap>* {
    font-size: inherit;
    line-height: inherit;
}

.obelix-testimonial--one .title-wrap .title {
    margin-bottom: .05em;
    font-weight: bold;
}

.obelix-testimonial--one .title-wrap .subtitle {
    color: var(--fs-color-primary);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: .4em;
    letter-spacing: 1px;
}

.row.obelix-testimonial--one>.col.large-12 {
    padding-bottom: 0;
}

/* Testimonial box */
.testimonial-box.obelix-testimonial--one {
    --avatar-width: 106px;
    position: relative;
    height: 100%;
    padding: 24px 30px 23px;
    -webkit-box-shadow: 0 4px 60px -1px rgb(0 0 0 / 10%);
    box-shadow: 0 4px 60px -1px rgb(0 0 0 / 10%);
    background-color: #ffffff;
    border-radius: 10px;
    z-index: 1;
}

.testimonial-box.obelix-testimonial--one .icon-box-img {
    position: absolute;
    left: 24px;
    top: 22px;
}

.testimonial-box.obelix-testimonial--one .star-rating span:before,
.testimonial-box.obelix-testimonial--one .star-rating:before {
    color: #ffc107;
}

.testimonial-box.obelix-testimonial--one .star-rating {
    letter-spacing: 3px;
    width: auto;
    left: var(--avatar-width);
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 8px 0 14px 0;
}

.testimonial-box.obelix-testimonial--one .icon-box-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 !important;
}

.testimonial-box.obelix-testimonial--one .testimonial-meta {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: var(--avatar-width);
}

.testimonial-box.obelix-testimonial--one .testimonial-name-divider {
    display: none;
}

.testimonial-box.obelix-testimonial--one .testimonial-name {
    font-size: 25px;
    line-height: 1.4;
    margin-bottom: 0;
}

.testimonial-box.obelix-testimonial--one .testimonial-company {
    display: inline-block;
    color: var(--fs-color-primary);
    margin-bottom: 0;
}

.testimonial-box.obelix-testimonial--one .testimonial-text {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 10px;
    font-style: normal !important;
}

.testimonial-box.obelix-testimonial--one::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 30px;
    display: inline-block;
    pointer-events: none;
    opacity: 0.3;
    z-index: 0;
    width: 40px;
    height: 40px;
    background-color: var(--fs-color-secondary);
    -webkit-mask-size: 36px;
    mask-size: 36px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-image: url("/wp-content/uploads/2025/08/quote-icon.svg");
    mask-image: url("/wp-content/uploads/2025/08/quote-icon.svg");
}

/* Slide style */
.marquee.obelix-testimonial--one .flickity-viewport {
    overflow: visible;
    overflow-x: hidden;
}

.marquee.obelix-testimonial--one .flickity-viewport .col {
    padding-bottom: 0;
}

.marquee.obelix-testimonial--one .flickity-viewport .col {
    margin-top: 40px;
    margin-bottom: 14px;
}

.marquee.obelix-testimonial--one:last-of-type .flickity-viewport .col {
    margin-bottom: 40px;
    margin-top: 14px;
}

.marquee.obelix-testimonial--one .flickity-viewport::before,
.marquee.obelix-testimonial--one .flickity-viewport::after {
    content: "";
    width: 458px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 22%, rgba(255, 255, 255, 0.5) 68%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(22%, rgba(255, 255, 255, 1)), color-stop(68%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 22%, rgba(255, 255, 255, 0.5) 68%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.marquee.obelix-testimonial--one .flickity-viewport::after {
    left: auto;
    right: 0;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 32%, rgba(255, 255, 255, 1) 77%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(32%, rgba(255, 255, 255, 0.5)), color-stop(77%, rgba(255, 255, 255, 1)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 32%, rgba(255, 255, 255, 1) 77%);
}
@media screen and (max-width: 849px) {
    .marquee.obelix-testimonial--one .flickity-viewport::before,
    .marquee.obelix-testimonial--one .flickity-viewport::after {
        width: calc(clamp(1.875rem, 19.126vw - 2.918rem, 6.25rem));
        background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 8%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 100%);
        background: -webkit-gradient(linear, left top, right top, color-stop(8%, rgba(255, 255, 255, 1)), color-stop(60%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 8%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 100%);
    }

    .marquee.obelix-testimonial--one .flickity-viewport::after {
        background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 1) 92%);
        background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(40%, rgba(255, 255, 255, 0.5)), color-stop(92%, rgba(255, 255, 255, 1)));
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 1) 92%);
    }
}
@media screen and (max-width: 549px) {
    .testimonial-box.obelix-testimonial--one {
        --avatar-width: 90px;
        padding: 15px 20px 13px;
    }

    .testimonial-box.obelix-testimonial--one .icon-box-img {
        width: 66px !important;
        left: 18px;
        top: 20px;
    }

    .testimonial-box.obelix-testimonial--one .star-rating {
        margin-bottom: 2px;
    }

    .testimonial-box.obelix-testimonial--one .testimonial-name {
        font-size: 18px;
    }

    .testimonial-box.obelix-testimonial--one::after {
        top: 12px;
        right: 14px;
        width: 28px;
        height: 28px;
        -webkit-mask-size: 26px;
        mask-size: 26px;
    }
}

/**** End Testimonial One ****/
/*
* Element Name: UX BUilder Marquee
*/
.obelix-marquee-wrapper .obelix-marquee {
    --obelix-text-dark-gray: #555353;
    --marquee-gap: 0px;
    --obelix-duration: 30s;
    --obelix-scroll-distance: calc(100% + var(--marquee-gap));
    --obelix-color-white: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap: var(--marquee-gap);
    position: relative;
}

.obelix-marquee-wrapper .obelix-marquee.is-loading .obelix-marquee-group {
    opacity: 0;
}

.obelix-marquee-wrapper .obelix-marquee.is-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: var(--box-height, 400px);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.obelix-marquee-wrapper .obelix-marquee .obelix-scroll-text {
    line-height: 1.65;
    text-align: center;
}

.obelix-marquee-wrapper .obelix-marquee .obelix-scroll-text, .obelix-marquee-wrapper .obelix-marquee .obelix-marquee-group i {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}

.obelix-marquee-wrapper .obelix-marquee .obelix-marquee-group svg {
    height: auto;
    width: 2rem;
    fill: currentColor;
}

.obelix-marquee-wrapper .obelix-marquee .obelix-text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: var(--marquee-gap);
}

.obelix-marquee-wrapper .obelix-marquee.is-vertical.icon-right .obelix-text-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.obelix-marquee-wrapper .obelix-marquee.is-vertical.icon-bottom .obelix-text-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.obelix-marquee-wrapper .marquee-icon {
    --icon-width: 1.5rem;
    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;
}

/* Image icon */
.obelix-marquee-wrapper .marquee-icon.is-image {
    width: calc(var(--icon-width) * 2);
}

.obelix-marquee-wrapper .marquee-icon img {
    /* height: var(--icon-width, 3rem); */
    width: 100%;
    max-width: unset;
}

/* Svg inline icon */
.obelix-marquee-wrapper .marquee-icon.is-image svg {
    width: var(--icon-width);
}

.obelix-marquee-wrapper .marquee-icon.is-image svg > * {
    fill: currentColor!important;
}

/* Library icon */
.obelix-marquee-wrapper i.marquee-icon {
    font-size: var(--icon-width);
}

.obelix-marquee .obelix-scroll-image img {
    height: var(--image-ratio);
    width: auto;
    max-width: unset;
}

.obelix-marquee-wrapper .is-vertical .obelix-scroll-image img {
    width: var(--image-ratio);
    height: auto;
}

@-webkit-keyframes obelix-scroll-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-1 * var(--obelix-scroll-distance)));
        transform: translateX(calc(-1 * var(--obelix-scroll-distance)));
    }
}

@keyframes obelix-scroll-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-1 * var(--obelix-scroll-distance)));
        transform: translateX(calc(-1 * var(--obelix-scroll-distance)));
    }
}

@-webkit-keyframes obelix-scroll-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(calc(-1 * var(--obelix-scroll-distance)));
        transform: translateY(calc(-1 * var(--obelix-scroll-distance)));
    }
}

@keyframes obelix-scroll-y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(calc(-1 * var(--obelix-scroll-distance)));
        transform: translateY(calc(-1 * var(--obelix-scroll-distance)));
    }
}

@-webkit-keyframes fade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Wrapper Styles */
.obelix-marquee-wrapper .obelix-marquee-group {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: var(--marquee-gap);
    white-space: nowrap;
    -webkit-animation: obelix-scroll-x var(--obelix-duration) linear infinite;
    animation: obelix-scroll-x var(--obelix-duration) linear infinite;
}

.obelix-marquee.is-vertical .obelix-marquee-group {
    -webkit-animation-name: obelix-scroll-y;
    animation-name: obelix-scroll-y;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.obelix-marquee-wrapper .is-vertical.v-align-left .obelix-marquee-group {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
}

.obelix-marquee-wrapper .is-vertical.v-align-right .obelix-marquee-group {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    text-align: right;
}

.obelix-marquee-wrapper .obelix-marquee.reverse .obelix-marquee-group {
    animation-direction: reverse;
    -webkit-animation-delay: -3s;
    animation-delay: -3s;
}

/* Text effect */
.obelix-marquee-wrapper .stroke .obelix-scroll-text.odd {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
}

.obelix-marquee-wrapper .gold .obelix-scroll-text {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(18%, #dec58d), color-stop(24%, #d8c08c), color-stop(26%, #cfc09f), color-stop(27%, #cfc09f), color-stop(40%, #ffecb3), color-stop(78%, #af8734));
    background: -o-linear-gradient(top, #dec58d 18%, #d8c08c 24%, #cfc09f 26%, #cfc09f 27%, #ffecb3 40%, #af8734 78%);
    background: linear-gradient(to bottom, #dec58d 18%, #d8c08c 24%, #cfc09f 26%, #cfc09f 27%, #ffecb3 40%, #af8734 78%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
    position: relative;
}

.obelix-marquee-wrapper .is-vertical.v-align-left {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.obelix-marquee-wrapper .is-vertical.v-align-right {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.obelix-marquee-wrapper .is-vertical.v-align-left .obelix-scroll-text {
    text-align: left;
}

.obelix-marquee-wrapper .is-vertical.v-align-right .obelix-scroll-text {
    text-align: right;
}

/* Shadow */
.obelix-marquee-wrapper .obelix-marquee.has-shadow::before, .obelix-marquee-wrapper .obelix-marquee.has-shadow::after {
    position: absolute;
    content: "";
    z-index: 1;
    pointer-events: none;
}

.obelix-marquee-wrapper .has-shadow.is-vertical::before, .obelix-marquee-wrapper .has-shadow.is-vertical::after {
    width: 100%;
    height: var(--shadow-width, 20%);
}

.obelix-marquee-wrapper .has-shadow.is-horizontal::before, .obelix-marquee-wrapper .has-shadow.is-horizontal::after {
    height: 100%;
    width: var(--shadow-width, 20%);
}

.obelix-marquee-wrapper .has-shadow.is-vertical::before {
    bottom: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left bottom, left top, from(var(--shadow-color, #fff)), to(rgba(255, 255, 255, 0)));
    background-image: -o-linear-gradient(bottom, var(--shadow-color, #fff), rgba(255, 255, 255, 0));
    background-image: linear-gradient(to top, var(--shadow-color, #fff), rgba(255, 255, 255, 0));
}

.obelix-marquee-wrapper .has-shadow.is-vertical::after {
    top: 0;
    left: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--shadow-color, #fff)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(top, var(--shadow-color, #fff), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, var(--shadow-color, #fff), rgba(0, 0, 0, 0));
}

.obelix-marquee-wrapper .has-shadow.is-horizontal::before {
    left: 0;
    top: 0;
    bottom: 0;
    background-image: -webkit-gradient(linear, left top, right top, from(var(--shadow-color, #fff)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(left, var(--shadow-color, #fff), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, var(--shadow-color, #fff), rgba(0, 0, 0, 0));
}

.obelix-marquee-wrapper .has-shadow.is-horizontal::after {
    right: 0;
    top: 0;
    bottom: 0;
    background-image: -webkit-gradient(linear, right top, left top, from(var(--shadow-color, #fff)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(right, var(--shadow-color, #fff), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, var(--shadow-color, #fff), rgba(0, 0, 0, 0));
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .obelix-marquee-wrapper .obelix-marquee-group {
        -webkit-animation-play-state: paused;
        animation-play-state: paused;
    }
}

/* End UX BUilder Marquee */