@font-face {
  font-family: 'OpenSansReg';
  font-style: normal;
  font-display: swap;
  src: url(../fonts/OpenSans-Regular.ttf) format('truetype');
}
@font-face {
  font-family: 'OpenSansBold';
  font-style: normal;
  font-display: swap;
  src: url(../fonts/OpenSans-SemiBold.ttf) format('truetype');
}
body,
body * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'OpenSansReg', sans-serif;
}
body {
  overflow-x: hidden;
}
a-scene {
  display: none !important;
}
#splash-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9997;
  transition: all 1s ease;
  transition-delay: 1s;
  background: url(../img/splash-bg.png) no-repeat center bottom / cover;
}
#splash-screen .hero {
  position: relative;
  width: 100%;
  height: auto;
}


#quizList {
  display: none !important;
}

#quizHeading {
  display: none !important;
}

#updatedStatus {
  color: #fff;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
}


#loading-block-error {
  display: none;
}

.error-content-location {
  font-size: 16px;
  text-align: left;
  margin: 20px;
}

.error-content-location ol {
  margin: 30px;
}

.error-content-location img {
  width: 250px;
  display: block;
  margin: auto;
  margin-bottom: 40px;
}

.cookie-banner {
  position: fixed;
  z-index: 10000;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 30px;
  background: #394959;
  -webkit-box-shadow: 0 0 5px #394959;
  box-shadow: 0 0 5px #394959;
  color: #fff;
  text-align: center;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  display: none;
}

.cookie-banner, .cookie-banner .content {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cookie-banner .content .text .cookie-title {
  font-size: 11px;
  font-weight: 100;
  line-height: 16.5px;
  font-weight: 800;
  letter-spacing: .18em;
}

.cookie-banner .content .text .cookie-text {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 100;
  line-height: 22.5px;
  margin-bottom: 15px;
}

.cookie-banner .content .buttons, .cookie-banner .content .buttons .cookie-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cookie-banner .content .buttons .cookie-button.blue {
  border: 1px solid #fff;
  margin-right: 10px;
  background-color: #394959;
  color: #fff;
}

.cookie-banner .content .buttons .cookie-button {
  font-size: 11px;
  font-weight: 100;
  line-height: 16.5px;
  min-width: 117px;
  height: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 10px;
  border-radius: 3px;
  font-weight: 800;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.cookie-banner .content .buttons .cookie-button.grey {
  border: 1px solid #e5e5e5;
  background-color: #e5e5e5;
  color: #000;
  cursor: pointer;
}

/* .btnNewInstagram {display: none !important;} */

@media (min-width: 1280px) {
  .cookie-banner {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      padding: 9px 20px;
  }
  .cookie-banner .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .cookie-banner .content .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cookie-banner .content .text .cookie-title {
  margin-right: 38px;
}

.cookie-banner .content .text .cookie-text {
  margin-bottom: 0;
}

.cookie-banner .content .buttons {
  margin-left: 35px;
}


}

@media screen and (min-width: 420px) {
  #splash-screen .hero {
    max-width: 25%;
    margin: 0 auto;
    display: block;
  }
}
#splash-screen .launch-btn {
  background: #394959;
  text-align: center;
  width: 160px;
  height: 160px;
  margin-left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 6px solid #fff;
  padding: 40px 0;
  font-size: 3.5vh;
  color: white;
  margin-top: -80px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
#splash-screen.faded {
  opacity: 0;
  pointer-events: none;
}
#splash-screen.faded .message,
#splash-screen.faded .launch-btn,
#splash-screen.faded .desktop-launch-btn,
#splash-screen.faded .links,
#splash-screen.faded .logo-brand,
#splash-screen.faded .logo {
  opacity: 0;
  pointer-events: none;
}
#splash-screen .logo {
  position: relative;
  display: block;
  width: 100%;
  height: 20%;
  margin: 0 auto;
  background: url(../img/logo-brand.svg) no-repeat center center / contain;
  transition: all 0.3s ease;
}
#splash-screen .logo-brand {
  position: relative;
  display: block;
  width: 80%;
  height: 20%;
  margin: 0 auto;
  background: url(../img/logo.png) no-repeat center center / contain;
  transition: all 0.3s ease;
}
#splash-screen .message {
  width: 100%;
  padding: 10px;
  text-align: center;
  margin: 0 auto;
  color: black;
  transition: all 0.3s ease;
  font-size: 2vh;
}
#splash-screen .message.alt {
  margin: 0 auto;
}
#splash-screen .not-allowed-content,
#splash-screen .denied-content,
#splash-screen .desktop-content {
  display: none;
}
#splash-screen .links {
  position: relative;
  text-align: center;
  padding: 15px 30px;
  margin: 0 auto;
  transition: all 0.3s ease;
}
#splash-screen .links .link {
  color: black;
  padding: 5px 15px;
  font-size: 1.5vh;
}
@media screen and (orientation: portrait) {
  #splash-screen .links .link {
    font-size: 1.5vh;
  }
}
@media screen and (orientation: landscape) {
  #splash-screen .links .link {
    font-size: 1.5vh;
  }
}
#splash-screen .logos {
  position: absolute;
  width: 100%;
  padding: 5px;
  bottom: 0;
  left: 0;
}
#splash-screen .logos .side {
  display: block;
  width: 45%;
  margin: 0 auto;
}
@media screen and (min-width: 420px) {
  #splash-screen .logos .side {
    width: 20%;
  }
}
#splash-screen .logos .side img {
  position: relative;
  width: 100%;
  height: auto;
}
#topbar {
  position: absolute;
  width: 100%;
  padding: 15px;
  background-color: white;
  z-index: 1200;
  top: 0;
  text-align: center;
}
#topbar img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
}
#newtork-status {
  position: absolute;
  z-index: 1199;
  width: 100%;
  padding: 15px;
  transform: translateY(-100%);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.8);
}
#newtork-status.active {
  transform: translateY(50px);
}
#newtork-status p {
  font-size: 2.5vh;
  font-weight: 400;
  color: white;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
}
#newtork-status.online {
  background-color: #01D27F;
}
#newtork-status.offline {
  background-color: #CC0C2F;
}
#newtork-status .close-status {
  position: absolute;
  font-size: 6vh;
  transform: rotate(45deg);
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
  user-select: none;
  color: white;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  top: -2px;
  right: 5px;
}
#popup {
  position: absolute;
  width: 22.5%;
  height: auto;
  max-height: 95%;
  top: 50%;
  left: 2.5%;
  background-color: white;
  padding: 15px;
  /* border: 0.5px solid #ccc; */
  border: 0;
  /* box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8); */
  transform: translateY(-50%);
  border-radius: 22px;
  z-index: 2000;
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
  text-align: center;
}
#popup.active {
  display: block;
}
#popup .close {
  font-size: 7vh;
  position: absolute;
  top: -7px;
  color: #00174F;
  transform: rotate(45deg);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
