.pnlm-container {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    cursor: default;
    width: 100%;
    height: 100%;
    font-family: Helvetica, "Nimbus Sans L", "Liberation Sans", Arial, sans-serif;
    background: #f4f4f4 url('img/background.svg') repeat;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: 0;
    line-height: 1.4;
    contain: content;
}

.pnlm-container * {
    box-sizing: content-box;
}

.pnlm-ui {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pnlm-grab {
    cursor: grab;
    cursor: url('img/grab.svg') 12 8, default;
}

.pnlm-grabbing {
    cursor: grabbing;
    cursor: url('img/grabbing.svg') 12 8, default;
}

.pnlm-sprite {
    /* background-image: url('img/sprites.svg'); */
}



.pnlm-container:-moz-full-screen {
    height: 100% !important;
    width: 100% !important;
    position: static !important;        
}
.pnlm-container:-webkit-full-screen {
    height: 100% !important;
    width: 100% !important;
    position: static !important;
}
.pnlm-container:-ms-fullscreen {
    height: 100% !important;
    width: 100% !important;
    position: static !important;
}
.pnlm-container:fullscreen {
    height: 100% !important;
    width: 100% !important;
    position: static !important;
}

.pnlm-render-container {
    cursor: inherit;
    
    /* Fix display bug in Safari 7 */
    position: absolute;
    height: 100%;
    width: 100%;
}

.pnlm-control {
    margin-top: 4px;
    background-color: #ffffff;
    border: 1px solid #333;
    border-color: rgba(0,0,0,0.5);
    border-radius: 10px;
    cursor: pointer;
    z-index: 100;
    /* Fix Safari fullscreen bug */
    -webkit-transform: translateZ(9999px);
    transform: translateZ(9999px);
    width: 50px;
    height: 50px;
}

.pnlm-control:hover {
    background-color: #f8f8f8;
}

.pnlm-controls-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%,0);
    z-index: 1;
    display:flex;
    column-gap: 20px;
}
 
/* .pnlm-zoom-controls {
    width: 100px;
    height: 50px;
    display:flex !important; 
}  */

.pnlm-fullscreen-toggle-button, .pnlm-orientation-button, .pnlm-hot-spot-debug-indicator,.pnlm-zoom-in,.pnlm-zoom-out {

}
.pnlm-fullscreen-toggle-button {
    /* height:50px;
    width:50px; */
    
    
}
.pnlm-hot-spot-debug-indicator {
    /* position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    display: none; */
}

.pnlm-orientation-button-inactive {
    background: #ffffff url('img/compass_phone.svg') no-repeat center center;    
    background-size: 90%;
}

.pnlm-orientation-button-active {
    background: #ffffff url('img/compass_phone_active.svg') no-repeat center center;    
    background-size: 90%;
}


.pnlm-zoom-in {
    background: #ffffff url('img/plus.svg') no-repeat center center;    
    background-size: 50%;
}

.pnlm-zoom-out {
    background: #ffffff url('img/minus.svg') no-repeat center center;    
    background-size: 50%;
}


.pnlm-fullscreen-toggle-button-inactive {
    background: #ffffff url('img/fullscreen.svg') no-repeat center center;    
    background-size: 70%;
}

.pnlm-fullscreen-toggle-button-active {
    background: #ffffff url('img/fullscreen_active.svg') no-repeat center center;
    background-size: 70%;
}

.pnlm-panorama-info {
    position: absolute;
    top: 15px;
    background-color: rgba(0,0,0,0.7);
    border-radius: 0 3px 3px 0;
    padding-right: 10px;
    color: #fff;
    text-align: left;
    display: none;
    z-index: 2;
    /* Fix Safari fullscreen bug */
    -webkit-transform: translateZ(9999px);
    transform: translateZ(9999px);
}

.pnlm-title-box {
    position: relative;
    font-size: 20px;
    display: table;
    padding-left: 5px;
    margin-bottom: 3px;
}

.pnlm-author-box {
    position: relative;
    font-size: 12px;
    display: table;
    padding-left: 5px;
}

.pnlm-load-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 150px;
    margin: -75px 0 0 -100px;
    background-color: rgba(0,0,0,0.7);
    border-radius: 3px;
    text-align: center;
    font-size: 20px;
    display: none;
    color: #fff;
}

.pnlm-load-box p {
    margin: 20px 0;
}

.pnlm-lbox {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    display: none;
}

.pnlm-loading {
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-name: pnlm-mv;
    -webkit-animation-name: pnlm-mv;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    height: 10px;
    width: 10px;
    background-color: #fff;
    position: relative;
}

@keyframes pnlm-mv {
    from {left:0;top:0;}
    25% {left:10px;top:0;}
    50% {left:10px;top:10px;}
    75% {left:0;top:10px;}
    to {left:0;top:0;}
}

@-webkit-keyframes pnlm-mv {
    from {left:0;top:0;}
    25% {left:10px;top:0;}
    50% {left:10px;top:10px;}
    75% {left:0;top:10px;}
    to {left:0;top:0;}
}

