.app-button {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin: 0;
  color: black;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  outline: none;
  border-radius: 6px;
  border: none;
  background-color: #f1f3f5;
  box-sizing: border-box;
  transition: 0.2s ease;
}
.app-button:hover {
  color: black;
  background-color: #e9ecef;
  text-decoration: none;
}
.app-button:active {
  background-color: #dee2e6;
}
.app-button:focus {
  outline: none !important;
}
.app-button i, .app-button ion-icon {
  font-size: 1.25rem;
}
.app-button i + span, .app-button ion-icon + span {
  margin-left: 0.5rem;
}
.app-button.app-rounded {
  border-radius: 5rem;
}
.app-button.app-small {
  height: 2.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.app-button.app-xs {
  height: 1.875rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.75rem;
}
.app-button.app-primary {
  color: white;
  background-color: red;
}
.app-button.app-primary:hover {
  background-color: #e60000;
}
.app-button.app-primary:active {
  background-color: #c00;
}
.app-button.app-gradient {
  color: white;
  background-image: linear-gradient(148deg, red 0%, #ff3a4e 100%);
}
.app-button.app-black {
  color: white;
  background-color: black;
}
.app-button.app-expand {
  display: flex;
  width: 100%;
}
.app-button.app-plain.app-primary {
  color: red;
  background-color: #fcc;
}
.app-button.app-plain.app-primary:hover {
  background-color: #ffbfbf;
}
.app-button.app-plain.app-primary:active {
  background-color: #ffb3b3;
}
.app-button-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.app-button-group .app-button {
  border-radius: 0;
  border-right: 1px solid #f8f9fa;
}
.app-button-group > *:first-child, .app-button-group .al-first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.app-button-group > *:last-child, .app-button-group .al-last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-right: none;
}
/*# sourceMappingURL=684d2b9459de025f85f4eaa9e2affa5c0258abc6.button.scss.map */
