/*================================
    Marquee Animation Style 
================================*/

.wdt-animation-wrapper { position: relative; display: flex; flex-flow: row nowrap; overflow: hidden;   mask-image: linear-gradient(to right, transparent 0%, var(--wdtHeadAltColor) 5%, var(--wdtHeadAltColor) 95%, transparent 100%);transition: var(--wdtBaseTransition);-webkit-transition: var(--wdtBaseTransition); }

.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(0.75rem, 0.376rem + 1.2491vw, 1.875rem); /* mx-30 mn-14 */ }


.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; } 
}
@keyframes star-blink {
    0% {transform: scale(0.5) rotate(0deg);}
    50% {transform: scale(1) rotate(180deg);}
    100% {transform: scale(0.4) rotate(360deg);}
}
@-webkit-keyframes star-blink {
    0% {transform: scale(0.5) rotate(0deg);}
    50% {transform: scale(1) rotate(180deg);}
    100% {transform: scale(0.4) rotate(360deg);}
}

/* ===========================
    Animation Text Style 
=========================== */

.wdt-animation-item.text-item { display: inline-block; }
.wdt-animation-text { font-size: clamp(1.875rem, 1.2517rem + 2.0819vw, 3.75rem); /* mx-60 mn-30 */
    font-weight: var(--wdtFontWeight_Alt); font-family: var(--wdtFontTypo_Alt); padding: 0; 
    text-transform: capitalize; line-height: normal; color: var(--wdtHeadAltColor); }

.wdt-animation-item.text-item .wdt-animation-text a { text-decoration: none !important; color: currentColor; }
.wdt-animation-item.text-item .wdt-animation-text a:hover { background-size: cover; color: currentColor; background-clip: text; -webkit-background-clip: text; }

.wdt-cus-marquee-style-1.wdt-dark-bg .wdt-animation-text{color: var(--wdtAccentTxtColor);}
.wdt-cus-marquee-style-1.wdt-dark-bg .wdt-animation-text:hover{color: rgb(var(--wdtAccentTxtColorRgb), .5);}  

/* ===========================
    Animation Icon Style 
=========================== */

.wdt-animation-item.icon-item i { display: flex; align-items: center; justify-content: center;
    font-size: clamp(2.875rem, 2.5841rem + 0.9715vw, 3.75rem); /* Min-60 & Max-48 */
    width: clamp(2.875rem, 2.5841rem + 0.9715vw, 3.75rem); /* Min-60 & Max-48 */
    height: clamp(2.875rem, 2.5841rem + 0.9715vw, 3.75rem); /* Min-60 & 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
=========================== */


.wdt-cus-marquee-style-1 .wdt-animation-wrapper .wdt-animation-item.icon-item{ animation: star-blink 2s infinite; -webkit-animation: star-blink 2s infinite;}
.wdt-cus-marquee-style-1 .wdt-animation-text {color: rgb(var(--wdtAccentTxtColorRgb), .15);}
.wdt-cus-marquee-style-1 .wdt-animation-text:hover {color: rgb(var(--wdtAccentTxtColorRgb), .8);}



