/* General */

* {
  font-family: 'Raleway', sans-serif;
  padding: 0;
  margin: 0;
  position: relative;
  color: #371e16;
  box-sizing:border-box;
}

body {
}


.page-container {
  padding: 20px;
  text-align: center;
}

.page-title {
  font-size: 3em;
}

.instructions {
  padding:12px;
}

.form {

}

.btn {
  border: none;
  margin: auto;
  background-color: #371e16;
  color: white;
  padding: 12px;
  width: 250px;
  border-radius: 4px;
  font-size: 20px;
  display: inline-block;
}

.input {
  display: block;
  margin: auto;
  margin-top:30px;
}

.text-input {
  border-radius: 4px;
  border: 1px solid lightgrey;
  text-align: center;
  margin-bottom: 30px;
  padding: 12px;
  width: 250px;
  font-size: 20px;
}

.thumbnail {
  display:block;
  margin: auto;
  height: 200px;
  margin-top:20px;
  margin-bottom:20px;
}

.error-message {
  color: tomato;
  margin-top: 20px;
  margin-bottom:10px;
  opacity: 0;
}

#content-wrapper {
  min-height: 85vh;
  padding-top: 60px;
  padding-bottom: 60px;
}

#content-header {
  font-size: 15px;
  position: absolute;
  top:12px;
  left:12px;
}

/* Hero */

header {
  text-align: center;
  padding:20px;
  height: 94vh;
  background-image: url('../img/cyprus-bkg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-content-wrapper {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hero-title, .hero-pretitle, .hero-subtitle {
  color: white;
}

.hero-title {
  font-size: 5em;
  font-weight: 600;
}

#get-started {
  color: white;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom:20px;
  text-decoration: none;
}

/* Footer */

footer {
  min-height: 200px;
  background-color: #e6e7d9;
}

/* Spinner Modal */
#modal-mask {
  position: absolute;
  width: 100%;
  background: rgba(0,0,0,0.5);
  left: 0;
  top: 0;
  height: 100%;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.spin {
  animation: spin 3s infinite;
  animation-timing-function: linear;
  transform-origin: center;
}

#spinner-container {
  position: fixed;
  left: 50%;
  top: 50%;
  /*transform: translate(-50%, -50%);*/
  margin-top: -75px;
  margin-left: -50px;
  width: 100px;
  height: 150px;
  text-align: center;
}

#spinner {
  width: 75px;
}

#spinner-label {
  color: white;
  text-alight:center;
  margin-top:10px;
}

/* Auth */


/* Submit */

.hidden-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.file-input {
  display: block;
  margin-bottom: 20px;
}

/* Results */

.results-item-text b {
  text-transform: capitalize;
}

.results-item + .results-item {
  margin-top: 12px;
}

#results-list {
  list-style: none;
  margin-bottom:40px;
}
