:root {
  --template-area: "Promo-left-1 empty Promo-right-1" "Promo-left-2 empty Promo-right-2" "Promo-left-3 empty Promo-right-3";
}

.PromoBanner {
  background: #fff;
  flex: 0 100%;
  justify-content: center;
  margin: 0 0 1.4286rem;
  padding: .8571rem 1.7857rem;
  font-size: .7857rem;
  display: flex;
}

.PromoBanner.BannerFullWidthEdgetoEdge {
  position: relative;
}

.PromoBanner span {
  color: var(--brand-color-border-primary);
  text-transform: var(--sfly-font-transform-lettercase);
  font-weight: var(--font-weight-semibold);
  margin: 0 .3571rem 0 0;
  font-size: 1.1429rem;
}

.PromoBanner strong {
  font-size: 1.1429rem;
  font-weight: var(--font-weight-semibold);
}

.PromoBanner .AppLink {
  color: var(--text-color);
  text-decoration: none;
}

.PromoBanner time {
  margin: 0 .2143rem 0 0;
}

.PromoBanner .Promo {
  text-align: center;
}

.PromoBanner.Mobile {
  display: none;
}

.PromoBanner .SeePromoDetails {
  white-space: nowrap;
  text-decoration: underline;
}

.PromoBanner .SeePromoDetails.TextDecoration {
  text-decoration: none;
}

.PromoBanner.EyebrowPromoLayout {
  font-weight: var(--font-weight-semibold);
}

.Sticky .PromoBanner.EyebrowPromoLayout {
  padding: .8571rem .7143rem;
}

.PromoBanner.NewExperience {
  background-color: var(--promo-bg-color);
  justify-content: space-evenly;
  align-items: center;
  height: 3.1429rem;
  margin: 0;
  padding: 0;
}

.PromoBanner.NewExperience p {
  white-space: initial;
  margin: 0;
}

.PromoBanner.NewExperience em.highlighted-text {
  font-weight: var(--font-weight-bold);
  font-style: normal;
}

.PromoBanner.NewExperience span {
  text-transform: none;
  font-weight: var(--brand-fontweight-callout);
  margin: 0;
}

.PromoBanner.NewExperience .PromoCarousel a.AppLink, .PromoBanner.NewExperience .PromoCarousel span {
  font-size: 1rem;
  font-weight: var(--brand-fontweight-interactive);
  color: var(--promo-text-color);
}

.PromoBanner.NewExperience .PromoCarousel a.AppLink span, .PromoBanner.NewExperience .PromoCarousel a.AppLink em {
  color: var(--promo-text-color);
}

.PromoBanner.NewExperience .PromoCarousel .PromoCarouselSlider {
  max-width: 38.5719rem;
}

@media screen and (width <= 768px) {
  .PromoBanner {
    background: var(--fog-light);
  }

  .PromoBanner span, .PromoBanner strong {
    font-size: .8571rem;
  }

  .PromoBanner.NewExperience, .PromoBanner.NewExperience .PromoCarouselSlide, .PromoBanner.NewExperience .PromoCarousel .PromoCarouselSlider .promoBannerStyle {
    height: 4rem;
  }
}

@media screen and (width <= 991px) and (width >= 481px) {
  .PromoBanner.NewExperience .PromoCarousel .PromoCarouselSlider {
    min-width: 21.6429rem;
  }
}

@media screen and (width <= 991px) and (width >= 769px) {
  .PromoBanner.NewExperience .PromoCarousel .PromoCarouselSlider {
    margin: 0 .714rem;
  }
}

@media screen and (width >= 481px) {
  .PromoBanner.NewExperience .PromoCarousel .PromoCarouselNav {
    padding: 0 0 0 .714rem;
  }

  .PromoBanner.NewExperience .PromoCarousel .PromoCarouselNav.Right {
    padding: 0 .714rem 0 0;
  }
}

@media screen and (width <= 480px) {
  .PromoBanner.NewExperience .PromoCarousel a.AppLink, .PromoBanner.NewExperience .PromoCarousel span {
    font-size: .85712rem;
  }

  .PromoBanner.NewExperience .PromoCarousel .PromoCarouselSlider {
    max-width: 21.6429rem;
    padding: 0;
  }

  .PromoCarouselNav.Left {
    margin-left: .714rem;
  }

  .PromoCarouselNav.Right {
    margin-right: .714rem;
  }
}

@media screen and (width >= 1601px) {
  .PromoBanner.BannerFullWidthEdgetoEdge {
    width: var(--screen-WidthPromoBanner);
    left: var(--promoBannerLeftAlignment);
  }
}

.PromoCarousel {
  justify-content: center;
  width: 100%;
  display: flex;
  position: relative;
}

.PromoCarousel .svg-btn-icon.uh-btn {
  padding-left: 0;
}

.PromoCarouselSlider {
  flex-grow: 1;
}

.PromoCarouselNav {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  width: 1.5714rem;
  display: flex;
}

.PromoCarouselSlide {
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 3.1429rem;
  line-height: normal;
  display: flex;
}

.PromoCarousel .PromoCarouselNav span.svg-icon svg {
  fill: var(--promo-arrow-color);
  width: .7143rem;
  height: 1.2857rem;
}

.PromoCarousel .PromoCarouselNav span.svg-icon svg.arrow_mobile {
  display: none;
}

.Right span.svg-icon svg {
  transform: rotate(180deg);
}

@media screen and (width <= 767px) {
  .PromoCarousel .PromoCarouselNav span.svg-icon svg {
    width: auto;
    height: auto;
  }

  .PromoCarousel .PromoCarouselNav span.svg-icon svg.arrow_mobile {
    width: 1.142rem;
    height: 1.142rem;
    display: block;
  }

  .PromoCarousel .PromoCarouselNav span.svg-icon svg.arrow_desktop {
    display: none;
  }
}

@keyframes sliderFadeInOut {
  0% {
    opacity: 0;
  }

  4% {
    opacity: .3;
  }

  7% {
    opacity: .8;
  }

  10%, 90% {
    opacity: 1;
  }

  93% {
    opacity: .8;
  }

  96% {
    opacity: .3;
  }

  100% {
    opacity: 0;
  }
}

.PromoCarouselSlider .promoBannerStyle .animationCSS {
  opacity: 1;
  color: inherit;
  flex-grow: 1;
  flex-basis: 0;
  width: 100%;
  animation: 3.5s linear infinite sliderFadeInOut;
  position: absolute;
  top: 0;
  left: 0;
}

.PromoCarouselSlider .promoBannerStyle .visibilityHidden {
  visibility: hidden;
}

.PromoCarouselSlider .promoBannerStyle .visibilityVisible {
  visibility: visible;
}

.PromoCarouselSlider .promoBannerStyle .animationPlayState {
  animation: none;
}

.PromoBanner .PromoCarousel .PromoCarouselSlider .promoBannerStyle {
  flex-direction: column;
  height: 3.1429rem;
  display: flex;
  overflow: hidden;
  transform: translateX(0%);
}
/*# sourceMappingURL=brcmsspa-15.428784416faaa.css.map */
