/* abstracts */
/* header */
/* navigation */
/* login */
/* font */
/* border-radius */
/* media queries */
/* EXTENDS */
/* MIXINS */
/* base */
/* layout */
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.form-header,
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.form-header .spinner-wrapper,
.form-wrapper .spinner-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* components */
.text-link {
  text-decoration: underline;
}

.loader {
  border: 6px solid transparent;
  border-top: 6px solid black;
  border-right: 6px solid black;
  border-bottom: 6px solid black;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -webkit-animation: load2 2s infinite ease 1.5s;
  animation: load2 2s infinite ease 1.5s;
}

@-webkit-keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* pages */
.main {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.container {
  padding-left: 5%;
  padding-right: 5%;
}

.badges-wrapper,
.qr-code-container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.badges-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-top: 48px;
  margin-bottom: 48px;
}
.badges-wrapper .download-link img {
  width: auto;
  height: 48px;
  max-width: none;
}

.qr-code-wrapper img {
  margin: 0 auto;
  width: 100%;
  max-width: 160px;
  height: auto;
  padding: 16px;
  background: #FFFFFF;
  border-radius: 4px;
}

@media screen and (max-width: 766px) {
  .qr-code-container {
    display: none;
  }
}
@media screen and (min-width: 767px) {
  .qr-code-container {
    display: block;
  }
}
@media screen and (max-width: 374px) {
  .badges-wrapper .download-link img {
    height: 40px;
  }
}
/* themes */
/* vendors */

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