  body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html,
body {
  height: 100vh;
}

.map {
}

.map .points-of-interests {
  background-size: cover;
  width: 100%;

  position: relative;
}

.map .poi {
  background-size: cover;
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .map .poi:hover {
    border: 1px solid #3bbdb5;
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 10;
  }
}

.map .points-of-interests--desktop {
  display: none;
}
.map .points-of-interests--mobile {
  display: block;
}

.dialog-poi {
  border: none;
  width: calc(100% - 32px);
  max-width: 1280px;
  max-height: calc(100vh - 83px);
  margin: 83px auto 0;
  padding: 0;
  outline: none;
}

.dialog-poi::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
  pointer-events: none;
}

dialog:-internal-dialog-in-top-layer::backdrop {
  background: rgba(0, 0, 0, 0);
}

.dialog-poi .dialog-poi__body {
  padding-bottom: 40px;
}

.dialog-poi .dialog-poi__btn-close {
  display: block;
  background: rgba(255, 255, 255, 1) url("/assets/images/icon-close.svg") no-repeat 50%;
  background-size: 20px;
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  transition: background-size 0.2s;
  cursor: pointer;
  box-shadow: none;
  z-index: 10;
}

@media (hover: hover) and (pointer: fine) {
  .dialog-poi .dialog-poi__btn-close:hover {
    background-size: 25px;
  }
}

.poi-loader {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}

.poi-loader:before {
  content: " ";
  width: 48px;
  height: 48px;
  border: 5px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: poi-loader-rotation 1s linear infinite;
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}

@keyframes poi-loader-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (min-width: 1024px) {
  .map .points-of-interests--desktop {
    display: block;
  }
  .map .points-of-interests--mobile {
    display: none;
  }

  .dialog-poi {
    max-height: calc(100vh - 93px);
    margin-top: 93px;
  }
}
