/* Shared controls for promotion cards across desktop and mobile. */
body .promotion-card a,
body .promotion-card button,
body.account-body .account-bonus-card > a,
body.account-body .account-bonus-card > button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 44px !important;
  max-width: 100%;
  padding: 10px 16px !important;
  margin-top: 12px !important;
  border: 1px solid #31545d !important;
  border-radius: 10px !important;
  background: #143039 !important;
  color: #c8e9e6 !important;
  font-family: inherit;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 22px !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  box-shadow: none !important;
  transition: background .15s ease, border-color .15s ease;
}
body .promotion-card a:hover,
body .promotion-card button:not(:disabled):hover,
body.account-body .account-bonus-card > a:hover,
body.account-body .account-bonus-card > button:not(:disabled):hover {
  background: #1b3d46 !important;
  border-color: #598b91 !important;
}
body .promotion-card button:disabled,
body.account-body .account-bonus-card > button:disabled {
  background: #142329 !important;
  border-color: #293d44 !important;
  color: #95a9ae !important;
  cursor: default;
  opacity: 1;
}
body .promotion-card a:focus-visible,
body .promotion-card button:focus-visible,
body.account-body .account-bonus-card > a:focus-visible,
body.account-body .account-bonus-card > button:focus-visible {
  outline: 2px solid #77bdb8;
  outline-offset: 3px;
}
body .public-promo-blocks { margin-top: 24px; }
body .promotion-grid + .promotion-grid { margin-top: 24px; }
@media (max-width: 600px) {
  body .public-promo-blocks,
  body .promotion-grid + .promotion-grid { margin-top: 20px; }
}
