/*!
*  - v1.3
* Homepage: http://bqworks.com/slider-pro/
* Author: bqworks
* Author URL: http://bqworks.com/
*/
/* Core
--------------------------------------------------*/
.slider-pro {
	position: relative;
	margin: 0 auto;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.sp-slides-container {
	position: relative;
}

.sp-mask {
	position: relative;
	overflow: hidden;
}

.sp-slides {
	position: relative;
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
}

.no-swipe .sp-slides {  /* Bug fix to prevent image swiping (movment left and right) when only one image available in gallery */
	transform: translate3d(0px, 0px, 0px) !important;
}

.sp-slide {
	position: absolute;
}

.sp-image-container {
	overflow: hidden;
}

.sp-image {
	position: relative;
	display: block;
	border: none;
}

.sp-no-js {
	overflow: hidden;
	max-width: 100%;
}

/* Buttons
--------------------------------------------------*/
.sp-buttons {
	z-index:2000;
    position:absolute;
    width: auto;
	bottom: 9px;
	right: 4.1%;	
    text-align:center;	
}

@media only screen and (min-width: 961px) {
  	.sp-buttons {
    	right: 40px;
  	}
}

@media only screen and (max-width:500px){
    .sp-buttons {
        display:none;
    }
}

.sp-rtl .sp-buttons {
	direction: rtl;
}

.sp-full-screen .sp-buttons {
	display: none;
}

.sp-button {

	width: 15px;
	height: 15px;
	background-color: rgb(250,191,146);
    background-color: rgba(245,128,37,0.5);
	margin: 0 0 0 8px;
	display: inline-block;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	position: relative;
	z-index: 2100;
	zoom: 1;
	
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}

.sp-selected-button {
	background-color: rgb(245,128,37);
    cursor: default;
}

/* Arrows
--------------------------------------------------*/
.sp-arrows {
	position: absolute;
}

.sp-fade-arrows {
	opacity: 0;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.sp-slides-container:hover .sp-fade-arrows {
	opacity: 1;
}

.sp-horizontal .sp-arrows {
	width: 100%;
	left: 0;
	top: 50%;
	margin-top: -15px;
}

.sp-arrow {
	position: absolute;
	display: block;
	cursor: pointer;

	width:42px;
    height:50px;
    line-height:50px;
	color: #ffffff;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	overflow:hidden;
    user-select:none;
    white-space:nowrap;
    -webkit-user-select: none;
	filter: dropshadow(color=#333333, offx=2, offy=2);
	display: block; /* that's the important part */
}

.sp-horizontal .sp-previous-arrow {
	left: 20px;
	right: auto;
}

.sp-horizontal.sp-rtl .sp-previous-arrow {
	right: 20px;
	left: auto;
}

.sp-horizontal .sp-next-arrow {
	right: 20px;
	left: auto;
}

.sp-horizontal.sp-rtl .sp-next-arrow {
	left: 20px;
	right: auto;
}

.sp-previous-arrow:before,
.sp-next-arrow:before {
    font-family: 'B2-Icons';
	font-style: normal;
	font-weight: normal;
	font-size: 41px; font-size: 4.1rem;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9);
}

.sp-previous-arrow:before {
	content:'\002D';
}

.sp-next-arrow:before {
	content:'\002B';
}

@media only screen and (max-width:500px){
    .sp-arrows {
/*         display: none; */
    }
    
	.sp-horizontal .sp-previous-arrow {
		left: 10px;
	}
	
	.sp-horizontal.sp-rtl .sp-previous-arrow {
		right: 10px;
	}
	
	.sp-horizontal .sp-next-arrow {
		right: 10px;
	}
	
	.sp-horizontal.sp-rtl .sp-next-arrow {
		left: 10px;
	}

}

.noVisibleSliderControls .sp-arrows {
	display: none;
}

/* CSS for preventing styling issues in WordPress
--------------------------------------------------*/
.slider-pro img.sp-image {
	max-width: none;
	max-height: none;
	border: none !important;
	border-radius: 0 !important;
	padding: 0 !important;
	-webkit-box-shadow: none !important;
	-mox-box-shadow: none !important;
	box-shadow: none !important;
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}

.slider-pro a {
	position: static;
	transition: none !important;
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-o-transition: none !important;
}