/* Camera Slider Fixed CSS - Secure & Functional Version */

.camera_wrap {
	position: relative;
	margin-bottom: 30px;
}

.camera_wrap img {
	max-width: none !important;
}

.camera_loader {
	background: rgba(255,255,255,0.9) url(../images/camera-loader.gif) no-repeat center;
	border: 1px solid #fff;
	border-radius: 18px;
	height: 36px;
	left: 50%;
	margin: -18px 0 0 -18px;
	position: absolute;
	top: 50%;
	width: 36px;
	z-index: 3;
}

.camera_fakehover {
	height: 100%;
	min-height: 60px;
	position: relative;
	width: 100%;
	z-index: 1;
}

.camera_wrap img {
	display: block;
	position: absolute;
}

.camera_pag {
	bottom: 10px;
	left: 0;
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: 999;
}

.camera_pag_ul {
	margin: 0;
	padding: 0;
}

.camera_pag_ul li {
	display: inline-block;
	margin: 0 4px;
}

.camera_pag_ul li span {
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	display: block;
	height: 12px;
	width: 12px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.camera_pag_ul li.cameracurrent span {
	background: rgba(255, 255, 255, 1);
}

/* Overlays / Patterns */
.pattern_1 .camera_overlayer {
	background: url(../images/patterns/overlay1.png) repeat;
}
.pattern_2 .camera_overlayer {
	background: url(../images/patterns/overlay2.png) repeat;
}
.pattern_3 .camera_overlayer {
	background: url(../images/patterns/overlay3.png) repeat;
}
.pattern_4 .camera_overlayer {
	background: url(../images/patterns/overlay4.png) repeat;
}
.pattern_5 .camera_overlayer {
	background: url(../images/patterns/overlay5.png) repeat;
}

/* Navigation Arrows */
.camera_prev, .camera_next {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	background: rgba(0,0,0,0.3) url(../images/camera_skins.png) no-repeat;
	border-radius: 50%;
	cursor: pointer;
	z-index: 999;
	transition: background 0.3s ease;
}

.camera_prev {
	left: 20px;
	background-position: 0 0;
}
.camera_next {
	right: 20px;
	background-position: -40px 0;
}

.camera_prev:hover, .camera_next:hover {
	background-color: rgba(0,0,0,0.6);
}

/* Caption Styling */
.camera_caption {
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	padding: 15px 25px;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	box-sizing: border-box;
}

/* Responsive Fix */
@media screen and (max-width: 768px) {
	.camera_caption {
		font-size: 14px;
		padding: 10px;
	}
	.camera_prev, .camera_next {
		width: 30px;
		height: 30px;
		margin-top: -15px;
	}
}
