/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700);

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
	position: relative;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #000;
	display: inline-block;
	zoom: 1;
	*display: inline;
	margin:0;
	padding: 0;
	font-size: 36px;
	position: absolute;
	bottom: 20px;
}
.owl-theme .owl-controls:before {
	content: 'STYLES';
	text-align: center;
	position: absolute;
	right: 40px;
	bottom: 20px;
}
.owl-theme .owl-controls .owl-buttons .owl-prev {
	right: 100px;
	border-left: 5px solid black;
	border-top: 5px solid black;
	width: 20px;
	height: 20px;
	transform: rotate(-45deg);
}
.owl-theme .owl-controls .owl-buttons .owl-next {
	right: 20px;
	border-right: 5px solid black;
	border-bottom: 5px solid black;
	width: 20px;
	height: 20px;
	transform: rotate(-45deg);
}
/* 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{
	text-decoration: none;
	opacity: .5;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline-block;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: inline-block;
	width: 40px;
	height: 30px;
	border-radius: 5px;
	margin: 5px;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	border: 2px solid black;
}

/* 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;
	display: none;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}


@media (max-width: 1024px) {
	.owl-theme .owl-controls:before {
		bottom: 160px;
		color: white;
		font-weight: bold;
	}
	.owl-theme .owl-controls .owl-buttons div{
		bottom: 160px;
	}
	.owl-theme .owl-controls .owl-buttons .owl-prev {
		border-left: 5px solid white;
		border-top: 5px solid white;
	}
	.owl-theme .owl-controls .owl-buttons .owl-next {
		border-right: 5px solid white;
		border-bottom: 5px solid white;
	}
}