.da-button-wrapper {
  line-height: 1;
}

.da-button {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.225px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}
.da-button--gradient {
  background: linear-gradient(134deg, #00C096 -14.72%, #000EC6 93.59%);
}
.da-button--outline {
  border: 2.639px solid #3A7F7F;
  background: rgba(0, 0, 0, 0);
  box-shadow: 0 0 39.584px 1.319px #2EC1E1 inset, 0 0 26.389px 1.319px #00A0A3 !important;
}
.da-button--outline:hover {
  box-shadow: 0 0 30px 1px #2EC1E1 inset, 0 0 50px 1px #00A0A3 !important;
}
.da-button--plain {
  color: #000a24;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.da-button:hover {
  text-decoration: none;
}
.da-button:active {
  transform: translateY(0);
}
.da-button.da-button-small {
  padding: 12px 24px;
  font-size: 16px;
}
.da-button.da-button-medium {
  padding: 21px 29.25px;
  font-size: 18px;
}
.da-button.da-button-large {
  padding: 30px 40px;
  font-size: 20px;
}
.da-button.da-button-extra-large {
  padding: 20px 40px;
  font-size: 20px;
}

.decent-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.decent-icon svg {
  width: 1em;
  height: 1em;
}

.da-button-text {
  display: inline-block;
}

.da-button.loading {
  pointer-events: none;
  opacity: 0.6;
}
.da-button.loading:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.da-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
/*# sourceMappingURL=button.css.map */
