@charset "UTF-8";
/* Original file: modules/board/skins/alice/assets/css/base/button.scss */
.al-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: 8px;
  border: none;
  background: none;
  background-color: #f1f3f5;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  transition: 0.2s ease;
}
@media (max-width: 768px) {
  .al-button {
    height: 2rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-size: 0.75rem;
  }
}
.al-button:hover {
  color: black;
  background-color: #e9ecef;
  text-decoration: none;
}
.al-button:active {
  background-color: #dee2e6;
}
.al-button:focus {
  outline: none !important;
}
.al-button i, .al-button ion-icon {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .al-button i, .al-button ion-icon {
    font-size: 1rem;
  }
}
.al-button i + span, .al-button ion-icon + span {
  margin-left: 0.5rem;
}
.al-button.al-rounded {
  border-radius: 5rem;
}
.al-button.al-small {
  height: 2.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.al-button.al-xs {
  height: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.75rem;
}
.al-button.al-expand {
  display: flex;
  width: 100%;
}
.al-button.al-primary {
  color: white;
  background-color: #d2b681;
}
.al-button.al-primary:hover {
  background-color: #bda474;
}
.al-button.al-primary:active {
  background-color: #a89267;
}
.al-button.al-black {
  color: white;
  background-color: black;
}
.al-button.al-up {
  color: #868e96;
  background-color: white;
  border: 1px solid #e9ecef;
}
.al-button.al-up:hover {
  background-color: #f8f9fa;
  border-color: #dee2e6;
}
.al-button.al-up:active {
  background-color: #f1f3f5;
  border-color: #ced4da;
}
.al-button.al-plain.al-primary {
  color: #d2b681;
  background-color: #f6f0e6;
}
.al-button.al-plain.al-primary:hover {
  background-color: #f4ede0;
}
.al-button.al-plain.al-primary:active {
  background-color: #f2e9d9;
}
.al-button-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.al-button-group .al-button {
  border-radius: 0;
  margin-right: 1px;
}
.al-button-group > *:first-child, .al-button-group .al-first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.al-button-group > *:last-child, .al-button-group .al-last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-right: 0;
}

