/* Marquee Section — structural styles.
   All colours, sizes and spacing are set per instance from module.html. */

.aws-mq {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
    position: relative;
    padding: 26px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(90deg, rgba(209, 3, 90, 0.1), rgba(18, 83, 131, 0.08) 50%, rgba(209, 3, 90, 0.1));
}
}

.aws-mq__container {
  margin-left: auto;
  margin-right: auto;
}

.aws-mq__viewport {
  position: relative;
  overflow: hidden;
}

.aws-mq__track {
  display: inline-flex;
  will-change: transform;
}

.aws-mq__group {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.aws-mq__pill {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border-style: solid;
  line-height: 1.2;
  white-space: nowrap;
}

.aws-mq__dot {
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 50%;
}

.aws-mq__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  display: block;
}

.aws-mq__fade--left  { left: 0; }
.aws-mq__fade--right { right: 0; }

@keyframes awsMqScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .aws-mq--reduce .aws-mq__track {
    animation: none !important;
    transform: none !important;
  }
}
