/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls{
	position: absolute;
    right: 17px;
    width: 40px;
    top: 50%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div {
	color: #FFF;
	display: inline-block;
	zoom: 1;
	margin: 5px;
	padding: 3px 13px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #dddddd;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	background: #b0976d;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
}
.owl-theme .owl-controls .owl-page span {
    position: relative;
	display: block;
	width: 10px;
	height: 10px;
	margin: 12px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	background: #dddddd;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.owl-theme .owl-controls .owl-page span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
	height: 10px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	background: #dddddd;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	background: #b0976d;
}

.owl-theme .owl-controls .owl-page.active span:before,
.owl-theme .owl-controls.clickable .owl-page:hover span:before {
	background: #b0976d;
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.html) no-repeat center center
}


/* OWL responsive */

@media (max-width: 1200px) {
    .owl-theme .owl-controls{
        right: 7px;
    }
}

@media (max-width: 768px) {
    .owl-theme .owl-controls{
        right: 4px;
    }
}
