/* ================ $photo tour ================ */
/* == group list == */
/* wrapper */
.group-wrapper{
	width: 35%;
	/*height: 35%;*/
	height: 0;
	border: solid 15px #fff;
	box-shadow: 0 0 15px 0 rgba(0,0,0,.5);
	position: relative;
	margin: 5% 7%;
	padding: 35% 0 0 0;
	background: #ccc;
}

.group-wrapper:before,
.group-wrapper:after{
	width: 100%;
	height: 100%;
	content: '';
	position: absolute;
	top: -15px;
	left: -15px;
	border: solid 15px #fff;
	box-shadow: 0 0 15px 0 rgba(0,0,0,.5);
}

.group-wrapper:before{
	-webkit-transform: rotate(9deg);
	background: #ccc;
	z-index: -1;
	top: -10px;
}

.group-wrapper:after{
	-webkit-transform: rotate(-9deg);
	top: -20px;
	left: -20px;
	z-index: -2;
	background: #ccc;
}

.group-wrapper:hover{ cursor: pointer; }


/* title */
.group-title{
	width: 75%;
	text-align: center;
	color: #fff;
	text-transform: capitalize;
	font-size: 1.2em;
	font-family: helvetica, sans-serif;
	font-weight: bold;
	background: #485a43;
	padding: 10px 15px;
	position: absolute;
	top: -7px;
	left: -85px;
	z-index: 1000;
	-webkit-transform: rotate(-30deg);
}

.group-wrapper:hover .group-title{
	background: #d0e0b8;
	color: #485a43;
}

/* thumbnail */
.group-thumbnail{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/* images in group list */
.group-image{
	border: solid 15px #f00;
	margin: 22px;
	padding: 0;
}


/* == smooth scroll == */
/* overall wrapper */
#photoTour{
	width:100%;
	position: relative;
	background: rgba(0,0,0,.5);
}

/* hot spots */
.scrollingHotSpotLeftVisible,
.scrollingHotSpotRightVisible{
	background: rgba(255,0,0,.35);
	border: solid 1px #fff;
}

.scrollingHotSpotLeft,
.scrollingHotSpotRight{
	min-width: 75px;
	width: 5%;
	height: 100%;
	position: absolute;
	z-index: 200;
	cursor: pointer;
}

.scrollingHotSpotLeft{
	left: 0;
	background: rgba(0,0,0,.75) url(../images/left-arrow.svg) no-repeat 50% 50%;
}

.scrollingHotSpotRight{
	right: 0;
	background: rgba(0,0,0,.75) url(../images/right-arrow.svg) no-repeat 50% 50%;
}

/* outer wrapper for images */
.scrollWrapper{
	/*width: 100%;
	height: 100%;
	position: relative;*/
	overflow: hidden;
}

/* image wrapper */
.scrollableArea{
	/*white-space: nowrap;*/
	/*position: relative;
	width: auto;
	height: 100%;*/
	margin: 0 auto;
}

.scrollableArea:after{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

/* images */
.scrollableArea .photo-tour-item{
	width: 500px;
	margin: 20px 30px;
	float: left;
}

.photo-tour-item h3,
.photo-tour-item h4,
.photo-tour-item p{
	color: #fff;
	line-height: 1.3;
	font-size: 1;
	font-weight: normal;
	margin: 0;
	padding: 0 15px 20px 15px;
}

.scrollableArea img{
	width: 100%;
	/*width: 400px;*/
	/*max-width: 800px;
	max-height: 800px;*/
	/*position: relative;*/
	border: solid 10px #fff;
	/*float: left;*/
	display: block;
	vertical-align: middle;
	/*margin: 0 0 10px 0;*/
	padding: 0;
	-webkit-user-select: none;
	user-select: none;
}






