:root {
  --circle_size: 150px;
  --prime: #93243E;
  --secondary: #D8C5A2;
  --timeline_thickness:10px;
  --timeline_margin: 50px;
  --timeline_height:70px;
  --timeline_cursor_width:10px;
  --timeline_cursor_height: 50px;
  --arrow_size:.7;
  --map_panels_height:12vh;
  --transition_time: .4s;
  --transition_timeline:.1s;
}

#flexo {
  width: 100vw;
  height: 100%;
  overflow: hidden;
  position: fixed;
  z-index: 1;
}

#container {
  width: 100%;
}

#poster {
  width: 100%;
  height: calc(100% - 190px);
}

.circle {
  right: 20px;
  bottom: 10px;
}

#wrap {
  height: calc(100% - 150px);
}

#map_panels {
  height: 150px;
  width: 100%;
}

@media only screen and (max-width: 600px) {
  #credits_sponsors {
    width: 100% !important;
  }
  #container {
    width: 100%;
    height: 200px;
  }
  #poster {
    width: 100%;
    height: calc(100% - 190px);
  }
  .circle {
    right: 20px;
    bottom: 10px;
  }
  #wrap {
    height: calc(100% - 150px);
  }
  #map_panels {
    height: 150px;
    width: 100%;
  }
}
@media only screen and (min-width: 600px) {
  #credits_sponsors {
    width: 60% !important;
  }
  #container {
    max-width: 800px;
  }
  #poster {
    width: 80%;
  }
  .circle {
    left: 70%;
    top: 70%;
  }
}
#panel_player {
  position: relative;
}

#panel_text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#panel_text img {
  width: 150px;
}
#panel_text button {
  background-color: var(--prime);
  color: #E0C49D;
  border: none;
}

#button_play {
  background-image: url("../images/play.png");
}
#button_play.playing {
  background-image: url("../images/pause.png");
}

#button_next {
  background-image: url("../images/next.png");
  transform: scaleX(calc(var(--arrow_size))) scaleY(calc(var(--arrow_size)));
}

#button_prev {
  background-image: url("../images/next.png");
  transform: scaleX(calc(var(--arrow_size) * -1)) scaleY(calc(var(--arrow_size) * -1));
}

#player_buttons > * + * {
  margin-left: 20px;
}

#player_buttons {
  display: flex;
  justify-content: center;
}
#player_buttons button {
  border: none;
  background-color: transparent;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
#player_buttons button.hide {
  display: block !important;
  opacity: 0;
  pointer-events: none;
}

#timeline {
  width: 100%;
  height: var(--timeline_height);
  position: relative;
  top: -30px;
}
#timeline #timeline_background {
  position: absolute;
  z-index: 1;
  width: calc(100% - var(--timeline_margin) * 2);
  height: var(--timeline_thickness);
  left: var(--timeline_margin);
  top: calc(50% - var(--timeline_thickness) / 2);
  pointer-events: none;
  border-radius: 5px;
  background-image: url("../images/pattern.png");
  background-position: center;
  background-size: 20%;
}
#timeline #timeline_background #timeline_cursor {
  pointer-events: none;
  position: absolute;
  z-index: 2;
  height: var(--timeline_cursor_height);
  width: var(--timeline_cursor_width);
  top: calc(50% - var(--timeline_cursor_height) / 2);
  transition: left var(--transition_timeline);
}
#timeline #timeline_background #timeline_cursor #cursor_graphic {
  position: absolute;
  background-image: url("../images/pattern.png");
  background-position: center;
  border-radius: 5px;
  top: 0px;
  filter: saturate(0) contrast(2);
  left: -50%;
  width: 100%;
  height: 100%;
}

#container {
  overflow: hidden;
  height: 100%;
  flex-direction: column;
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
}

#logo {
  position: absolute;
  top: 0px;
  right: 10px;
  height: 150px;
  z-index: 3;
}

#fhp {
  position: absolute;
  top: 10px;
  left: 20px;
  height: 30px;
  z-index: 3;
}

#wrap {
  display: flex;
  justify-content: center;
}

@keyframes loading {
  from {
    box-shadow: 0px 0px 0px 30px var(--secondary);
  }
  to {
    box-shadow: 0px 0px 0px 10px var(--secondary);
  }
}
body {
  margin: 0px;
}

#poster {
  position: relative;
  background-image: url("../images/poster.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
#poster #image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#poster .circle {
  position: absolute;
  border-radius: calc(var(--circle_size) / 2);
  color: #E0C49D;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  position: absolute;
  width: var(--circle_size);
  height: var(--circle_size);
  transition: all 3s;
}
#poster .circle:not(.show_circle) {
  pointer-events: none;
}
#poster .circle {
  opacity: 0;
}
#poster .circle.show_circle {
  transition: all 3s;
  opacity: 1;
  width: var(--circle_size);
  height: var(--circle_size);
}
#poster .circle .text {
  text-align: center;
}
#poster #load {
  background-color: rgb(153, 104, 104);
  animation: loading 2s infinite;
  animation-direction: alternate;
  box-shadow: 0px 0px 0px 10px var(--secondary);
}
#poster #start {
  background-color: rgb(115, 146, 117);
  border: none;
  gap: 20px;
}
#poster #start img {
  max-width: 20px;
}
#poster #sponsors {
  width: 100%;
  display: flex;
  position: absolute;
  bottom: -190px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 170px;
  gap: 10px;
  padding: 10px;
}
#poster #sponsors span {
  font-weight: bold;
}
#poster #sponsors img {
  max-width: 30%;
  min-width: 150px;
}

.hide {
  display: none !important;
}

#background {
  position: fixed;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center;
  top: 0px;
  left: 0px;
}

canvas {
  background-color: transparent;
  height: 100%;
  position: relative;
}

#credits {
  position: absolute;
  z-index: 999;
  top: 0px;
  left: 0px;
  height: 100%;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  outline: 1px black solid;
}
#credits .credit_screen {
  height: calc(100% - 350px);
}

#credits_sponsors {
  display: flex;
  gap: 20px;
}
#credits_sponsors a {
  display: block;
  text-align: center;
  max-width: 45%;
  position: relative;
}
#credits_sponsors a img {
  width: 100%;
}
#credits_sponsors a:first-child {
  margin-left: 80px;
}
#credits_sponsors a:last-child {
  margin-right: 80px;
}/*# sourceMappingURL=base.css.map */