/* IDs
================================================== */
*,
*:after,
*:before {
  box-sizing: border-box;
}

/* Colors
================================================== */
/* Nav
================================================== */
.container {
  position: absolute;
  bottom: 7vh;
  left: 7vw;
}

form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

label {
  display: flex;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.5em;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.735);
}
label input {
  position: absolute;
  left: -9999px;
}
label input:checked + span {
  background-color: rgba(6, 96, 91, 0.8235294118);
  color: #ffffff;
}
label input:checked + span:before {
  box-shadow: inset 0 0 0 0.4em rgb(4, 255, 226);
  background-color: rgba(4, 255, 226, 0.2);
}
label span {
  display: flex;
  align-items: center;
  padding: 0.375em 0.75em 0.375em 0.375em;
  border-radius: 99em;
  transition: 0.25s ease;
  background-color: rgba(4, 255, 226, 0.2);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
}
label span:hover {
  background-color: #ffffff;
}
label span:before {
  display: flex;
  flex-shrink: 0;
  content: "";
  background-color: rgba(4, 255, 226, 0.4);
  width: 1.25em;
  height: 1.25em;
  border-radius: 50%;
  margin-right: 0.375em;
  transition: 0.25s ease;
}

.prerace input:checked + span {
  background-color: rgba(255, 255, 255, 0.1254901961);
  color: #ffffff;
}
.prerace input:checked + span:before {
  box-shadow: inset 0 0 0 0.4em #ffffff;
  background-color: rgba(73, 93, 92, 0.8235294118);
}
.prerace span {
  background-color: rgba(255, 255, 255, 0.2509803922);
}
.prerace span:hover {
  background-color: #ffffff;
}
.prerace span:before {
  background-color: rgba(73, 93, 92, 0.8235294118);
}

/* Misc
================================================== */
body {
  margin: 0;
  background-color: black;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: #ffffff;
}

strong {
  font-weight: 400;
}

#fullscreen {
  height: 100vh;
  width: 100vw;
}

#map {
  height: 100vh;
  width: 100vw;
  z-index: -20;
  position: absolute;
}

#text {
  background-color: rgba(73, 93, 92, 0.8235294118);
  border-radius: 5px;
  padding: 30px;
  margin-left: 10vh;
  position: absolute;
  height: 55vh;
  width: 275px;
  z-index: 100;
  bottom: 7vh;
  overflow-y: scroll;
  /*backdrop-filter: blur(7px);*/
  font-size: 0.9em;
  font-weight: 100;
}

#logo {
  position: absolute;
  top: 7vh;
  left: 7vw;
  width: 10vw;
}/*# sourceMappingURL=style.css.map */