/*
/* index.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;
  margin-left: 10px;
  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(.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-standard {
  width: 120px;
}

.button-narrow {
  width: 80px;
}

/* red buttons */
.button-10 {
  color: #373866 !important;
  background-color: #f0f0f1;
}

.button-10:active {
  color: #373866 !important;
  background-color: #f0f0f1;
}

/* red buttons */
.button-9 {
  color: #fff !important;
  background-color: #e40014;
}

.button-9:active {
  color: #fff !important;
  background-color: #e40014;
}

/* red buttons */
.button-8 {
  color: #000 !important;
  background-color: #ffb2b2;
}

.button-8:active {
  color: #000 !important;
  background-color: #ffa5a5;
}

/* red buttons */
.button-7 {
  color: #fff !important;
  background-color: #373866;
}

.button-7:active {
  color: #fff !important;
  background-color: #373866;
}

/* general buttons */
.button-6 {
  color: #000 !important;
  background-color: #ffffff;
}

.button-6:active {
  color: #000 !important;
  background-color: #f0f0f1;
}

/* general buttons */
.button-5 {
  color: #000 !important;
  background-color: #ffcc99;
}

.button-5:active {
  color: #000 !important;
  background-color: #ffb770;
}

/* general buttons */
.button-4 {
  color: #000 !important;
  background-color: #cce6ff;
}

.button-4:active {
  color: #000 !important;
  background-color: #b3d9ff;
}

/* general buttons */
.button-3 {
  color: #000 !important;
  background-color: #898985;
  /*background-color: #ffffb3;*/
}

.button-3:active {
  color: #000 !important;
  background-color: #898985;
  /*background-color: #ffff99;*/
}

/* general buttons */
.button-2 {
  color: #000 !important;
  background-color: #afe1af;
}

.button-2:active {
  color: #000 !important;
  background-color: #9fe2bf;
}

/* gray buttons */
.button-1 {
  color: #fff !important;
  background-color: #898985;
}

.button-1:active {
  color: #fff !important;
  background-color: #afafaa;
}
