html {
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1vh;
}

body {
  background-color: #f7f5f5;
  margin: 0;
  padding: 0;
}

div {
  box-sizing: border-box;
}

#message {
  text-align: center;
  font-size: 1.6em;
  color: #000;
}

#box {
  height: 100vh;
  width: 100vw;
  margin: auto;
  display: flex;
  flex-direction: column;
}

#top {
  width: 90%;
  max-width: 63vh;
  padding: 4vh 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vh;
  margin: 0 auto;
}
#top .title {
  width: 100%;
}
#top .title img {
  width: 100%;
}
#top .shoe {
  width: 76%;
  margin-top: 4.5vh;
}
#top .shoe img {
  width: 100%;
}

._main {
  margin-top: 6vh;
  flex-direction: column;
}

.stage {
  position: absolute;
  visibility: hidden;
  display: flex;
  opacity: 0;
}
.stage.active {
  position: relative;
  visibility: visible;
  opacity: 1;
}

button {
  background-color: #000;
  width: 36vw;
  max-width: 25vh;
  border-radius: 3em;
  padding: 1.6em 3em;
  border: none;
  margin: auto;
  transition: opacity 0.6s;
}
button img {
  height: 1.5vh;
}
button:disabled {
  opacity: 0.5;
}

#terms {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding: 4vh;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: 0;
  opacity: 0;
  z-index: -1;
  top: 0;
  left: 0;
}
#terms .wrapper {
  background-color: #f7f5f5;
  width: 90%;
  height: 70vh;
  padding: 2vh;
  overflow: auto;
  display: flex;
  gap: 1vh;
  flex-direction: column;
}
#terms .wrapper ._top {
  display: flex;
  justify-content: flex-end;
}
#terms #close_terms {
  font-size: 2.4rem;
  color: #000;
}

body.show_terms #terms {
  visibility: 1;
  opacity: 1;
  z-index: 100;
}

._info {
  height: 6vh;
  max-height: 10vw;
  margin: auto;
  margin-top: 6vh;
}
._info img {
  height: 100%;
  margin: auto;
}

#email {
  max-width: 51vh;
  margin: auto;
  width: 80vw;
  font-size: 3.6em;
  padding: 0.46em 0.5em;
  border-radius: 0.51em;
  border: solid 2px #000;
  margin-bottom: 3.8vh;
}

#legal {
  text-align: center;
  font-size: 1.6rem;
  color: #000;
  margin: 1.5em auto;
}

#result {
  width: 70vw;
  max-width: 40vh;
  margin: auto;
}

#footer {
  background-color: #000;
  width: 100%;
  padding: 5vh;
  text-align: center;
  margin-top: auto;
}
#footer img {
  width: 80vw;
  max-width: 63vh;
}/*# sourceMappingURL=lockers.css.map */