.blackfriday-progressbar {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.4px;
  letter-spacing: -0.011em;
  text-transform: uppercase;
  margin-top: 15px;
}
@media screen and (min-width: 1280px) {
  .blackfriday-progressbar {
    margin-top: 20px;
  }
}
.blackfriday-progressbar .blackfriday-progressbar-container {
  height: 10px;
  background: #1D1D1D;
  border: 1px solid #ffd966;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 217, 102, 0.25);
}
.blackfriday-progressbar .blackfriday-progressbar-progressbar {
  width: 0;
  height: 100%;
  background: repeating-linear-gradient(to right, #ffd966 0 7px, transparent 7px 8px), #ffd966;
  image-rendering: pixelated;
  animation: bf-fill 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  position: relative;
}
.blackfriday-progressbar .blackfriday-progressbar-progressbar::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 12px;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 10px 3px rgba(255, 217, 102, 0.95), 0 0 22px 8px rgba(255, 217, 102, 0.55);
  opacity: 0;
  animation: bf-glow-boost 0.55s ease-out 1s forwards;
}
.blackfriday-progressbar .blackfriday-progressbar-progressbar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -55%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, rgba(255, 217, 102, 0) 0%, rgba(255, 217, 102, 0.25) 20%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 217, 102, 0.25) 80%, rgba(255, 217, 102, 0) 100%);
  filter: blur(1px);
  mix-blend-mode: plus-lighter;
  opacity: 0;
  animation: bf-shine-boost 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) 1.1s both;
}

@keyframes bf-fill {
  from {
    width: 0;
  }
  to {
    width: var(--target);
  }
}
@keyframes bf-shine-boost {
  0% {
    left: -55%;
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@keyframes bf-glow-boost {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@supports not (mix-blend-mode: plus-lighter) {
  .blackfriday-progressbar .blackfriday-progressbar-progressbar::after {
    mix-blend-mode: screen;
  }
}
@media (prefers-reduced-motion: reduce) {
  .blackfriday-progressbar .blackfriday-progressbar-progressbar {
    animation: none;
    width: var(--target);
  }
  .blackfriday-progressbar .blackfriday-progressbar-progressbar::before, .blackfriday-progressbar .blackfriday-progressbar-progressbar::after {
    animation: none;
    display: none;
  }
}

/*# sourceMappingURL=black-friday.css.map */
