button,
.button {
  appearance: none;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  font-smoothing: antialiased;
  display: inline-block;
  line-height: 20px;
  margin: 0;
  padding: 0 10px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background-color: #bdc3c7;
  outline: none;
  font-weight: 500;
}
button:hover,
.button:hover {
  background-color: #cacfd2;
}
button:active,
.button:active {
  background-color: #a1a6a9;
}
button.disabled,
.button.disabled {
  cursor: default;
}

button.tiny,
.button.tiny {
  padding: 0 10px;
  font-size: 10px;
  height: 30px;
  line-height: 30px;
}
button.tiny.compact,
.button.tiny.compact {
  height: 20px;
  line-height: 20px;
}
button.small,
.button.small {
  padding: 0 12px;
  font-size: 12px;
  height: 36px;
  line-height: 36px;
}
button.small.compact,
.button.small.compact {
  height: 24px;
  line-height: 24px;
}
button.medium,
.button.medium {
  padding: 0 14px;
  font-size: 14px;
  height: 42px;
  line-height: 42px;
}
button.medium.compact,
.button.medium.compact {
  height: 28px;
  line-height: 28px;
}
button.large,
.button.large {
  padding: 0 18px;
  font-size: 18px;
  height: 54px;
  line-height: 54px;
}
button.large.compact,
.button.large.compact {
  height: 36px;
  line-height: 36px;
}
button.huge,
.button.huge {
  padding: 0 24px;
  font-size: 24px;
  height: 72px;
  line-height: 72px;
}
button.huge.compact,
.button.huge.compact {
  height: 48px;
  line-height: 48px;
}
button.enormous,
.button.enormous {
  padding: 0 30px;
  font-size: 30px;
  height: 90px;
  line-height: 90px;
}
button.enormous.compact,
.button.enormous.compact {
  height: 60px;
  line-height: 60px;
}