@charset "UTF-8";
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

html {
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, p {
  padding: 0;
  margin: 0;
}

h1 {
  margin: 1rem 2rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  width: 100%;
}

h3 {
  margin-bottom: 10px;
}

p {
  font-size: 0.8rem;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  position: relative;
  background-color: #f1f1f1;
  background-image: url("../images/logo-background.svg");
}

body {
  background: white;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.app {
  width: 800px;
  display: flex;
  flex-flow: row wrap;
  position: relative;
  background: white;
  align-content: flex-start;
}

#view {
  z-index: 1;
  display: flex;
  flex: 1;
  width: 100vw;
  height: 100%;
  max-width: 800px;
  justify-content: center;
  align-items: flex-start;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.viewbox {
  display: flex;
  flex-flow: row wrap;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.5s;
  position: absolute;
  left: 0;
}

.spacer {
  width: 100%;
  height: 5px;
  border-radius: 30px;
  margin-bottom: 10px;
  background-color: #0FFC99;
}

#copyright {
  font-size: 0.75rem;
  padding-top: 20px;
}
#copyright::before {
  content: "Copyright © ";
}
#copyright::after {
  content: " | universityriders.com";
}

.header {
  padding-top: 3rem;
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  width: 100%;
  align-self: "flex-start";
}

.section {
  margin: 0.5rem 2rem;
  padding: 2px;
  width: 100%;
  align-self: flex-start;
}

.progress-btn-container {
  position: absolute;
  bottom: 100px;
  display: flex;
  z-index: 1;
}
.progress-btn-container .btn {
  width: 45%;
  margin: 0 20px;
}

.btn {
  background: #0FFC99;
  font-weight: 700;
  text-transform: uppercase;
  bottom: 100px;
  padding: 0.2rem 2rem;
  border-radius: 10px;
}
.btn.innactive {
  background: #cacaca;
  opacity: 0.2;
  pointer-events: none;
}

.watermark {
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 80px;
  justify-content: center;
  align-items: center;
  z-index: 0;
  opacity: 0.03;
}
.watermark img {
  width: 80%;
}

.instructions {
  min-width: 100%;
  font-size: 0.75rem;
  padding: 0 2rem;
  text-align: center;
  box-sizing: border-box;
  font-style: italic;
  margin: 0;
  padding-bottom: 1rem;
}

.input-item .input-label {
  text-transform: uppercase;
  font-weight: 700;
  color: #000000;
  font-size: 1.25rem;
}
.input-item .input-text {
  padding: 0.25rem;
  box-sizing: border-box;
  background: #edeff0;
  color: #555555;
  border-radius: 5px;
  outline: none;
  border: none;
  font-size: 1rem;
  margin-top: 0.25rem;
  border: 1px solid #edeff0;
}
.input-item .input-text:focus {
  border-color: #cd04ff;
}

.progress-icons {
  display: flex;
  flex-flow: row nowrap;
}

.progress-step {
  width: 100%;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  opacity: 0.2;
}
.progress-step .icon {
  width: 50px;
  height: 50px;
  border: 2px solid #000000;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: #000000;
}
.progress-step .label {
  font-size: 0.7rem;
}
.progress-step.active {
  opacity: 1;
  pointer-events: none;
}
.progress-step.complete {
  opacity: 1;
}
.progress-step.complete .icon {
  border-color: #0FFC99;
  background: #0FFC99;
  color: #000000;
}

.footer {
  width: 800px;
  box-sizing: border-box;
  display: flex;
  align-self: flex-end;
  align-items: center;
  flex-flow: column wrap;
  padding: 0 10%;
  padding-bottom: 20px;
  color: #555555;
  position: sticky;
  bottom: 0;
  background-color: white;
}

.slide-off {
  transform: translateX(100%);
}

.btn-disable {
  border: 1px solid #555555 !important;
  background-color: white !important;
  color: #555555 !important;
  opacity: 0.5;
  pointer-events: none;
}

@media only screen and (min-width: 600px) {
  body {
    width: 800px;
  }
  .watermark {
    display: none;
  }
  h1 {
    font-size: 1.5rem;
    text-align: left;
  }
  .image-logo {
    width: 250px;
  }
}
@media only screen and (max-width: 600px) {
  html {
    background-image: none;
    background-color: white;
  }
  body {
    width: 100%;
  }
  .header {
    display: none;
  }
  h1 {
    font-size: 2rem;
    text-align: center;
  }
  .image-logo {
    width: 30%;
  }
  .app {
    width: 200%;
  }
}/*# sourceMappingURL=main.css.map */