.sp-button {
  display: inline-block;
  padding: 0.75rem 1.5rem !important;
  border: 0;
  border-radius: 8px;
  background: #fff !important;
  cursor: pointer;
  transition: 0.5s ease;
  text-decoration: none;
  color: #202020 !important;
}

.sp-button:hover {
  background: #e9e9e9 !important;
  transform: scale(1.025);
}

.sp-button .text-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sp-button .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  white-space: nowrap;
}

/* global font updates */
.sp-button .text.is-default {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.03rem;
}

.sp-button .text.is-hover {
  font-family: "IBM Plex Serif", serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0.001;
  letter-spacing: -0.02rem;
}

/* Outline variant */
.sp-button.outline {
  background: transparent !important;
  border: 2px solid #fff !important;
  color: #fff !important;
}

.sp-button.outline:hover {
  background-color: #e9e9e9 !important;
  color: #202020 !important;
  transform: scale(1.025);
  border: 2px solid #e9e9e9 !important;
}

.sp-button.outline .text.is-default,
.sp-button.outline .text.is-hover {
  color: inherit;
}
