@font-face {
  font-family: "Neo Sans";
  src: url(../fonts/Panton.woff) format("truetype");
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Neo Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  text-decoration: none;
}

.paddingFont {
  padding-top: 0px;
}

.hoverYellow {
  transform: color 200ms linear;
  cursor: pointer;
}
.hoverYellow:hover {
  color: #FFC700;
}

.yellowText {
  color: #FFC700;
}

.generalButton, .iconButton {
  font-family: "Neo Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: white;
  border-radius: 6px;
  border: none;
  background: rgba(37, 24, 67, 0.75);
  cursor: pointer;
  padding: 15px 0 10px 0;
  width: 100%;
  max-width: 200px;
  transition: all 200ms linear;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}
.generalButton:hover, .iconButton:hover {
  background: #34225f;
}

.iconButton {
  position: relative;
  border-radius: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  padding: 10px 0;
  aspect-ratio: 1/1;
  transition: all 200ms cubic-bezier(0.01, 0.65, 0.11, 0.99);
}
.iconButton:hover:before {
  display: block;
}
.iconButton:hover::after {
  display: block;
}
.iconButton:before {
  content: attr(data-tooltip);
  position: absolute;
  left: 60px;
  background: #34225f;
  color: white;
  font-size: 12px;
  width: 160px;
  padding: 9px 6px 6px 6px;
  border-radius: 6px;
  display: none;
}
.iconButton::after {
  content: "";
  position: absolute;
  left: 56px;
  background: #34225f;
  width: 8px;
  aspect-ratio: 1/1;
  transform: rotate(45deg);
  display: none;
}

