/*================================
    Marquee Animation Style 
================================*/

.wdt-animation-wrapper { position: relative; display: flex; flex-flow: row nowrap; overflow: hidden; 
    -webkit-mask-image: linear-gradient(to right, transparent 0%, var(--wdtHeadAltColor) 5%, var(--wdtHeadAltColor) 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, var(--wdtHeadAltColor) 5%, var(--wdtHeadAltColor) 95%, transparent 100%);
}

.wdt-animation-wrapper div[class*="-marqee"] { width: auto; flex: 0 0 auto; display: grid; grid-auto-flow: column; align-items: center; }

.wdt-animation-wrapper div[class*="-marqee"] .wdt-animation-item { display: inline-flex; flex: 0 0 auto; text-align: center; position: relative; }
.wdt-animation-wrapper .wdt-animation-item { padding: 0 clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem); /*  Min-20 & Max-30 */ }

.wdt-animation-wrapper div[class*="-marqee"].right-to-left { 
    -webkit-animation: MarqueeLeft 24s linear infinite 0ms; animation: MarqueeLeft 24s linear infinite 0ms; }
.wdt-animation-wrapper div[class*="-marqee"].left-to-right { 
    -webkit-animation: MarqueeRight 24s linear infinite 0ms; animation: MarqueeRight 24s linear infinite 0ms; }
  
.wdt-animation-wrapper:hover div[class*="-marqee"] { -webkit-animation-play-state: paused; animation-play-state: paused; }

@keyframes MarqueeLeft { 
    from { margin-left: 0; } 
    to { margin-left: var(--wdt-marque-Margin-Width); } 
}
@keyframes MarqueeRight { 
    from { margin-left: var(--wdt-marque-Margin-Width); } 
    to { margin-left: 0; } 
}

/* ===========================
    Animation Text Style 
=========================== */

.wdt-animation-item.text-item { display: inline-block; }

.wdt-animation-item.text-item .wdt-animation-text,
.wdt-animation-item.text-item { 
    font-size: clamp(1.5rem, 1.425rem + 0.375vw, 1.875rem); /* Min-24 & Max-30 */
    font-weight: var(--wdtFontWeight_Alt); 
    font-family: var(--wdtFontTypo_Alt); 
    text-transform: capitalize; 
    line-height: 1; 
    color: var(--wdtHeadAltColor);
    white-space: nowrap;
}

.wdt-dark-bg .wdt-animation-item.text-item .wdt-animation-text,
.wdt-dark-bg .wdt-animation-item.text-item {
    color: var(--wdtAccentTxtColor);
}

.wdt-animation-item.text-item .wdt-animation-text:hover {
    color: var(--wdtLinkHoverColor);
}

.wdt-dark-bg .wdt-animation-item.text-item .wdt-animation-text:hover {
    color: rgb(var(--wdtAccentTxtColorRgb),0.6);
}

.wdt-animation-item.text-item .wdt-animation-text a { color: inherit; }

/* .wdt-animation-item.text-item .wdt-animation-text a:hover { color: var(--wdtLinkHoverColor); } */

/* shadow */

/* .wdt-animation-wrapper:before,
.wdt-animation-wrapper:after {
    content: '';
    width: clamp(1.875rem, 1.4595rem + 1.3879vw, 3.125rem);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to left, transparent, rgba(var(--wdtBodyBGColorRgb), 0.6), rgba(var(--wdtBodyBGColorRgb), 0.8), rgba(var(--wdtBodyBGColorRgb), 1));
    z-index: 1;
}

.wdt-animation-wrapper:after {
    left: unset;
    right: 0;
    transform: rotate(180deg);
} */


/* ===========================
    Animation Icon Style 
=========================== */

.wdt-animation-item.icon-item i { display: flex; align-items: center; justify-content: center;
    font-size: clamp(1.75rem, 1.4615rem + 1.2821vw, 3rem); /* Min-28 & Max-48 */
    width: clamp(1.75rem, 1.4615rem + 1.2821vw, 3rem); /* Min-28 & Max-48 */
    height: clamp(1.75rem, 1.4615rem + 1.2821vw, 3rem); /* Min-28 & Max-48 */ }

/* ===========================
    Animation Image Style 
=========================== */

.wdt-animation-item.image-item img { object-fit: cover; object-position: center;
    width: clamp(1.75rem, 1.4615rem + 1.2821vw, 3rem); /* Min-28 & Max-48 */
    height: clamp(1.75rem, 1.4615rem + 1.2821vw, 3rem); /* Min-28 & Max-48 */ }

/* ===========================
    Responsive
=========================== */

