* {
  font-family: 'Quicksand', sans-serif;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

html {
  font-size: 15px;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html, body {
  height: 100%;
  margin: 0;
}

.main-container {
  overflow-y: scroll;
  height: 100vh;
  scrollbar-width: none;
}

.main-container::-webkit-scrollbar {
  display: none;
}

.bold {
  font-weight: bold;
}

.no-style-submit {
  border: none;
}

.bg-main-highlight {
  background-color: #eee;
}

.tiny-button {
  border: none;
  font-size: 0.5em;
  background: none;
  text-decoration: underline;
}

.download-link {
  text-decoration: none;
  color: black;
}

.title-header {
  top: 0;
  position: -webkit-sticky;
  position: sticky;
  padding-left: 20px;
  padding-right: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  z-index: 10000;
}

.title-header-container {
  display: flex;
  justify-content: space-between;
}

.title-header-link {
  text-decoration: none;
  color: black;
  border: none;
}

.title-header-link:hover {
  color: #aaa;
}

.decision-button {
  width: 1.5em;
  height: 1.5em;
}

.scroll-child {
  scroll-snap-align: start;
}

.wrapper {
  min-height: 100%;
  margin-bottom: -50px;
}

nav {
  height: 100px;
  background-color: #1E1E1E;
  color: white;
  position: relative;
}

.small-div {
  display: inline-block;
  min-width: 220px;
}

.small-div select {
  min-width: 220px;
}

.sign-out {
  display: inline-block;
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
}

.sign-out-btn {
  color: white;
}

.sign-out-btn:hover {
  color: #aaa;
}

.flag {
  font-size: .5em;
}

#culture-options {
  font-size: 12px;
  display: inline-block;
  width: 70px;
  background-color: #1E1E1E;
  color: white;
  border: none;
}

#culture-switcher {
  display: inline-block;
}

.culture-container {
  display: inline;
  width: 20px;
}

.landing-page {
  font-size: 20px;
}

.logo {
  height: 95px;
  width: 95px;
}

.logo-text {
  display: none;
}

footer {
  position: relative;
  height: 50px;
  background-color: #121212;
}

.footer-img {
  height: 30px;
  width: 150px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.push {
  height: 50px;
}

.main-btn {
  background-color: #ED7D31;
  margin-top: 10px;
  width: 150px;
  padding: 3px;
}

.green-btn {
  background-color: #1ab353;
  margin-top: 10px;
  width: 150px;
  color: white;
}

.secondary-btn {
  background-color: #54433a;
  margin-top: 10px;
  width: 150px;
}

.sign-in-btn {
  background-color: #ED7D31;
  margin-top: 100px;
}

.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.title {
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 15px;
}

.info-key, .info-value {
  display: inline-block;
  width: 220px;
}

.lg-info-value {
  display: inline-block;
  min-width: 220px;
}

.explanation-value {
  resize: none;
  width: 90%;
}

input[type='checkbox'], input[type='radio'] {
  accent-color: red;
}

.submit-btns {
  margin-top: 20px;
  margin-bottom: 40px;
}

#map {
  height: 400px;
  width: 90%;
}

td {
  width: 25%;
}

.coverAll {
  z-index: 1000;
  background-color: #CCC;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 70%;
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #ED7D31; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  margin: 200px auto auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.clear-border {
  border:0;
  outline:0;
}

.clear-border:focus {
  outline:none!important;
}

@media (min-width: 768px) {
  .logo-text {
    display: inline-block;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
  }

  .sign-in-btn {
    margin-top: 150px;
  }

  .explanation-value {
    resize: none;
    width: 700px;
  }

  .explanation-text {
    width: 700px;
  }

  #map {
    width: 80%;
  }

  .lg-info-value {
    min-width: 440px;
  }

  .footer-img {
    height: 49px;
    width: 246px;
  }
}