/* panorama layout */
.panorama, .panorama-view { width: 100%; height: 100%; overflow: hidden; }
.panorama, .panorama-container { position: relative; }
.panorama-container img { height: 100%; position: absolute; top: 0; }
.panorama .info, .panorama-view .area { position: absolute; display: block; }
.panorama .info { right: 10px; bottom: 10px; }
.panorama .controls { position: absolute; left: 10px; bottom: 1rem; }
.panorama .controls a { display: block; float: left; margin-right: 5px; }
.panorama .preloader { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* panorama style */
.panorama-view { cursor: default; }
.panorama-view.grab { cursor: default; }
.panorama .info, .panorama .controls a { opacity: 0.6; filter: alpha(opacity=60); background-color: #000; color: #fff; font: bold 11px/14px Arial, sans-serif; text-decoration: none; padding: 6px 7px; cursor: pointer; -webkit-transition: all .25s linear; -moz-transition: all .25s linear; -o-transition: all .25s linear; -ms-transition: all .25s linear; transition: all .25s linear; }
.panorama .info:hover, .panorama .controls a:hover { opacity: 0.8; filter: alpha(opacity=80); }
.panorama-view .area { opacity: 0.25; filter: alpha(opacity=25); background-color: #000; cursor: pointer; overflow: hidden; text-indent: -9999px; }
.panorama-view .area:hover { opacity: 0.5; filter: alpha(opacity=50); }
.panorama-view img { -o-user-select: none; -moz-user-select: none; -webkit-user-select: none; user-select: none; }
.panorama .info, .panorama-view .area, .panorama .controls a { -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }
.panorama .preloader { background: url(../img/preloader.gif) no-repeat center center; }
.panorama .controls a.prev span, .panorama .controls a.stop span, .panorama .controls a.next span { display: block; text-indent: -999px; overflow: hidden; background: url(../img/panorama-controls.png) no-repeat -999px 0; }
.panorama .controls a.prev span, .panorama .controls a.next span { width: 10px; height: 14px; }
.panorama .controls a.prev span { background-position: 0 0; }
.panorama .controls a.next span { background-position: -11px 0; }
.panorama .controls a.stop span { margin: 2px 1px; width: 10px; height: 10px; background-position: -22px -2px; }

/* retina display graphics */
@media only screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
	.panorama .controls a.prev span, .panorama .controls a.stop span, .panorama .controls a.next span { background-image: url(../img/panorama-controls%402x.html); -webkit-background-size: 32px 14px; background-size: 32px 14px; }
}

.rst {
	height: calc(100vh - 30vh);
	overflow: hidden;
	position: relative;
}

.panorama {
      width: 100%;
      margin-top: 0;
      height: 100%;
	  overflow-x: scroll;
	  overflow-y: hidden;
}

.panorama img {
	height: 100%;
}

.overlay-cover {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    color: #fff;
	background-color: rgba(0, 0, 0, .6);
	text-align: center;
	left: 0;
	z-index: 999;
}

.overlay-cover .mid {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 0px;
}

.overlay-cover .mid:before {
	content: "";
    display: inline-block;
    width: 0%;
    height: 100%;
    vertical-align: middle;
}
.overlay-cover .mid p {
	display: inline-block;
    width: 90%;
    vertical-align: middle;
    font-size: 18px;
	font-weight: 500;
}
.overlay-cover .mid p span {
	display: block;
	width: 60px;
	height: 60px;
	margin: 0 auto 10px auto;
	background: url('../img/swipe.svg') no-repeat;
	background-size: contain;
}