html {
  font-size: 18px;
}

body {
  font: 1em/1.5 "Roboto", Helvetica Neue, sans-serif;
  margin: 0 10vw 0;
  padding-bottom: 50px;
  color: #4FBEAE;
}

a {
  color: #B52FD6;
  text-decoration: none;
}

ul {
  padding: 0;
  list-style: none;
}

input[type=text], input[type=number] {
  box-sizing: border-box;
  -webkit-appearance: none;
  padding: 0.8em 1em;
  font-size: 1.39rem;
  color: #4FBEAE;
  border: 1px solid #d1eeea;
  text-align: center;
  font-family: "Roboto", Helvetica Neue, sans-serif;
  background-color: transparent;
}
input[type=text]::placeholder, input[type=number]::placeholder {
  color: #d1eeea;
  font-size: 1.39rem;
  overflow: visible;
}

button {
  color: #B52FD6;
  font-weight: bold;
  appearance: none;
  border: none;
  background: none;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 1em;
}

h1 {
  margin: 0.3em 0;
  font-size: 4em;
}

input.site-title {
  max-width: 100%;
  margin-top: -3.1rem;
  padding: 0;
  font-size: 11.11rem;
  font-weight: bold;
  color: #eac4f3;
  line-height: 1;
  text-align: center;
  border: none;
}

.hidden {
  display: none;
}

.card-list {
  display: none;
}

.pile {
  margin-bottom: 1em;
}

#notices {
  position: absolute;
  top: 0;
  margin-top: 2em;
  font-size: 0.8em;
  color: red;
  display: none;
}

#highlight {
  position: relative;
  z-index: 5;
  min-height: 180px;
  margin-top: 2em;
  text-align: center;
}
#highlight .player-name input {
  border-color: #eac4f3;
  color: #B52FD6;
}
#highlight .player-name input::placeholder {
  color: #eac4f3;
}
#highlight .player-name .submit {
  display: none;
}

.joined-players {
  font-weight: 300;
}
.joined-players .join-team {
  font-size: 0.83em;
  font-weight: bold;
}

#hand .current {
  display: none;
}
.player-hand-true #hand .current {
  display: inline-block;
}
#hand .current .label {
  font-size: 0.83em;
  font-style: italic;
  text-align: left;
}
#hand .current ul {
  margin: 0;
  padding: 0.8em 2em;
  background: #4FBEAE;
  color: white;
  font-size: 1.39em;
  font-weight: bold;
}
#hand .controls {
  margin-top: 2.5em;
}

#table {
  display: flex;
  justify-content: center;
}
#table .team-group {
  flex: 1;
  max-width: 10vw;
}
#table .team-group .team-a, #table .team-group .score-a {
  text-align: right;
}
#table .team-group .score .label {
  display: none;
}
#table .team-group .score strong {
  font-size: 1.39em;
}
#table .team-list {
  min-height: 200px;
  font-weight: 300;
}

#bowl .bowl.render {
  position: relative;
  width: 30vw;
  height: 30vw;
  margin-top: -15vw;
  margin-left: 5vw;
  margin-right: 5vw;
  border-radius: 0 0 15vw 15vw;
  border: 0.3vw solid #d1eeea;
  border-width: 0 0 0.78vw 0;
  overflow: hidden;
  transform: translateZ(0);
  font-size: 90px;
}
#bowl .bowl.render .mask {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  overflow: hidden;
}
#bowl .bowl.render .fill {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-image: linear-gradient(0deg, #d1eeea 2px, transparent 2px);
  background-size: 100% 4px;
  background-repeat: repeat;
  transition: height 0.5s;
}
#bowl ul {
  text-align: center;
}

#lap {
  text-align: center;
}
#lap form.make-card {
  margin-top: 1em;
}
#lap form.make-card .submit {
  display: none;
}
#lap #timer {
  position: fixed;
  left: 20px;
  bottom: 10px;
}
#lap #timer input[type=number] {
  width: 2em;
  padding: 0;
  border: none;
  font-size: 1.94em;
  font-weight: bold;
  text-align: left;
}
#lap #timer .label {
  display: inline;
  font-size: 0.83em;
  font-weight: 300;
}
#lap #timer .controls {
  text-align: left;
}
#lap #timer button {
  padding: 0;
}

#trash {
  display: none;
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
  width: 100vw;
  height: 100vh;
  background: orange;
  opacity: 0;
}

#landing {
  display: none;
}
.mfp-content #landing {
  display: block;
}

.mfp-container .mfp-content {
  max-width: 40%;
  margin: 0 auto;
}

.mfp-bg {
  background: white;
  opacity: 0.9;
}

#loading-error {
  display: none;
}

/* @group bp large */
@media screen and (max-width: 900px) {
  input.site-title {
    margin-top: -0.2em;
    font-size: 20vw;
  }

  input {
    max-width: 100%;
  }
}
/* @end bp large */
/* @group bp small */
@media screen and (max-width: 550px) {
  body {
    margin-left: 5vw;
    margin-right: 5vw;
  }

  input.site-title {
    margin-top: -0.2em;
    font-size: 18vw;
  }

  #table .team-group {
    max-width: none;
  }

  #lap #timer {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 1em;
    text-align: left;
  }

  .mfp-container .mfp-content {
    max-width: 80%;
  }
}
/* @end bp small */

/*# sourceMappingURL=styles.css.map */
