#panorama {
	width: 750px;
    height: 600px;
}
.pnlm-sprite {
    background-image: url('info.svg');
}
.pnlm-hotspot.pnlm-modal,
.pnlm-hotspot.pnlm-slides {
  /*background-position: 0 -104px;*/
  background-position: 0 -208px;
}

.pnlm-modalbox:hover {opacity: 0.9; z-index: 100; }

/* The Modal (background) */
div.pnlm-modalbox {
    display: none;
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    padding-top: 20px; /* Location of the box */
	/*padding-left: 20px; */
	margin : auto;
    left: 20px;
    top: 20px;
    width: 700px; /* Full width */
    height: 540px; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.pnlm-modalbox-content{
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
	max-height: 500px;
	padding: 10px 0;
}

/* Caption of Modal Image */
.pnlm-modalbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.pnlm-tmodalbox-content, .pnlm-modalbox-caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

/* The Close Button */
.pnlm-modalbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
	z-index: 1;
}

.pnlm-modalbox-close:hover,
.pnlm-modalbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/*	Slideshow */
.pnlm-modalbox-slides {
	max-height:inherit;
	max-width:inherit;
}

.pnlm-modalbox-slides:focus {
    display: none;
}

/* Next & previous buttons */
.pnlm-modalbox-slides-prev,
.pnlm-modalbox-slides-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.pnlm-modalbox-slides-prev {
  left: 16px;
  border-radius: 3px 0 0 3px;
}

/* Position the "next button" to the right */
.pnlm-modalbox-slides-next {
  right: 16px;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.pnlm-modalbox-slides-prev:hover,
.pnlm-modalbox-slides-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.pnlm-modalbox-slides-numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .pnlm-modalbox-content {
        width: 100%;
    }
}