html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: fixed;
  cursor: default;
  width: 100%;
  height: 100%;
}

.custom-hotspot {
  height: 30px;
  width: 30px;
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.9);
}

.custom-hotspot::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}
