#HeaderLower ul ul {
  background-color: rgba(217,217,217,1) !important;
}
/* don’t display the button by default */
.apple-pay-checkout-button {
  display: none;
}

/* display the button if apple pay is supported */
.apple-pay-supported .apple-pay-checkout-button {
  display: inline-block;
}

/* renders a black background with white logo */
.apple-pay-checkout-button {
  background-size: 100% 60%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 5px;
  padding: 0px;
  box-sizing: border-box;
  min-width: 175px;
  min-height: 32px;
  max-height: 64px;
  background-image: -webkit-named-image(apple-pay-logo-white);
  background-color: black;
  text-indent: -9000em;
  cursor: pointer;
}

/* for small screens, you should adjust the width of the button to
   span the width of the containing block */
@media screen and (max-width: 480px) {
  .apple-pay-checkout-button {
    width: 100%;
    height: 60px;
  }
}

/* Affirm messaging text on the product pages */
.ProductDetailsGrid #learn-more{
  font-size:1.2em;
  display:block;
  width:100%;
  text-align: center;
  padding:.2em;
  margin-bottom:1em;
}

@media (max-width:440px){
  .ProductDetailsGrid #learn-more{
    font-size:1em;
  }
}