/**
 * Logo Runner — ships as style.css.
 *
 * From theme root (rsi-rcm): `npm run compile:blocks`.
 *
 * @package Rsi_Rcm
 */
/* stylelint-disable-next-line wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-disable wrap-rem-on-px/wrap-rem-on-px */
/* stylelint-enable wrap-rem-on-px/wrap-rem-on-px */
/*
USAGE:
font-size: fluid(12, 62); : from rem(12)@380px to  rem(62)@1440px
gap: fluid(10, 33, 992);  : from rem(10)@991px to  rem(33)@1440px
margin-right: fluid(32, 65, 320, 2560);  : from rem(32)@320px to  rem(65)@2560px
*/
/*
AUTOFILL

USAGE:
@include mixin.autofill(background-color, text-color);
@include mixin.autofill;

Note: Call this mixin in the wrapper or container to where you intend to manipulate the
      default chrome autofill styles for input, textarea and select elements.
*/
/* stylelint-disable */
/* stylelint-enable */
section.section.section--logo-runner {
  background: var(--white);
  padding: 3.5rem 0;
}
@media screen and (min-width:1199px) {
  section.section.section--logo-runner {
    padding: 5.5rem 0;
  }
}
section.section.section--logo-runner .rsi.logo-runner {
  width: 100%;
}
section.section.section--logo-runner .logo-runner__viewport {
  overflow: hidden;
  width: 100%;
}
section.section.section--logo-runner .logo-runner__track {
  display: flex;
  align-items: center;
  gap: clamp(1.875rem, 3.6225vw + 0.99201625rem, 4.25rem);
  width: max-content;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
section.section.section--logo-runner .logo-runner__track--dragging, section.section.section--logo-runner .logo-runner__track.logo-runner__track--dragging {
  cursor: grabbing;
}
section.section.section--logo-runner .logo-runner__item {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  height: clamp(1.875rem, 1.90658vw + 1.410271875rem, 3.125rem);
  max-width: 15.625rem;
}
section.section.section--logo-runner .logo-runner__logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  section.section.section--logo-runner .logo-runner__track {
    cursor: default;
  }
}

/*# sourceMappingURL=style.css.map */
