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

.owl-theme .owl-controls{
	margin-top: -20px;
	text-align: center;
	line-height: 1;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div {
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 0;
	padding: 5px 10px;
	font-size: 36px;
	bottom: calc(50% - 15px);
	background: #fff;
	position: absolute;
	filter: Alpha(Opacity=90);/*IE7 fix*/
	opacity: 0;
}
.owl-theme:hover .owl-controls .owl-buttons div {
	opacity: 1;
}
.owl-theme .owl-controls .owl-buttons .owl-next {
    right: 0;
}
.owl-theme .owl-controls .owl-buttons .owl-prev {
    left: 0;
}
/* 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{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* 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: 8px;
	height: 8px;
	margin: 3px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #ccc;
}

.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;
}
.owl-theme .owl-pagination {
    background-color: rgba(255,255,255,0.9);
    line-height: inherit;
    position: relative;
    padding: 5px 15px;
    display: inline-block;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    margin: auto;
    opacity: 1;
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
.owl-theme.slider .text {
	font-size: 24px;
	line-height: 150%;
	font-weight: 400;
	letter-spacing: .015em;
	text-transform: none;
	margin-top: 20px;
	margin-bottom: 0;
	transition: font 200ms ease-out, margin 200ms ease-out;
}
.owl-theme.slider .item {
	height: 44vh;
	background-color: #FFF;
	background-position: center 50%;
	background-size: cover;
}
.owl-theme.slider .caption {
	display: table-cell;
	padding: 10%;
}
.owl-theme.slider .caption.text-center {
    padding-left: 10%;
    padding-right: 10%;
}
.owl-theme.slider .caption.vertical-center {
    vertical-align: middle;
    padding-bottom: 3vh;
}