* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #ddd;
  font-family: Arial, sans-serif;
  height: 100vh;
  text-align: center;
}

h3 {
  margin: 0;
}

a {
  font-weight: bold;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

p {
  line-height: 24px;
}

label {
  font-size: 12px;
}

input {
  padding: 12px;
  border-radius: 5px;
  border-width: 1px;
  margin-top: 20px;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

input:focus {
  border: 1px solid #006aff;
}

.button {
  display: block;
  margin: 0 0 10px;
  padding: 15px 0;
  border-radius: 10px;
  color: #fff;
  background-color: rgba(255,255,255,0.5);
  border: 4px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  box-shadow: 1px;
  text-align: center;
  }
  .button:active {
    background-color: rgb(0, 85, 204);
  }
  .button:disabled {
    background-color: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.3);
}


.cash.button {
  color: #000;
  background-color: #f8d106;
  }
  .cashapp.button .currency {
    max-width: 30%;
}
.cashapp.button {
  color: #fff;
  background-color: #00D54B;
  }
  .cashapp.button .currency {
    max-width: 30%;
}
.venmo.button {
  color: #fff;
  background-color: #3d95ce;
  }
  .venmo.button .currency {
    max-width: 30%;
}
.zelle.button {
  color: #fff;
  background-color: #6c1cd3;
  }
  .zelle.button .currency {
    max-width: 25%;
}

img.currency {
  max-height: 50px;
  max-width: 50px;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  vertical-align: middle;
}

/* SVG Overrides */
.st0 {
  fill: currentColor;
}
.st1 {
fill: #00D54B;
}

/* Seating */

.transport {
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  padding: 25px;
  align-items: flex-start
  }
  .transport .seating {
    display: flex;
    flex-direction: column;
    }
    .transport .seating .row {
      display: flex;
    }

    .transport .seating .row .seat {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 42px;
      width: 42px;
      margin: 4px;
      box-sizing: border-box;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      user-select: none;
      transition: opacity .1s ease-in-out;
      }
      .transport .seating .row .seat.available {
        }
        .transport .seating .row .seat.available:hover {
          cursor: pointer;
          opacity: .7
    }
    .transport .seating .row .seat.selected {
      cursor: pointer;
      opacity: .7
    }
    .transport .seating .row .seat.reserved {
      color: #fff;
      background-color: #d2d2d2;
      cursor: not-allowed
    }
    .transport .seating .row .seat.disabled {
      color: transparent;
      background-color: transparent
}