#popup .directions {
  width: 4.5vh;
  height: 4.5vh;
  position: absolute;
  top: 10px;
  left: 15px;
  background: url(../img/directions.svg) no-repeat center center / contain;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
#popup .title {
  position: relative;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  display: none;
  color: #394959;
  margin-top: 20px;
  margin-bottom: 40px;
  letter-spacing: 1px;
  font-family: 'OpenSansBold';
}
#popup img {
  margin: 15px 0;
  width: 55%;
  height: auto;
  width: 200px;
}
#popup .desc {
  position: relative;
  font-family: 1.7vh;
  line-height: 1.2;
}
#popup .cta {
  text-decoration: none;
  color: white;
  background-color: #00174F;
  display: block;
  padding: 20px 30px;
  border-radius: 30px;
  margin: 20px auto;
  font-weight: 400;
  display: none;
}

#popup .buttonSection {
  text-decoration: none;
  color: white;
  background-color: #394959;
  display: block;
  padding: 20px 30px;
  margin: 20px auto;
  font-weight: 400;
  border-radius: 0px 0px 15px 15px;
  background: #394959;
  padding: 20px;
  margin-bottom: 0px;
}

.btnWeb, .btnVote, .btnNewWeb, .btnNewInstagram {
  padding: 12px;
  border-radius: 30px;
  background: white;
  width: 40%;
  font-weight: bold;
}

#instructions {
  position: relative;
  width: 100%;
  bottom: 0;
  text-align: left;
  background-color: #ffffff;
  z-index: 2000;
  color: #0037D2;
  font-weight: 400;
  display: none;
  font-size: 12px;
}
#instructions.active {
  display: block;
}
#instructions strong {
  font-weight: 700;
}
#instructions .close-inst {
  position: absolute;
  font-size: 8vh;
  transform: rotate(45deg);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  top: -12px;
  right: 5px;
  display: none;
}
#instructions .step {
  font-size: 12px;
}
#unlocked {
  position: absolute;
  width: 100%;
  padding: 15px;
  bottom: 0;
  left: -100%;
  z-index: 2002;
  border-top: 1px solid #00174F;
  background: white;
  transition: all 0.3s ease;
}
#unlocked.active {
  left: 0;
}
#unlocked h3 {
  text-align: center;
  font-size: 3vh;
}
#unlocked h3.red {
  color: #CC0C2F;
}
#unlocked .cta {
  text-decoration: none;
  color: white;
  background-color: #00174F;
  display: block;
  width: 80%;
  font-size: 3vh;
  padding: 20px 30px;
  border-radius: 30px;
  text-align: center;
  margin: 20px auto 0;
  font-weight: 400;
}
.custom-marker {
  display: block;
  border: none;
  cursor: pointer;
  padding: 0;
}

.custom-marker p {
  position: relative;
  top: 80px;
  text-align: center;
  display: none;
}
#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  overflow-x: hidden;
}
#loading-block {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  pointer-events: all;
  z-index: 9999;
  transition: all 0.3s 0.2s ease;
}
#loading-block.hidden {
  opacity: 0;
  pointer-events: none;
}
#loading-block lottie-player {
  position: absolute;
  width: 95%;
  height: 95%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
#loading-block h3 {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-100%);
  left: 0;
  font-size: 4vh;
  color: white;
  text-align: center;
}
#loading-block p {
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 0;
  color: white;
  text-align: center;
}
.mapboxgl-user-location-dot {
  background: url(../img/userPos.png) no-repeat center center / cover;
  border: 0px solid;
  width: 35px;
  height: 35px;
}
.mapboxgl-user-location-dot:after {
  display: none;
}
.mapboxgl-user-location-dot:before {
  width: 35px;
  height: 35px;
  background-color: #394959;
  z-index: -1;
}
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after {
  border-right: 17.5px solid transparent;
  transform: translate(17.3px, -40px) skewY(20deg);
}
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before {
  border-left: 17.5px solid transparent;
  transform: translateY(-40px) skewY(-20deg);
}
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after,
.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before {
  border-bottom: 10.5px solid #394959;
}


.top-nav {
  overflow: visible;
  background-color: #212232;
  position: fixed;
  display: flex;
  flex-direction: row;
  /* align-items: center;
  justify-content: center; */
  top: 0;
  width: 100%;
  z-index: 4;
  padding: 24px;
}

.top-nav img {
  width: 50%;
  /* margin: auto;
  display: block; */
}