.pnlm-load-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 100px;
    margin: -50px 0 0 -100px;
    background-color: rgba(0,0,0,.7);
    border-radius: 3px;
    text-align: center;
    font-size: 20px;
    display: table;
    color: #fff;
    cursor: pointer;
}

.pnlm-load-button:hover {
    background-color: rgba(0,0,0,.8);
}

.pnlm-load-button p {
    display: table-cell;
    vertical-align: middle;
}

.pnlm-info-box {
    font-size: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 150px;
    margin: -75px 0 0 -100px;
    background-color: #000;
    border-radius: 3px;
    display: table;
    text-align: center;
    color: #fff;
    table-layout: fixed;
}

.pnlm-info-box a, .pnlm-author-box a {
    color: #fff;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pnlm-info-box p {
    display: table-cell;
    vertical-align: middle;
    padding: 0 5px 0 5px;
}

.pnlm-error-msg {
    display: none;
}

.pnlm-about-msg {
    font-size: 11px;
    line-height: 11px;
    color: #fff;
    padding: 5px 8px 5px 8px;
    background: rgba(0,0,0,0.7);
    border-radius: 3px;
    position: absolute;
    top: 50px;
    left: 50px;
    display: none;
    opacity: 0;
    -moz-transition: opacity .3s ease-in-out;
    -webkit-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    -ms-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    z-index: 1;
}

.pnlm-about-msg a:link, .pnlm-about-msg a:visited {
    color: #fff;
}

.pnlm-about-msg a:hover, .pnlm-about-msg a:active {
    color: #eee;
}

.pnlm-hotspot-base {
    position: absolute;
    visibility: hidden;
    cursor: default;
    vertical-align: middle;
    top: 0;
    z-index: 1;
}
.pnlm-hotspot {
    height: 26px;
    width: 26px;
    border-radius: 13px;
}
.pnlm-hotspot:hover {
    background-color: rgba(255,255,255,0.2);
}
.pnlm-hotspot.pnlm-info {
    background-position: 0 -104px;
}
/*.pnlm-hotspot.pnlm-scene {
    background-position: 0 -130px;
}*/

.pnlm-hotspot.pnlm-scene {
    width:65px;
    height:88px;
    background: url('img/arrow.svg') no-repeat center center;
    background-size: 100%;
    -webkit-transition: background-size 250ms linear;
	-moz-transition: background-size 250ms linear;
	-o-transition: background-size 250ms linear
	-ms-transition: background-size 250ms linear;
	transition: background-size 250ms linear;
    /*background-position: 0 -130px;*/

}

.pnlm-hotspot.pnlm-scene:hover {
    cursor:pointer;
    
    /* background-position: 0 -135px; */
    background-size: 110%;
}

div.pnlm-tooltip span {
    /* visibility: hidden; */
    position: absolute;
    border-radius: 10px;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    text-align: center;
    max-width: 200px;
    padding: 3px 8px;
    margin-left: -220px;
    cursor: default;
    font-size:14px;
}
div.pnlm-tooltip:hover span{
    visibility: visible;
}
/* div.pnlm-tooltip:hover span:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: rgba(0,0,0,0.7) transparent transparent transparent;
    top: -20px;
    left: -10px;
    margin: 0 50%;
} */

.pnlm-compass {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 4px;
    bottom: 4px;
    border-radius: 25px;
    background-image: url('img/compass.svg');
    cursor: default;
    display: none;
}

.pnlm-world {
    position: absolute;
    left: 50%;
    top: 50%;
}
.pnlm-face {
    position: absolute;
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
}

.pnlm-dragfix, .pnlm-preview-img {
    position: absolute;
    height: 100%;
    width: 100%;
}

.pnlm-preview-img {
    background-size: cover;
    background-position: center;
}

.pnlm-lbar {
    width: 150px;
    margin: 0 auto;
    border: #fff 1px solid;
    height: 6px;
}

.pnlm-lbar-fill {
    background: #fff;
    height: 100%;
    width: 0;
}

.pnlm-lmsg {
    font-size: 12px;
}

.pnlm-fade-img {
    position: absolute;
    top: 0;
    left: 0;
}

.pnlm-pointer {
    cursor: pointer;
}

.video-container {
    display: none; 
    z-index:10;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    border-radius: 3px;
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 5px 10px;
    cursor: default;
    box-shadow: 8px 15px 35px 14px rgba(0, 0, 0, 0.72);
    -webkit-box-shadow: 8px 15px 35px 14px rgba(0, 0, 0, 0.72);
    -moz-box-shadow: 8px 15px 35px 14px rgba(0, 0, 0, 0.72);
    
}

.video-container .video-close {
    z-index:12;
    width:40px;
    height:40px;
    position: absolute;
    right:5px;
    top: 5px;
    background: url(img/close.svg) no-repeat center center;
    background-size: 100%;
    cursor:pointer;
    
}

.video-container .video-close:hover {
    width:41px;
    height:41px;
}

.video-container .video-player {
    width: 100%;
    height: auto;
    
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  

@media screen and (max-width: 720px) {
    .pnlm-hotspot.pnlm-scene {
        width:60px;
        height:80px;
    }

  
}