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

.owl-theme .owl-controls{
    z-index: 99999;
    text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: black;
	zoom: 1;
    display: inline-block;
    border-radius: 0;
	margin: 0;
}
.owl-theme .owl-controls .owl-buttons .owl-prev,
.owl-theme .owl-controls .owl-buttons .owl-next {
	width: 20px;
	height: 20px;
	border-left: 3px solid var(--black);
	border-bottom: 3px solid var(--black);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	bottom: -50px;
	right: 40px;
}
.owl-theme .owl-controls .owl-buttons .owl-next {
	right: 10px;
	border-left: 0;
	border-bottom: 0;
	border-right: 3px solid var(--black);
	border-top: 3px solid var(--black);
}
.owl-theme:hover .owl-controls .owl-buttons .owl-prev,
.owl-theme:hover .owl-controls .owl-buttons .owl-next {
	border-color: var(--army-green-light);
}
.owl-theme .owl-controls .owl-buttons .owl-prev:hover,
.owl-theme .owl-controls .owl-buttons .owl-next:hover {
	border-color: var(--army-green);
}
/* 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{
	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: 12px;
	height: 12px;
	margin: 15px 7px 0;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: black;
	border:1px solid white;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	background: #00adee;
	border:3px solid #00adee;
}

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

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}

@media (max-width:768px) {
    .owl-theme .owl-controls{
        top: 50vh;
        right: 50px;
    }
    .owl-theme .owl-controls .owl-page{
        zoom: 1;
        *display: block;/*IE7 life-saver */
    }
}