.localnav-wrapper {
  background-color: #000; }

/* TO DO: Temp override to fix unclickable link. Should move this to a global style? */
.jobspromo {
  position: relative;
  z-index: 3; }

/* TO DO: Temp override for different style ribbon retail page. We should refactor this to be a global style */
.theme-light .localnav-wrapper {
  background-color: #fff; }

/* TO DO: Temp override to remove flicker of Cultural Banner. We should refactor this to ben handled AEM side with helper class */
.hero-panel .hero-panel__tile {
  display: none; }

.hero-panel-tile {
  text-align: center; }
  .hero-panel-tile .hero-panel-tile-row {
    z-index: 2;
    min-height: 54px; }
    .hero-panel-tile .hero-panel-tile-row .hero-panel-tile-drop {
      animation: ribbon-drop 0.8s cubic-bezier(0.42, 0, 0.58, 1) forwards;
      z-index: 1; }

@keyframes ribbon-drop {
  0% {
    transform: translateY(-100%); }
  100% {
    transform: translateY(0); } }
  .hero-panel-tile .hero-panel-tile-wrapper {
    padding: 15px 0;
    display: flex;
    align-items: center;
    animation: animate-background 1s cubic-bezier(0.42, 0, 0.58, 1) 1.8s forwards;
    background-color: #0071e3; }

@keyframes animate-background {
  0% {
    background-color: #0071e3; }
  100% {
    background-color: #111112; } }
    @media only screen and (max-width: 734px) {
      .hero-panel-tile .hero-panel-tile-wrapper .small-width {
        width: auto;
        max-width: 87.5%;
        font-size: 12px; } }
    .hero-panel-tile .hero-panel-tile-wrapper .hero-panel-content {
      display: inline-block;
      color: #fff;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0;
      line-height: 18px; }
      .hero-panel-tile .hero-panel-tile-wrapper .hero-panel-content a {
        color: #fff;
        animation: animate-color 1s cubic-bezier(0.42, 0, 0.58, 1) 1.8s forwards; }

@keyframes animate-color {
  0% {
    color: #fff; }
  100% {
    color: #2997ff; } }

