/* panorama layout */
.panorama {
	width: 100%;
	height: 60vh;
	overflow: hidden;
	display: block;
	margin: 0 auto;
}
.panorama-view {
	width: 100%;
	height: 60vh;
	overflow: hidden;
	display: block;
}
@media only screen and (max-width: 768px) {
	.panorama {
		width: 100%;
		height: 50vh;
	}
	.panorama-view {
		height: 50vh;
	}
}



.panorama,
.panorama-container {
	position: relative;
	cursor: ew-resize;
}

.panorama-container {
	margin-left: -100vw;
}
@media only screen and (max-width: 768px) {
.panorama-container {
	margin-left: -480vw;
}
}

.panorama-container img {
	height: 100%;
	width: auto;
	position: absolute;
	top: 0;
}

.panorama .info,
.panorama-view .area {
	position: absolute;
	display: block;
}

.panorama .info {
	right: 10px;
	bottom: 10px;
}

.panorama .controls {
	/*position: absolute;
	right: 35px;
	top: 50px;
	display: flex;
	align-items: center;*/
	position: unset;
}
@media only screen and (max-width: 768px) {
	.panorama .controls {
		right: 0;
		top: 15px;
	}
}

.panorama .controls a {
	display: block;
/*	float: left;*/
	/*margin-right: 15px;*/
}

.panorama .preloader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* panorama style */
.panorama-view {
	cursor: url(openhand.cur), default;
}

.panorama-view.grab {
	cursor: url(closedhand.cur), 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.circle {
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.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 {
	/*border-radius: 5px;*/
}

.panorama .preloader {
	background: url(preloader.gif) no-repeat center center;
}

.panorama .controls a.prev,
.panorama .controls a.stop,
.panorama .controls a.next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(255,255,255,.9);
	padding: 30px 0;
}
.panorama .controls a.prev {
	left: 0;
}
.panorama .controls a.stop {
	display: none;
}
.panorama .controls a.next {
	right: 0;
}

.panorama .controls a.prev span,
.panorama .controls a.stop span,
.panorama .controls a.next span {
	display: block;
	text-indent: -999px;
	overflow: hidden;
	/* background: url(panorama-controls.png) no-repeat -999px 0; */
}

.panorama .controls a.prev span {
	background: url("panorama-controls-arrow.svg") no-repeat;
	background-size: contain;
	width: 44px;
	height: 55px;
}
.panorama .controls a.next span {
	background: url("panorama-controls-arrow.svg") no-repeat;
	background-size: contain;
	transform: scale(-1,-1);
	width: 44px;
	height: 55px;
}
.panorama .controls a.stop span {
	background: url("panorama-controls-circle.svg") no-repeat;
	width: 34px;
	height: 34px;
}

/* .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;
} */

html[dir="rtl"] .panorama .panorama-view,
body[dir="rtl"] .panorama .panorama-view,
.rtl .panorama .panorama-view {
	direction: ltr;
}


/* retina display graphics */
@media only screen and (min-width:480px) 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(panorama-controls@2x.png);
		-webkit-background-size: 32px 14px;
		background-size: 32px 14px;
	}
*/
    
	.panorama .controls a.prev span {
		background-image: none;
		background: url("panorama-controls-arrow.svg") no-repeat;
		width: 34px;
		height: 45px;
	}
	.panorama .controls a.next span {
		background-image: none;
		background: url("panorama-controls-arrow.svg") no-repeat;
		transform: scale(-1,-1);
		width: 34px;
		height: 45px;
	}
	.panorama .controls a.stop span {
		background-image: none;
		background: url("panorama-controls-circle.svg") no-repeat;
		width: 34px;
		height: 34px;
	}

}