* {
  -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: 100%;
  height: 100%;
  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: 100%;
  height: 100%;
  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: 0;
  left: 0;
  z-index: 6;
}

.logo {
  height: 20vh;
  object-fit: contain;
  /* background-color: white; */
  /* padding: 1vw; */
}

#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
}

.concept-p {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1vw;
  background-color: white;
  color: #1C5828;
  /* text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000; */
  font-style: italic;
  font-size: 1vw;
  font-weight: 700;
  z-index: 99;
  pointer-events: none;
}