.active-loader {
  pointer-events: none;
}
.active-loader .loader-section {
  display: flex;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
html .loader-section, body .loader-section {
  z-index: 10000;
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: rgba(16, 16, 28, 0.749);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border-radius: 10px;
  padding: 24px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
html .loader-section .loader, body .loader-section .loader {
  width: 32px;
  height: 32px;
  border: 3px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html .top_section, body .top_section {
  z-index: 50;
  position: fixed !important;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0px 20px;
  height: 50px;
  color: white;
  border-radius: 10px;
  background-color: rgba(16, 16, 28, 0.749);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  text-transform: uppercase;
}
html .top_section .timer, body .top_section .timer {
  text-align: center;
  width: 50px;
}
html .top_section .separator, body .top_section .separator {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  height: 30px;
}
html .localisation_section, html .chrono_section, body .localisation_section, body .chrono_section {
  width: 407px;
  z-index: 50;
  position: fixed !important;
  top: 82px;
  right: 20px;
  display: none;
  flex-direction: column;
  background-color: #251843;
  border-radius: 10px;
  overflow: hidden;
}
html .localisation_section span, html .chrono_section span, body .localisation_section span, body .chrono_section span {
  padding: 16px 20px 10px 20px;
  width: 100%;
  color: white;
  text-transform: uppercase;
  background-color: #251843;
  transition: background-color 200ms linear;
}
html .localisation_section span:hover, html .chrono_section span:hover, body .localisation_section span:hover, body .chrono_section span:hover {
  background-color: #34225f;
}
html .localisation_section .activeLocation, html .localisation_section .activeChrono, html .chrono_section .activeLocation, html .chrono_section .activeChrono, body .localisation_section .activeLocation, body .localisation_section .activeChrono, body .chrono_section .activeLocation, body .chrono_section .activeChrono {
  background-color: #34225f;
  color: #FFC700;
}
html .openLocalisation_section, html .openChrono_section, body .openLocalisation_section, body .openChrono_section {
  display: flex !important;
}
html .controle_section__left, body .controle_section__left {
  z-index: 150;
  position: fixed !important;
  top: 20px;
  left: 20px;
  width: 100px;
  display: flex;
  gap: 12px;
  flex-direction: column;
}
html .bottom_section, body .bottom_section {
  z-index: 200;
  position: fixed !important;
  bottom: 0px;
  right: 0px;
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
  align-items: end;
  padding: 0 20px 20px 0;
}
html .bottom_section:hover #map, body .bottom_section:hover #map {
  width: 70vw;
  height: 70vh;
}
html .bottom_section button, body .bottom_section button {
  z-index: 100;
  max-width: 100% !important;
  display: block;
}
html .bottom_section .hide, body .bottom_section .hide {
  display: none;
}
html .bottom_section #map, body .bottom_section #map {
  cursor: crosshair !important;
  z-index: 200;
  width: 10vw;
  height: 10vh;
  background-color: rgb(220, 220, 220);
  border: solid 2px black;
  border-radius: 6px;
  transition: all 300ms cubic-bezier(0.01, 0.65, 0.11, 0.99);
}
html .bottom_section #map > div > div.gm-style > div:nth-child(1) > div:nth-child(2), body .bottom_section #map > div > div.gm-style > div:nth-child(1) > div:nth-child(2) {
  cursor: crosshair !important;
}
html .bottom_section .full, body .bottom_section .full {
  z-index: 100;
  position: fixed;
  width: 100vw !important;
  height: 100vh !important;
  top: 20px;
  left: 20px;
  border-radius: 0px;
  border: solid 0px black;
}
html #pano, body #pano {
  float: left;
  height: 100%;
  width: 100%;
}
html #pano > div > div:nth-child(4) > div:nth-child(2), html #pano > div > div:nth-child(16) > div, html #pano > div > div:nth-child(8) > button, html .gmnoprint, html #pano > div > div:nth-child(13) > div.gmnoprint.gm-bundled-control.gm-bundled-control-on-bottom > div:nth-child(2), html #map > div > div.gm-style > div:nth-child(8) > button, body #pano > div > div:nth-child(4) > div:nth-child(2), body #pano > div > div:nth-child(16) > div, body #pano > div > div:nth-child(8) > button, body .gmnoprint, body #pano > div > div:nth-child(13) > div.gmnoprint.gm-bundled-control.gm-bundled-control-on-bottom > div:nth-child(2), body #map > div > div.gm-style > div:nth-child(8) > button {
  display: none;
}
html .resultModal, body .resultModal {
  z-index: 1000;
  position: fixed;
  width: calc(100% - 40px);
  height: 100px;
  bottom: 20px;
  left: 20px;
  background-color: rgba(16, 16, 28, 0.7333333333);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 10px;
  display: none;
  justify-content: center;
  align-items: center;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
  color: white;
  gap: 50px;
}
html .resultModal__modal__content, body .resultModal__modal__content {
  font-size: 20px;
}
html .resultModal__score, body .resultModal__score {
  position: relative;
  width: 100%;
  height: 45px;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  background-color: #251843;
}
html .resultModal__score div, body .resultModal__score div {
  background-color: #34225f;
  width: 50%;
  height: 100%;
  transition: all 1000ms cubic-bezier(0.55, 0.01, 0.29, 0.99) 300ms;
}
html .resultModal__score p, body .resultModal__score p {
  color: #FFC700;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
html .joinModal, body .joinModal {
  z-index: 100;
  position: fixed;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  display: none;
  flex-direction: column;
  align-items: center;
  background: rgba(37, 24, 67, 0.75);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 20px 40px;
  gap: 12px;
  color: white;
  text-transform: uppercase;
}
html .joinModal input, body .joinModal input {
  width: 100%;
  height: 50px;
  padding: 6px;
  background-color: transparent;
  color: white;
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.397);
  border-radius: 5px;
}
html .joinModal input:focus, body .joinModal input:focus {
  border: 2px solid;
}
html .joinModal button, body .joinModal button {
  width: 275px;
  max-width: none;
}
html .joinModal img, body .joinModal img {
  position: absolute;
  right: 12px;
  top: 12px;
  transform: rotate(45deg);
  background-color: transparent;
  border-radius: 30px;
  cursor: pointer;
  transition: all 200ms linear;
}
html .joinModal img:hover, body .joinModal img:hover {
  background-color: rgb(239, 59, 59);
}
html .openJoinModal, body .openJoinModal {
  display: flex;
}
html .open, body .open {
  display: flex !important;
}
html .boussolle_section, body .boussolle_section {
  z-index: 50;
  bottom: 0px;
  left: 40px;
  position: fixed;
  transform: translate(-50%, -50%);
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: rgba(37, 24, 67, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}
html .boussolle_section img, body .boussolle_section img {
  height: 40px;
}

.final-pin, .user-pin, .player-pin {
  position: relative;
  background-image: url("../image/validmarker.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 30px;
  height: 39.19px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-pin {
  z-index: 70;
  background-image: url("../image/usermarker.png");
}

.player-pin {
  z-index: 69;
  background-image: url("../image/playermarker.png");
}/*# sourceMappingURL=style-game.css.map */