/* Marquee_WhiteEdge_Horz */
/* Default is horizontal */
.marquee-whiteedge-horz {
  /* user needs to set these: */
  /* keep aspect ratio */
  /* for a group to finish */
  /* good to show partial at end */
  /* selectable features */
  /* calculated */
  /* default is horizontal */
}
@keyframes scrollHorz {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1332.1px);
  }
}
.marquee-whiteedge-horz {
  /* The bounded area where the items scroll */
  display: flex;
  flex-direction: row;
  position: relative; /* required so before and after absolute references work */
  align-items: center;
  width: 100%; /* fills parent container */
  max-width: 917.7px;
  height: 111px;
  margin-top: 1rem;
  background: white;
  /*border: 1px solid black;*/
  overflow-x: hidden;
}
.marquee-whiteedge-horz::before, .marquee-whiteedge-horz::after {
  content: "";
  position: absolute;
  z-index: 2;
  height: 91px;
  width: 121.1px;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.marquee-whiteedge-horz::before {
  left: 0;
  top: 0;
}
.marquee-whiteedge-horz::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.marquee-whiteedge-horz {
  /* hover on outer pauses group animation */
}
.marquee-whiteedge-horz:hover .mweh-group {
  animation-play-state: paused;
}
.marquee-whiteedge-horz {
  /* A group of items. Duplicate the group in the HTML for continuous scrolling */
}
.marquee-whiteedge-horz .mweh-group {
  display: flex;
  flex-direction: row;
  width: calc(131.1px * numberOfItemsInGroup);
  animation: scrollHorz 15s linear infinite;
}
.marquee-whiteedge-horz {
  /* An individual item */
}
.marquee-whiteedge-horz .mweh-item {
  padding-top: 0;
  padding-right: 10px;
  padding-bottom: 0;
  padding-left: 0;
}
.marquee-whiteedge-horz .mweh-item img {
  width: 121.1px;
  height: auto;
}

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