/*--------------------------------------------------------------
# MOI button
--------------------------------------------------------------*/
.button {
  border-radius: 10px;
  background-color: white;
  border: 1px solid #dedede;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 0 1rem;
  text-align: center;
  text-decoration: none;
  width: fit-content;
  height: fit-content;
}

.button:disabled {
  background: var(--button-background-disabled);
  color: var(--button-color-disabled);
  cursor: not-allowed;
}

.button:disabled:hover {
  background: var(--button-background-disabled);
  color: var(--button-color-disabled);
}

a.button {
  text-decoration: none;
  padding: 0.4rem 1.2rem;
  cursor: pointer;
  user-select: none;
  word-wrap: normal;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

button.button {
  height: 38px;
}

.button:hover {
  color: #000;
  background: var(--button-background);
}
