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

.owl-theme .owl-wrapper-outer {
    overflow: visible !important;
}

.owl-theme .owl-controls .owl-buttons div {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	padding: 0 2%;
	text-align: center;
}
.owl-theme .owl-controls .owl-buttons div:before {
	content: '.';
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	width: 0;
	overflow: hidden;
}

.owl-theme .owl-controls .owl-buttons div span {
	display: inline-block;
	width: 50px;
	height: 50px;
	background: red;
	overflow: hidden;
	text-indent: -100em;
	transition: all .2s linear;
	background: url(../customization/icon_sprite.png) 0 -304px;
	*display:block; /*IE7*/
	*position: relative; /*IE7*/
	*top: 48%; /*IE7*/
}

.owl-theme .owl-controls .owl-buttons div.owl-next {
	left: auto;
	right: 0;
}

.owl-theme .owl-controls .owl-buttons div.owl-next span {
	background-position: 0 -254px;
}


/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	opacity: 0.5;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* 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;
}

.owl-theme .owl-item {
	opacity: .3;
	filter: Alpha(Opacity=30);/*IE7 fix*/
	transition: opacity .5s linear;
}

.owl-theme .owl-item.active {
	opacity: 1;
	filter: Alpha(Opacity=100);/*IE7 fix*/
}

/* preloading images */
.owl-theme .owl-item.loading {
	min-height: 150px;
}

.owl-theme .owl-item.loading img {
    display: inline !important;
}