html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: "Noto_Sans", sans-serif;
}

@font-face {
  font-family: "Noto_Sans";
  font-style: normal;
  font-weight: 200;
  src: url(/assets/fonts/Noto_Sans/static/NotoSans-Light.ttf) format("truetype");
}

#map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.pos-btn {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.pos-btn button {
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #1b1d1c;
  width: 150px;
  height: 45px;
  cursor: pointer;
  font-size: 1rem;
  border: none;
}

.leave-btn {
  background: #fff7ed;
  border: none;
  border-radius: 1px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  color: #1b1d1c;
  cursor: pointer;
  display: inline-block;
  flex-shrink: 0;
  font-family: "Noto_Sans", sans-serif !important;
  font-size: 1rem;
  font-weight: 200 !important;
  height: 45px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease-in-out;
  width: 130px;
  z-index: 1;
}
.leave-btn:before {
  background: #242421;
  content: "";
  height: 180px;
  position: absolute;
  width: 230px;
  z-index: -1;
}
.leave-btn:hover {
  border-color: #242421;
  color: #fff7ed;
}
.leave-btn:before {
  left: 0;
  top: 100%;
  transition: all 0.5s;
}
.leave-btn:hover:before {
  left: -30px;
  top: -30px;
}
.leave-btn:active:before {
  opacity: 0.3;
}

.map-wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
}

#map {
  width: 100%;
  height: 100%;
}

#map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  color: #fff6ec;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
}

#map-overlay p {
  font-size: 1.1rem;
  font-weight: 200;
  margin-bottom: 20px;
  padding: 0 20px;
}

#map-overlay a {
  font-size: 1.1rem;
  font-weight: 200;
  color: #fff6ec;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#accept-map {
  width: 140px;
  height: 45px;
  font-size: 1rem;
  font-weight: 100;
  font-family: "Inter", sans-serif !important;
  background-color: #d81d14;
  color: #fff6ec;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}
