@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400&display=swap');

* {
  -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: 'Montserrat', 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: 1.5%;
  left: 0.8%;
}

.logo {
  position: relative;
  width: 160px;
  height: auto;
  opacity: 0.4;

}
@media only screen and (max-width: 1030px) {
  .logo {
    width: 10vw;
  }
}

#sidebar{
  right: 0;
  float: right;
  height:100%;
  overflow: hidden;
  display: block;
  position: absolute;
}