/*
* 	Owl Carousel Owl Demo Theme 
*	v1.15
*/

.owl-theme .owl-controlls{
  
	text-align: center;
	position: absolute;
	width: 100%;
	bottom: 0; 
}
.owl-theme .owl-controlls2{
	position: absolute;
	width: 100%;
	bottom: 50%; 
}
/* Styling Next and Prev buttons */

.owl-theme .owl-controlls2 .owl-buttons div {
    color: #FFF;
    display: inline;
    padding: 10px;
    font-size: 50px;
    cursor: pointer;
    border: none;
    height: 620px;
    top: -315px;
}
/* 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;
}

.owl-carousel .owl-prev {
    background: url(../../../images/icon/pregall.png) no-repeat center;
    position: absolute;
    margin: auto !important;
	width: 5%;
	left: -10px;
}

.owl-carousel .owl-next {
    right: 0;
	width: 5%;
    background: url(../../../images/icon/nextgall.png) no-repeat center;
    position: absolute;
    margin: auto !important;
}
/* Styling Pagination*/

.owl-theme .owl-controlls .owl-page{
	display: inline-block;
	zoom: 1;
}
.owl-theme .owl-controlls .owl-page span{
	display: block;
	margin: 5px 6px;
	background: #37b1ec;
	width: 12px;
	border: 2px solid #37b1ec;
	height: 12px;
	margin-bottom: 0;
	border-radius: 50%;

}

.owl-theme .owl-controlls .owl-page.active span{
	background: #ffffff;
	border: 2px solid #37b1ec;
	
}
.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;
}

@media screen and (max-width: 414px) {
	.owl-theme .owl-controlls {
    bottom: 5px;
}
}

