/**
    Marquee Animation Style 
*/

.wdt-animation-wrapper { position: relative; display: flex; flex-flow: row nowrap; overflow: visible; overflow-x: clip; }

.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.icon-item { 
    display: inline-flex; flex: 0 0 auto; text-align: center; position: relative; color: var(--wdtHeadAltColor); } */
.wdt-dark-bg .wdt-animation-wrapper div[class*="-marqee"] .wdt-animation-item.icon-item { color: var(--wdtAccentTxtColor); }
/* .wdt-animation-wrapper .wdt-animation-item { padding: 0 clamp(0.875rem, 0.7308rem + 0.641vw, 1.5rem);  Min-14 & Max-24 } */

/* .wdt-animation-wrapper div[class*="-marqee"] .wdt-animation-item.icon-item:has( ~ .wdt-animation-item.icon-item):has(:not( + .wdt-animation-item.text-item)) { font-size: clamp(9.375rem, 8.0224rem + 3.7313vw, 12.5rem); Min-150 & Max-200 } */

.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; }

.wdt-animation-wrapper {
    -webkit-mask-image: linear-gradient(to left, transparent 0%, var(--wdtHeadAltColor) 2%, var(--wdtHeadAltColor) 98%, transparent 100%);
    mask-image: linear-gradient(to left, transparent 0%, var(--wdtHeadAltColor) 2%, var(--wdtHeadAltColor) 98%, transparent 100%);
}

@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; font-size: clamp(1.5625rem, 1.4928rem + 0.3185vw, 1.875rem); /* Min-25 & Max-30 */ 
    color: var(--wdtSecondaryColor); font-weight: var(--wdtFontWeight_Alt); font-family: var(--wdtFontTypo_Alt); 
    text-transform: capitalize; line-height: 1; }

.wdt-animation-item.text-item a { color: var(--wdtHeadAltColor); text-decoration: none !important; }
.wdt-animation-item.text-item a:hover { color: var(--wdtPrimaryColor); }

/**
    Animation Icon Style 
*/

.wdt-animation-holder .wdt-animation-item.icon-item {
    font-size: clamp(1.5625rem, 1.4928rem + 0.3185vw, 1.875rem); /* Min-25 & Max-30 */
    color: rgba(var(--wdtHeadAltColorRgb),0.5);
    padding: 0 clamp(1.875rem, 1.1499rem + 2.4272vw, 4.0625rem); /* Min-30 & Max-65 */
    transition: var(--wdtBaseTransition);
}

.wdt-animation-holder .wdt-animation-item.icon-item:hover {
    color: var(--wdtHeadAltColor);
}
.wdt-animation-holder .wdt-animation-item.icon-item svg {
    width: auto;
    fill: currentColor;
}

/* .wdt-animation-item.icon-item { display: flex; align-items: center; justify-content: center;
    font-size:clamp(3.375rem, 3.2357rem + 0.6369vw, 4rem); cursor: pointer; transition: var(--wdtAltTransition);
    margin: 0 clamp(1.875rem, 1.5963rem + 1.2739vw, 3.125rem); color: rgba(var(--wdtBodyTxtColorRgb), 1); }
.wdt-animation-item.icon-item:hover { color: var(--wdtSecondaryColor); }
.wdt-animation-item.icon-item svg { width: 1em; height: auto; fill: currentColor; }

.wdt-animation-wrapper div[class*="-marqee"] .wdt-animation-item.icon-item + .wdt-animation-item.icon-item:last-child,
.wdt-animation-wrapper div[class*="-marqee"] .wdt-animation-item.icon-item:has( + .wdt-animation-item.icon-item)
 { font-size: clamp(9.375rem, 8.0224rem + 3.7313vw, 12.5rem); Min-150 & Max-200 */ /* } */
/** 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 */ /* } */

/* .wdt-text-animation .wdt-animation-item.text-item { font-size: 200px; color: rgba(var(--wdtAccentTxtColorRgb), 0.8); }

.wdt-text-animation-style-02 .wdt-animation-item.icon-item { padding: 0; } */

/**
    Responsive - AT Media Query
    --------------------------------
*/

/* Animation title with icon */

.wdt-animation-item.icon-item.icon-with-title{ font-size: var(--wdtFontSize_Base); cursor: default; margin: 0 0px; padding: 0 10px; color: var(--wdtPrimaryColor); will-change: transform; }
.wdt-animation-item.text-item.icon-with-title{ font-size: var(--wdtFontSize_H4); color: var(--wdtAccentTxtColor); }


/*-- CustomCSS --*/

.animation-spin .wdt-animation-holder .wdt-animation-item.icon-item {
    animation: wdt-spin 2s linear infinite;
}
@keyframes wdt-spin {
    0% { transform: rotate(0deg) scale(0.5); }
    50% { transform: rotate(90deg) scale(1); }
    100% { transform: rotate(0deg) scale(0.5); }
}

