* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -ms-content-zooming: none;
}

html, body {
  width: 100vw;
  height: 100dvh;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  background-color: #000;
  color: #fff;
}

#pano {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#panorama {
  width: 100vw;
  height: 100%;
}

.main-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  display: grid;
}

.view-wrapper {
  display: grid;
  position: relative;
  /* width: 100%;
  height: 100%; */
  resize: horizontal;
  float: left;
}

.logo_link {
  position: absolute;
  width: fit-content;
  height: fit-content;
  top: 2%;
  left: 1%;
}

.logo {
  width: 200px;
  position: relative;
}
@media only screen and (max-width: 840px) {
  .logo {
    width: 150px;
  }
}

#sidebar{
  right: 0;
  float: right;
  height:100%;
  overflow: hidden;
  display: block;
  position: absolute;
}

#resizable {
  width: 150px;
  height: 100%;
  padding: 0.5em;
  top: 0;
  left: 0;
  z-index: 10;
  position: absolute;
  resize: horizontal
}

#ghostbar{
  width:3px;
  right: 0;
  background-color:#000;
  opacity:0.5;
  position:absolute;
  cursor: col-resize;
  z-index:999
}

.map-buttons {
  position: absolute;
  top: 15px;
  right: 25px;
  width: fit-content;
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 2;
}

.warning {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: none;
  z-index: 99999;
  background-color: rgba(0, 0, 0);
}

.warning-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3vw;
  font-weight: bold;
  /*text-shadow: 0px 0px 10px black;*/
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}
/* 
@media screen and (min-width: ) {
  .warning {
    display: none;
  }
} */