.component-button.ornl-button {
  --ornl-button-outline-width: 2px;
  --ornl-button-outline-offset: 0.125rem;
  --ornl-button-outline-color: var(--color-primary-strong);
  --ornl-button-border-width: 1.5px;
  --ornl-button-hover-state-color:rgb(45, 171, 36, 0.3);
  align-items: center;
  background: transparent;
  border: var(--ornl-button-border-width) solid transparent;
  border-radius: 0rem;
  box-shadow: none;
  box-sizing: border-box;
  color: var(--color-primary-rich);
  cursor: pointer;
  display: inline-flex;
  font-family: Mulish;
  font-size: 1rem;
  font-weight: 600;
  gap: 0.375rem;
  justify-content: center;
  line-height: 1;
  margin: 0;
  outline: none;
  padding: 0.625rem 1.125rem;
  text-decoration: none;
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease, box-shadow 120ms ease;
}
.component-button.ornl-button:hover, .component-button.ornl-button:focus, .component-button.ornl-button:active, .component-button.ornl-button:visited {
  box-shadow: none;
  text-decoration: none;
}
.component-button.ornl-button:focus-visible,
.component-button.ornl-button :focus,
.component-button.ornl-button :visited:focus {
  outline: var(--ornl-button-outline-width) solid var(--color-primary-strong);
  outline-offset: var(--ornl-button-outline-offset);
}
.component-button.ornl-button.is-disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.component-button.ornl-button .ornl-button__label {
  display: inline-block;
}

.component-button.ornl-button .ornl-button__icon {
  color: inherit;
  flex-shrink: 0;
}
/*# sourceMappingURL=button.css.map */
