/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  3. Allow percentage-based heights in the application
*/
html, body {
  height: 100%;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  6. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}

/*
  8. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/* Source https://loading.io/css/ */
.lds-dual-ring {
  display: inline-block;
  width: 140px;
  height: 140px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 128px;
  height: 128px;
  margin: 8px;
  border-radius: 50%;
  border: 12px solid #ff9100;
  border-color: #ff9100 transparent #ff9100 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
h1 {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
}

h2 {
  font-weight: bold;
  text-align: center;
}

p {
  padding: 0 12px;
}

div.thumbs {
  margin-top: 14px;
}
div.thumbs div {
  align-items: center;
  display: flex;
  justify-content: center;
}
div.thumbs :first-child {
  margin-bottom: 16px;
}
div.thumbs img {
  max-width: 80%;
}

div.loaderBox {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 136px;
}

div.page {
  left: 0;
  margin-top: 8px;
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 500px;
}

div#loadPage {
  backdrop-filter: blur(10px);
  background: rgba(200, 200, 200, 0.9);
  height: 100%;
  margin-top: 0px;
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
}

.hidden {
  display: none;
}

div.linkBox {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.reviewButton {
  box-shadow: inset 0px 1px 0px 0px #cf866c;
  background: linear-gradient(to bottom, #ff9100 5%, #c47002 100%);
  background-color: #ff9100;
  border-radius: 3px;
  border: 1px solid #942911;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: Arial;
  font-size: 13px;
  padding: 6px 24px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #854629;
}

form input {
  width: 100%;
}
form label {
  display: block;
}
form p {
  margin-bottom: 6px;
}
form textarea {
  height: 10em;
  width: 100%;
}

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