input[type="submit"],
button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 38px;
  padding: 0 18px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  outline: none;
  color: #fff;
  background-color: #111;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 150ms ease, box-shadow 200ms ease, background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

input[type="submit"].small,
button.small,
.button.small {
  font-size: 13px;
  font-weight: 700;
  min-height: 36px;
  padding: 0 14px;
}

input[type="submit"],
input[type="submit"] a,
button,
button a,
.button,
.button a {
  text-decoration: none !important;
}

input[type="submit"].light,
button.light,
.button.light {
  background-color: #FFFFFF;
  color: #000;
  border-color: #000;
}

input[type="submit"].success,
button.success,
.button.success {
  background-color: #28A745;
  border-color: #23913c;
}

input[type="submit"].danger,
button.danger,
.button.danger {
  background-color: #D73A49;
  border-color: #b92f3d;
}

input[type="submit"].secondary,
button.secondary,
.button.secondary {
  background-color: #6C757D;
  color: #FFFFFF;
  border-color: #5C666E;
}

input[type="submit"].info,
button.info,
.button.info {
  background-color: #0D6EFD;
  border-color: #0a5ed9;
}

input[type="submit"].warning,
button.warning,
.button.warning {
  background-color: #FFC107;
  color: #000;
  border-color: #e0a800;
}

input[type="submit"]:hover,
button:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

input[type="submit"]:active,
button:active,
.button:active {
  transform: translateY(0);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

input[type="submit"].light:hover,
button.light:hover,
.button.light:hover {
  background-color: #000;
  color: #FFFFFF;
  border-color: #000;
}

input[type="submit"].secondary:hover,
button.secondary:hover,
.button.secondary:hover {
  background-color: #5A6268;
}

input[type="submit"].info:hover,
button.info:hover,
.button.info:hover {
  background-color: #0b5ed7;
}

input[type="submit"].warning:hover,
button.warning:hover,
.button.warning:hover {
  background-color: #e0a800;
}

input[type="submit"].success:hover,
button.success:hover,
.button.success:hover {
  background-color: #22863a;
}

input[type="submit"].danger:hover,
button.danger:hover,
.button.danger:hover {
  background-color: #c5303f;
}

/* input[type="submit"]:active,
button:active,
.button:active {
  color: #000;
  background-color: #FFFFFF;
} */

/**
 * Button group
 */
.button-group {
  display: inline-flex;
  align-items: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.button-group > a:not(:first-child),
.button-group > span:not(:first-child),
.button-group > p:not(:first-child) {
  display: inline-block;
  margin-left: 15px;
  color: #A0A0A0 !important;
  text-decoration: none !important;
  cursor: pointer;
  /* transition: all 250ms ease-in; */
}

.button-group > a:not(:first-child):hover,
.button-group > span:not(:first-child):hover,
.button-group > p:not(:first-child):hover {
  color: #505050 !important;
}
