@charset "UTF-8";

.uk-button {
  /* 1 */
  margin: 0;
  /* 2 */
  border: 2px solid lightslategray;
  /* 3 */
  overflow: visible;
  /* 4 */
  font: inherit;
  color: inherit;
  /* 5 */
  text-transform: none;
  /* 6 */
  -webkit-appearance: none;
  border-radius: 0;
  /* 7 */
  display: inline-block;
  box-sizing: border-box;
  padding: 8px 10px;
  vertical-align: middle;
  font-size: 14px;
  /* 8 */
  line-height: 2px;
  /* 9 */
  text-align: center;
  /* 10 */
  text-decoration: none;
  text-transform: none;
  transition: 0.1s ease-in-out;
  transition-property: color, background-color, border-color;
  border-radius: 20px;
  box-shadow: 0 5px 12px rgba(14, 15, 17, 0.7);
}




/* Disabled * The same for all style modifiers */
.uk-button-default:disabled,
.uk-button-primary:disabled,
.uk-button-secondary:disabled,
.uk-button-danger:disabled {
  background-color: transparent;
  color: #262525;
  border-color: #e5e5e5;
}

