.k-icon {
  width: 1em;
  height: 1em;
  margin: 1px;

}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.k-button {
  margin: 1px;
  font-size: 14px;
  height: 32px;
  padding: 0 1em;
  vertical-align: middle;
  border-radius: 4px;
  border: 1px solid #999;
  background: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.k-button:hover {
  border-color: black;
  cursor: pointer;
}
.k-button:active {
  background-color: #eeeeee;
}
.k-button:focus {
  outline: none;
}
.k-button > .content {
  order: 2;
}
.k-button > .icon {
  order: 1;
  margin-right: 0.1em;
}
.k-button.icon-right > .content {
  order: 1;
}
.k-button.icon-right > .icon {
  order: 2;
  margin-right: 0em;
  margin-left: 0.1em;
}
.k-button .loading {
  animation: spin 2s infinite linear;
}
.k-button.big {
  font-size: 18px;
  height: 40px;
}
.k-button.small {
  font-size: 10px;
  height: 24px;
}
.k-button[disabled] {
  border-color: #bbb;
  color: #bbb;
  cursor: not-allowed;
}
.k-button[disabled]:active {
  background-color: white;
}
