/* Media */
.module-logo-marqee {

  &[class*="theme-"] {
    background-color: inherit;
  }

  /* Components */
  .module-marqee{
    margin-top: var(--baseline-2);
  }
  .module-marquee-outer {
    overflow: hidden;
    display: flex;
  }

  .module-marquee-inner {
    display: inline-flex;
      gap: 30px;
    }
  }

  .module-marquee-item {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;    

    >*{
      flex: 1 0 auto;
    }

    img{
      max-width: 120px;
    }
  }

}