/**
    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 .wdt-animation-item { padding: 0 clamp(0.875rem, 0.7308rem + 0.641vw, 1.5rem); /*  Min-14 & Max-24 */ }

.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,
.wdt-animation-item.text-item a { color: var(--wdt-elementor-color-primary); text-decoration: none !important; }
.wdt-animation-item.text-item a:hover { color: var(--wdt-elementor-color-accent); }

.wdt-dark-bg .wdt-animation-item.text-item,
.wdt-dark-bg .wdt-animation-item.text-item a:not(:hover) { color: var(--wdt-elementor-color-white); }


/* Animation Icon Style */
.wdt-animation-wrapper {
    position: relative;
    overflow: hidden;
}
.wdt-animation-wrapper::before,
.wdt-animation-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;    
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* LEFT SIDE */
.wdt-animation-wrapper::before {
    left: 0;
    background: linear-gradient( to right, rgba(var(--wdtAccentTxtColorRgb), 1.5), rgba(var(--wdtAccentTxtColorRgb), 0.4), rgba(var(--wdtAccentTxtColorRgb), 0));
}

/* RIGHT SIDE */
.wdt-animation-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(var(--wdtAccentTxtColorRgb), 1.5), rgba(var(--wdtAccentTxtColorRgb), 0.4), rgba(var(--wdtAccentTxtColorRgb), 0) );
}
.wdt-animation-holder .wdt-animation-item.icon-item{
   font-size: clamp(1.75rem, 1.5007rem + 0.8328vw, 2.5rem);/* Max-40px min-24px */
    padding: 0 clamp(0.9375rem, 0.2104rem + 2.4289vw, 3.125rem);/* Max-50px min-15px */
    color: rgba(var(--wdtBodyTxtColorRgb),.6);
    transition: var(--wdtBaseTransition);
}
.wdt-animation-holder .wdt-animation-item.icon-item:hover{color: var(--wdtLinkColor);}
.wdt-animation-holder .wdt-animation-item.icon-item svg {width: auto; fill: currentColor;}


/* @media(max-width: 767px){
    .wdt-animation-holder .wdt-animation-item.icon-item{
        font-size: var(--wdtFontSize_H4);
        padding: 0 40px;
    }
}
@media(max-width: 479px){
    .wdt-animation-holder .wdt-animation-item.icon-item{
        padding: 0 30px;
    }
} */


/* Testimonial */

.wdt-animation .wdt-animation-wrapper::before {
    left: 0;
    background: transparent;
}
.wdt-animation .wdt-animation-wrapper::after {
    right: 0;
    background: transparent;
}

/* Animation-text with image */

.wdt-animation-wrapper:has(.wdt-animation-item.text-item)::after {
    background: transparent;
    right:0px;
}
.wdt-animation-wrapper:has(.wdt-animation-item.text-item)::before {
    background: transparent;
    left: 0;
}


/**
    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 */ }


