.panorama-tour-container {
  width:100%;height:500px; position:relative;
  transition: height .3s;
}
.panorama-tour-container div {
  --scrollbar-foreground: #fff;
  --scrollbar-background: #333;
  /* Foreground, Background */
  scrollbar-color: var(--scrollbar-foreground) var(--scrollbar-background);
}
.panorama-tour-container div::-webkit-scrollbar {
  width: 10px; /* Mostly for vertical scrollbars */
  height: 10px; /* Mostly for horizontal scrollbars */
}
.panorama-tour-container div::-webkit-scrollbar-thumb { /* Foreground */
  background: var(--scrollbar-foreground);
}
.panorama-tour-container div::-webkit-scrollbar-track { /* Background */
  background: var(--scrollbar-background);
}

.panorama-tour-container:hover .panorama-overlay-icon {
  background-color: #d5001c;
  box-shadow: 0;
}
.panorama-tour-container.pano_big {
  height: 90vh;
  height: calc(100vh - 60px);
  max-height:90vh;
}
.panorama-tour-container .panorama-overlay-icon {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%,-50%,0);
        height: 104px;
    width: 104px;
        opacity: .9;
    background-color: rgba(0,0,0,.8);
    box-shadow: 1px 1px 20px 0 rgb(0 0 0 / 50%);
    border-radius: 50%;
    transition: .3s ease-in-out;
}
.panorama-tour-container .panorama-overlay-icon::before {
    content: "";
    font-family: pag-iconfont;
    font-size: 70px;
    line-height: 70px;
    color: #fff;
    margin: 5px auto 0;
    text-align: center;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
}
  #init-panoramatour {
    width:100%;
    height:100%;
  }
  .panorama-tour-container-close {
    position:absolute;
    top:0;
    right:0;
    width:40px;
    height:40px;
    background:rgba(255,255,255,.8);
    color:#666;
    font-size:30px;
    line-height:1;
    padding:5px;
    z-index:5;
    text-decoration:none !important;
    text-align:center;
    display:none;
  }
  .pano-ready .panorama-tour-container-close {
    display:block;
  }
  #pano1 * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
  }