/* Button
------------------------------------------------*/
.button {
  display: inline-block;
  overflow: hidden;
  outline: none;
  width: auto;
  background-color: var(--button-color, #ff7d00);
  color: var(--button-text-color, #fff);
  padding: 16px 32px;
  border: 0;
  border-radius: 25px;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
  position: relative;
}

.button:hover {
  cursor: pointer;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #fff;
  transition: all 0.2s linear;
}

.button:hover::before {
  opacity: 0.1;
}

.button:active::before {
  transition: opacity 0.1s linear;
  opacity: 0.2;
}

.outline {
  background-color: transparent;
  border: 2px solid var(--button-color, #fff);
  color: var(--button-color, #fff);
}

.button:disabled {
  background-color: #f6f7f8;
  color: #697886;
  cursor: not-allowed;
}
