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

.owl-theme .owl-controlls{
    margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controlls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controlls.clickable .owl-buttons div:hover{
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controlls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controlls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controlls .owl-page.active span,
.owl-theme .owl-controlls.clickable .owl-page:hover span{
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controlls .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;
}

/* new work */

.bx_rb.tab.owl-carousel.owl-theme > .owl-controlls > .owl-buttons > .owl-prev {
	left: -2px;
    position: absolute;
    top: -222px;
    width: 40px;
    height: 40px;
    padding: 0;
    line-height: 1.1;
}

.bx_rb.tab.owl-carousel.owl-theme > .owl-controlls > .owl-buttons > .owl-prev:before {
	content: '\f104';
	font-family: FontAwesome;
	font-size: 35px;
    margin-left: -1px;
}

.bx_rb.tab.owl-carousel.owl-theme > .owl-controlls > .owl-buttons > .owl-next {
	right: -5px;
    position: absolute;
    top: -222px;
    width: 40px;
    height: 40px;
    padding: 0;
    line-height: 1.1;
}

.bx_rb.tab.owl-carousel.owl-theme > .owl-controlls > .owl-buttons > .owl-next:before {
	content: '\f105';
	font-family: FontAwesome;
	font-size: 35px;
    margin-left: 4px;
}

.bx_rb.tab.owl-carousel.owl-theme > .owl-controlls > .owl-buttons > .owl-prev.disabled,
.bx_rb.tab.owl-carousel.owl-theme > .owl-controlls > .owl-buttons > .owl-next.disabled {
	display: none;
}

