@font-face {
  font-family: "sfpro";
  src: url("assets/sfpro-regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body, html {
  margin: 0;
  padding: 0;
  font-family: "sfpro", sans-serif;
  max-width: 500px;
  background: black;
}

.screen {
  position: relative;
  min-height: 100vh;
}

.card {
  transform: rotate(90deg) scale(0.5);
  position: relative;
  background-image: url("assets/card-blue.png");
  background-size: 100% 100%;
  height: 720px;
  width: 1055px;
  margin-top: -10%;
}

.information {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.information > div {
  position: absolute;
  color: black;
}
.information .card-number {
  top: 49.5%;
  left: 3%;
  font-size: 53px;
}
.information .last-name {
  top: 60%;
  left: 3%;
  font-size: 45px;
}
.information .first-names {
  top: 67%;
  left: 3%;
  font-size: 45px;
}
.information .person-number {
  top: 77%;
  left: 3%;
  font-size: 37px;
}
.information .student-id-wrap {
  right: 3%;
  top: 3%;
  font-size: 24px;
}
.information .university {
  right: 3%;
  top: 7.5%;
  font-size: 24px;
}
.information .term {
  right: 3%;
  top: 12.5%;
  font-size: 24px;
}
.information .valid-discounts-text {
  left: 75.8%;
  top: 37.5%;
  font-size: 19px;
}
.information .valid-discounts {
  left: 75.8%;
  top: 41%;
  font-size: 41.5px;
}
.information .valid-book-wrap {
  bottom: 1%;
  left: 75.5%;
  color: white;
  font-size: 23px;
}

/* Start Screen */
#start-screen .header,
#start-screen .bottom-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 0;
  left: 0;
}

#start-screen {
  background-color: #edf1f2;
}
#start-screen #feed {
  width: 100%;
  margin-top: 15%;
}
#start-screen .bottom-nav {
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 0px 15px;
  background-image: url(assets/start-nav.png?v=2);
  bottom: 0;
  background-size: 100% auto;
  height: 0;
  padding-top: 22%;
  background-repeat: no-repeat;
  background-color: white;
}
#start-screen .bottom-nav .nav-center {
  top: 0;
  position: absolute;
  width: 20%;
  height: 100%;
}

#start-screen .header {
  top: 0;
  background-image: url("assets/start-header.png");
  background-color: #3999be;
  background-size: 100% auto;
  height: 0;
  padding-top: 14%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#start-screen .header #nav-user {
  width: 13%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.bottom-circle {
  background-image: url("assets/close.png");
  background-size: 100% auto;
  width: 13vw;
  height: 13vw;
  position: absolute;
  bottom: 5%;
}

/* Card Screen */
#card-screen {
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@keyframes pulsing {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}
.circle-area {
  position: absolute;
  width: 47vw;
  height: 47vw;
  bottom: 16%;
  right: 4.5%;
}

.circle-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: url("assets/circle.png");
  background-size: 100% 100%;
  animation: pulsing 1.8s infinite;
}

/* List Screen */
#list-screen {
  background: #FFFDFF;
  transition: none;
  transform: translateY(100%);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
#list-screen.active {
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}
#list-screen .header {
  background-color: #1299BF;
  color: #E5FFFF;
  font-size: 18px;
  position: fixed;
  top: 0;
  height: 50px;
  right: 0;
  left: 0;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
#list-screen .header img {
  height: 35%;
  position: absolute;
  top: 30%;
  right: 4%;
}
#list-screen .box {
  background: white;
  box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.15);
  border-radius: 7px;
  margin: 3% 3% 5%;
  padding: 0 4%;
  position: relative;
}
#list-screen .box.box-student {
  margin-top: 55px;
}
#list-screen .box .student-heading {
  font-weight: bold;
  font-size: 19px;
  padding-top: 17px;
}
#list-screen .box .last-name {
  font-size: 19px;
  margin-top: 5%;
}
#list-screen .box .first-names {
  font-size: 19px;
  margin-top: 1%;
}
#list-screen .box p {
  padding-top: 15px;
  font-size: 13px;
  padding-bottom: 20px;
}
#list-screen .box .person-number {
  font-size: 14px;
  margin-top: 5%;
}
#list-screen .box .verified {
  position: absolute;
  top: 7%;
  right: 5%;
  width: 30%;
}
#list-screen .box .verified .valid-discounts-text {
  font-size: 9.5px;
}
#list-screen .box .verified .valid-discounts {
  font-size: 19.5px;
  margin-bottom: 10px;
}
#list-screen .box .verified img {
  width: 100%;
}
#list-screen .box-discounts {
  padding-top: 20px;
  font-size: 15px;
}
#list-screen .box-discounts > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 20px;
}
#list-screen .box-discounts > div div {
  display: inline-block;
}
#list-screen .box-discounts > div img {
  width: 13%;
  margin-right: 18px;
}
#list-screen .box-info {
  padding: 0;
}
#list-screen .box-info > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #EBE9EB;
  padding: 1% 4%;
  font-size: 13px;
}
#list-screen .box-info > div .title {
  width: 30%;
  font-weight: bold;
  font-size: 10px;
}

/* Spinner Screen */
#spinner-screen .header, #form-screen .header {
  position: sticky;
  top: 0;
  background-color: #1299BF;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
}
#spinner-screen .header img, #form-screen .header img {
  height: 70%;
  padding-left: 2%;
}

#spinner-screen {
  background-color: white;
  height: 100%;
}

.loader-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.hidden {
  display: none !important;
}

#form-screen {
  background: white;
}

#user-form {
  padding: 5%;
  width: 80%;
  margin-bottom: 50px;
}

#form-screen label {
  display: block;
  margin-top: 10px;
}

#form-screen input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

#form-screen button#refreshCache {
  display: block;
  padding: 15px 20px;
  font-weight: bold;
  border-radius: 0;
  border: 1px solid #10A5C5;
  background: none;
  margin: 0 auto;
  color: #10A5C5;
  cursor: pointer;
  width: 100%;
}

#form-screen button#save {
  display: block;
  padding: 20px 30px;
  font-weight: bold;
  font-size: 18px;
  border-radius: 0;
  background-color: #1f9729;
  color: white;
  border: none;
  cursor: pointer;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}

#form-screen button:hover {
  background-color: #10A5C5;
}

.required {
  color: #10A5C5;
  font-weight: bold;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  transform: scale(0.5);
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #10A5C5;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #10A5C5 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=styles.css.map */