.sticky-header {
  display: none;
  position: fixed;
  width: 100%;
  top: 0;
  animation: MoveDown 0.3s normal;
  -webkit-animation: MoveDown 0.3s normal;
  animation-fill-mode: forwards;
  background: var(--color-light-bg);
  z-index: 9;
  padding: 0.75em 0;
  box-shadow: var(--box-shadow-card);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.sticky-header.sticky-header--show {
  display: block;
}
@keyframes MoveDown {
  0% {
    top: 0;
  }
  100% {
    top: var(--section-tabs--outer-top);
  }
}
.sticky-header .card--img {
  transition: transform var(--animation-speed-link) linear;
}
.sticky-header .card--img::before {
  content: none;
}
.sticky-header .card--img img {
  display: block;
}
.sticky-header .product-image-wrapper {
  margin: 0;
  width: 90px;
}
.sticky-header .product-image-wrapper .product-image {
  height: 57px;
  transition: transform var(--animation-speed-link) linear;
}
.sticky-header:hover {
  background: var(--color-light);
}
.sticky-header:hover .card--img,
.sticky-header:hover .product-image-wrapper .product-image {
  transform: scale3d(1.1, 1.1, 1);
}
.sticky-header:hover .inline-btn {
  background: var(--color-cta-hover);
  color: #fff;
}
.sticky-header .sticky-header--row {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 1em;
  line-height: var(--heading-line-height);
}
.sticky-header .sticky-header--row .btn {
  display: block;
  white-space: nowrap;
}
.sticky-header .container .card.card-list {
  background: transparent;
  border: 0;
  padding: 0;
}
.sticky-header .container .card.card-list .card-list--grid {
  display: flex;
  align-items: center;
}
.sticky-header .container .card.card-list .card--title {
  text-align: left;
  font-weight: var(--font-weight-bold);
  font-size: 1.15em;
}
@media (min-width: 481px) {
  .sticky-header .container .card.card-list .card--title {
    padding-right: 1em;
  }
}
.sticky-header .container .card.card-list .card-specs--title {
  color: var(--color-text-specs-heading);
}
.sticky-header .container .card.card-list .card--offer {
  font-size: 1.15em;
  max-width: 35%;
}
.sticky-header .container .card.card-list .card--offer .offer-ends-on::before {
  margin-right: 0;
}
@media (max-width: 767px) {
  .sticky-header .container .card.card-list .card--offer,
  .sticky-header .container .card.card-list .sticky-header--annual-fee {
    display: none;
  }
}
.sticky-header .container .card.card-list .sponsored-card,
.sticky-header .container .card.card-list .business-card {
  display: none;
}

@media screen and (min-width: 1024px) {
  body.logged-in .sticky-header {
    animation: MoveDownLoggedIn 0.3s normal;
    -webkit-animation: MoveDownLoggedIn 0.3s normal;
    animation-fill-mode: forwards;
  }
  @keyframes MoveDownLoggedIn {
    0% {
      top: 0;
    }
    100% {
      top: var(--section-tabs--outer-top-desktop-lg-logged-in);
    }
  }
  @keyframes MoveDown {
    0% {
      top: 0;
    }
    100% {
      top: var(--section-tabs--outer-top-desktop-lg);
    }
  }
}

/*# sourceMappingURL=sticky-header.css.map */
