header .filmstrip,
.wp-site-blocks .filmstrip,
.editor-styles-wrapper .filmstrip {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.filmstrip {
  height: 40px;
  background: #050504;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 999;
}

.filmstrip-track {
  display: flex;
  width: max-content;
  animation: filmroll 14s linear infinite;
  will-change: transform;
}

.filmstrip-set {
  display: flex;
  flex: 0 0 auto;
}

.filmstrip-set span {
  width: 26px;
  height: 20px;
  background: #111109;
  border: 1px solid #1a1a16;
  border-radius: 2px;
  margin: 0 8px;
  flex: 0 0 auto;
}

@keyframes filmroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-840px);
  }
}