/* GGA top feature bar */
.top-feature-strip {
  position: relative;
  z-index: 99999;
  width: 100%;
  height: 5px;
  background: #fff;
  pointer-events: none;
}

.top-feature-bar {
  position: relative;
  z-index: 99999;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  height: 35px;
  background: #b01f24;
  box-sizing: border-box;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  border-top: 1px solid #d6b83f;
}

.top-feature-bar--static {
  grid-template-columns: 1fr;
}

.top-feature-viewport {
  position: relative;
  display: flex;
  align-items: stretch;
  min-width: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.top-feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 100%;
  height: 100%;
  padding: 0 12px;
  box-sizing: border-box;
  color: inherit;
  background: transparent;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  text-decoration: none;
  transition: opacity 1.35s ease-in-out;
  will-change: opacity;
}

.top-feature-item.is-active,
.top-feature-bar--static .top-feature-item {
  opacity: 1;
  pointer-events: auto;
}

.top-feature-label {
  display: inline;
}

.top-feature-bar--slider .top-feature-item {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.top-feature-bar--slider .top-feature-item.is-active {
  z-index: 2;
}

.top-feature-item:visited,
.top-feature-item:hover,
.top-feature-item:focus,
.top-feature-item:active {
  color: inherit;
  text-decoration: none !important;
}

.top-feature-bar:hover,
.top-feature-bar:focus-within {
  background: #d6b83f;
  color: #fff;
}

body.home .top-feature-bar {
  border-bottom: 1px solid #d6b83f;
}

@media (max-width: 782px) {
  .top-feature-bar {
    min-height: 60px;
    height: auto;
  }

  .top-feature-viewport {
    min-height: 60px;
  }

  .top-feature-item {
    min-height: 60px;
    padding: 5px 10px;
    line-height: 1.4;
  }
}
