| 1 |
.king-addons-auto-scrolling-text { |
| 2 |
word-wrap: normal; |
| 3 |
word-break: break-word; |
| 4 |
white-space: nowrap; |
| 5 |
} |
| 6 |
|
| 7 |
.king-addons-auto-scrolling-text .king-addons-auto-scrolling-text-inner * { |
| 8 |
margin: 0; |
| 9 |
padding: 0; |
| 10 |
word-wrap: normal; |
| 11 |
word-break: keep-all; |
| 12 |
} |
| 13 |
|
| 14 |
.king-addons-auto-scrolling-text-gradient .king-addons-auto-scrolling-text-inner { |
| 15 |
-webkit-background-clip: text; |
| 16 |
-webkit-text-fill-color: transparent; |
| 17 |
} |
| 18 |
|
| 19 |
.king-addons-auto-scrolling-text img { |
| 20 |
display: inline-block; |
| 21 |
} |
| 22 |
|
| 23 |
.king-addons-auto-scrolling-text-underline-gradient .king-addons-auto-scrolling-text-inner { |
| 24 |
position: relative; |
| 25 |
transition: all 0.25s ease-in; |
| 26 |
} |
| 27 |
|
| 28 |
.king-addons-auto-scrolling-text { |
| 29 |
width: auto; |
| 30 |
display: inline-block; |
| 31 |
} |
| 32 |
|
| 33 |
.king-addons-auto-scrolling-text-items { |
| 34 |
overflow: hidden; |
| 35 |
white-space: nowrap; |
| 36 |
box-sizing: border-box; |
| 37 |
position: relative; |
| 38 |
} |
| 39 |
|
| 40 |
.king-addons-auto-scrolling-text-wrapper { |
| 41 |
display: inline-block; |
| 42 |
white-space: nowrap; |
| 43 |
animation: king-addons-auto-scrolling-animation 20s linear infinite; |
| 44 |
} |
| 45 |
|
| 46 |
@keyframes king-addons-auto-scrolling-animation { |
| 47 |
0% { transform: translateX(0); } |
| 48 |
100% { transform: translateX(-100%); } |
| 49 |
} |
| 50 |
|
| 51 |
.swiper-container:not(.swiper-container-initialized) > .swiper-wrapper, |
| 52 |
.swiper:not(.swiper-initialized) > .swiper-wrapper { |
| 53 |
overflow: visible !important; |
| 54 |
} |