/*
/* button.css
*/

@charset "utf-8";

/* reset */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* blue buttons */
.button-g {
  width: auto;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  display: inline-flex;
  font-family:
    system-ui,
    -apple-system,
    system-ui,
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  min-height: 3rem;
  padding: calc(0.875rem-1px) calc(1.5rem-1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
}

.button-g:hover,
.button-g:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.65);
}

.button-g:hover {
  transform: translateY(-1px);
}

.button-g:active {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}

.button-wide {
  width: 250px;
}

.button-basic {
  width: 160px;
}

.button-standard {
  width: 120px;
}

.button-narrow {
  width: 80px;
}

.button-small {
  min-height: 2rem;
}

/* gray buttons */
.button-1 {
  color: #fff !important;
  background-color: #898985;
}

.button-1:active {
  color: #fff !important;
  background-color: #afafaa;
}

/* red buttons */
.button-2 {
  color: #fff !important;
  background-color: #8a2540;
}

.button-2:active {
  color: #fff !important;
  background-color: #8a2540;
}

/* blue buttons */
.button-7 {
  color: #fff !important;
  background-color: #373866;
}

.button-7:active {
  color: #fff !important;
  background-color: #373866;
}