/* Solid gold CTAs. */
:root .shiny-cta.shiny-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  min-height: 56px;
  border: 1px solid #d4b464;
  border-radius: 360px;
  background: #d4b464;
  color: #000000;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  box-shadow: none;
  animation: none;
  transform: none;
  transition:
    background-color 0.2s,
    border-color 0.2s;
}
:root .shiny-cta .shiny-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  gap: 24px;
  width: 100%;
  font-size: inherit;
  line-height: inherit;
}
:root .shiny-cta::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -55%;
  width: 38%;
  height: 160%;
  background: #d4b464;
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 0;
}
:root .shiny-cta:active {
  background: #d4b464;
  border-color: #d4b464;
}
:root .header .shiny-cta {
  padding: 13px 22px;
  min-height: 46px;
  font-size: 12px;
}
@media (max-width: 760px) {
  :root .shiny-cta.shiny-cta {
    padding: 16px 22px;
    font-size: 13px;
  }
  :root .header .shiny-cta {
    padding: 11px 14px;
    min-height: 44px;
    font-size: 10px;
  }
  :root .shiny-cta .shiny-content {
    gap: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root .shiny-cta.shiny-cta {
    transition: none;
  }
  :root .shiny-cta::before {
    display: none;
  }
}
