/* Logo ticker 1.0.0 */
.lvd-logo-ticker .lvd-section-title                     {font-weight: 700;}
.lvd-logo-ticker .lvd-section-intro.lvd-text-center     {margin-left:auto; margin-right:auto;}
.lvd-logo-ticker .lvd-section-intro                     {max-width:80%;}
.lvd-logo-ticker .lvd-image-filter img                  {filter: brightness(1.2) grayscale(100%); transition: all .3s;}
.lvd-logo-ticker .lvd-image-filter img:hover            {filter: none;}
.lvd-logo-ticker .lvd-logo-sm img                       {width:100px;}
.lvd-logo-ticker .lvd-logo-md img                       {width:140px;}
.lvd-logo-ticker .lvd-logo-lg img                       {width:180px;}

.scroller__inner.lvd-flex-gap-none                      {--lvd-gap: 0px;}
.scroller__inner.lvd-flex-gap-xs                        {--lvd-gap: 4px;}
.scroller__inner.lvd-flex-gap-sm                        {--lvd-gap: 8px;}
.scroller__inner.lvd-flex-gap                           {--lvd-gap: 12px;}
.scroller__inner.lvd-flex-gap-md                        {--lvd-gap: 20px;}
.scroller__inner.lvd-flex-gap-lg                        {--lvd-gap: 40px;}
.scroller__inner.lvd-flex-gap-xl                        {--lvd-gap: 60px;}
.scroller__inner.lvd-flex-gap-2xl                       {--lvd-gap: 80px;}
.scroller__inner.lvd-flex-gap-3xl                       {--lvd-gap: 100px;}
.scroller__inner                                        {display: flex; flex-wrap: wrap; --lvd-gap: 12px; gap: var(--lvd-gap);}
.scroller[data-animated="true"]                         {overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent,white 20%, white 80%, transparent); mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);}
.scroller[data-animated="true"] .scroller__inner        {width: max-content; flex-wrap: nowrap;animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;}
.scroller[data-direction="right"]                       {--_animation-direction: reverse;}
.scroller[data-direction="left"]                        {--_animation-direction: forwards;}
.scroller[data-speed="fast"]                            {--_animation-duration: 20s;}
.scroller[data-speed="slow"]                            {--_animation-duration: 60s;}

  @keyframes scroll {
    to {
      transform: translate(calc(-50% - (var(--lvd-gap) / 2)));
    }
  }

/* Surface Transparent */
.scroller__inner.lvd-surface-style-transparent,
.lvd-logo-ticker.lvd-surface-style-transparent         {background:var(--lvd-color-bg);}


/* Bm */
@media (min-width:1px) and (max-width:767px)
{
.lvd-logo-ticker, 
.lvd-logo-ticker.lvd-px, 
.lvd-logo-ticker.lvd-pxy              {padding-left:20px !important; padding-right:20px !important;}
.scroller__inner                      {--lvd-gap: 12px;}
.scroller__inner.lvd-flex-gap-lg      {--lvd-gap: 16px;}
.scroller__inner.lvd-flex-gap-xl      {--lvd-gap: 16px;}
.scroller__inner.lvd-flex-gap-2xl     {--lvd-gap: 16px;}
.scroller__inner.lvd-flex-gap-3xl     {--lvd-gap: 16px;}

}

/* Bt */
@media (min-width:768px) and (max-width:1024px)
{
.lvd-logo-ticker, 
.lvd-logo-ticker.lvd-px, 
.lvd-logo-ticker.lvd-pxy              {padding-left:20px !important; padding-right:20px !important;}
}

/*
   PROGRESSIVELY ENHANCED
   If a user has `prefers-reduced-motion: reduced`, there will be no animation
   and the items will wrap, instead of being hidden.
   If they have not opted for reduced motion, the items will be duplicated with JS
   and the duplicated content will have `aria-hidden="true"` to prevent duplicate content
   for screen readers.
   If a user has JS disabled or it fails for whatever reason, they will get the same 
   experience as a user with `prefers-reduced-motion: reduced`, so no content is hidden,
   and there is no animation.
   
   === OPTIONS ===
   CONTROL SPEED 
   If you don't assign anything, it will use a default speed.
   To change the speed, on the `.scroller`
   you can use `data-speed="fast"` or `data-speed="slow"

   CONTROL DIRECTION 
   By default, it will scroll from right to left.
   To change the direction, on the `.scroller`
   you can use `data-direction="right"` (`data-direction="left" also works, but it is the default) 

   Copyright (c) 2023 by Kevin (https://codepen.io/kevinpowell/pen/BavVLra)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


*/