.iosSlider {
	width: 100%;
	height: 100%;
}

.iosSlider .slider {
	width: 100%;
	height: 100%;
}

.iosSlider .slider .item {
	width: 100%;
	height:100%;
	padding:0;
	float: left;
    position: relative;
}

.iosSlider .slider .item:last-child {
    border: none;
}
			
.iosSlider2 {
	z-index:100;
	width: 55px;
	height: 20px;
	padding:0;
    position: absolute;
}
			
.iosSlider2 .slider  {
	width: 100%;
	height: 100%;
}
			
.iosSlider2 .slider .button{
	width: 10px;
	height: 10px;
	padding:0;
	margin: 0 5px 0 0;
	float: left;
	position:relative;
    background-color: #ffffff;
	border: 2px solid #aaaaaa;
    border-radius:8px;
	cursor:pointer;
	
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}
			
.iosSlider2 .slider .button:hover{
	background:#B89D69;
	border: 2px solid #B89D69;
}
			
.iosSlider2 .slider .button.selected{
	background:#B89D69;
	border: 2px solid #B89D69;
}

.iosSlider2 .slider .button:last-child {
	margin:0;
}

.background {
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.prev {
	z-index: 1000;
	width: 40px;
	height: 40px;
	top: calc(50% - 20px);
	left:-50px;
	position: absolute;
	background-repeat:no-repeat;
	background-position: 50% 50%;
	background-image:url(../images/prev_btn.png);
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -ms-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
	opacity: 1;
	cursor: pointer;
	
	-webkit-transition:all 0.2s linear; 
	-moz-transition:all 0.2s linear; 
	-ms-transition:all 0.2s linear; 
	-o-transition:all 0.2s linear; 
	transition:all 0.2s linear; 	
}

.next {
	z-index: 1000;
	width: 40px;
	height: 40px;
	top: calc(50% - 20px);
	right:-50px;
	position: absolute;
	background-repeat:no-repeat;
	background-position: 50% 50%;
	background-image:url(../images/next_btn.png);
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -ms-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
	opacity: 1;
	cursor: pointer;
	
	-webkit-transition:all 0.2s linear; 
	-moz-transition:all 0.2s linear; 
	-ms-transition:all 0.2s linear; 
	-o-transition:all 0.2s linear; 
	transition:all 0.2s linear;	
}

.prev.unselectable {
	opacity: 0;
}

.next.unselectable {
	opacity: 0;
}

/***************************************************
			        Mobile
***************************************************/
@media (max-width: 1000px) {
			
.iosSlider2 {
	width: 44px;
	height: 12px;
}
	
.iosSlider2 .slider .button{
	width: 8px;
	height: 8px;
	padding:0;
	margin: 0 4px 0 0;
}
	
.prev {
	width: 30px;
	height: 30px;
	top: calc(50% - 15px);
	left:0px;
}

.next {
	width: 30px;
	height: 30px;
	top: calc(50% - 15px);
	right:0px;	
}
}
