/* ========================================================================
  Button -- UiKit override
 ========================================================================== */

.spw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  line-height: 1.75;
  text-transform: none;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  margin-top: 1em;
  border: 1px solid;
  border-radius: 0.25rem !important;
}

.spw-button[disabled] {
  background-color: #0084f4;
  border-color: #0084f4;
  color: #eee;
  opacity: 0.5;
  cursor: not-allowed;
}

.spw-button--text {
  background-color: transparent;
  border: none;
  color: #0084f4;
}

.spw-button--outlined {
  background-color: transparent;
  border: 1px solid #0084f4;
  color: #0084f4;
}

.uk-light .spw-button--outlined,
.light .spw-button--outlined {
  border-color: white !important;
}

.spw-button--primary {
  background-color: #0084f4;
}

.spw-button--primary[disabled] {
  background-color: #2c4050;
  border-color: #2c4050;
  color: #b1afaf;
}
