@charset "UTF-8";
.cta-button {
  background-color: #7041d9;
  border: 2px solid #7041d9;
  border-radius: 45px;
  padding: 0 8px;
  gap: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cta-button:hover {
  background-color: #fff;
  border-color: #7041d9;
  color: #7041d9;
}
å .cta-button:focus-visible {
  outline: 2px solid #d1c4fe;
  outline-offset: 2px;
}

.cta-button--simple {
  justify-content: center;
}
.cta-button--simple .cta-button__body {
  justify-content: center;
}
.cta-button--simple .cta-button__text {
  align-items: center;
  text-align: center;
}
.cta-button--simple:hover {
  border-width: 2px;
  border-color: #7041d9;
}

.cta-button__body {
  width: 100%;
  position: relative;
}

.cta-button__text {
  width: 100%;
}

.cta-button__label {
  white-space: nowrap;
  color: inherit;
  font-size: 22px;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.01em;
}

.cta-button:hover .cta-button__icon-container {
  background-color: #7041d9;
}

@media (max-width: 996px) {
  .cta-button {
    transform: scale(0.75);
    transform-origin: center;
  }
}/*# sourceMappingURL=buttons.css.map */