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

.owl-carousel-wrapper {
	position: relative;
}
.owl-theme .owl-controls{
	text-align: center;
}
.owl-theme .owl-item .project-item {
	margin: 0 15px;
}


/* Styling Next and Prev buttons */

.owl-theme .owl-nav button{
	color: #FFF;
	display: none; /* hide for mobile */
	font-size: 14px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	line-height: 52px;
	position: absolute;
	top: 50%;
	margin-top: -30px;
	z-index: 1;
	opacity: 0;
    outline: none;
  	filter: alpha(opacity=0);
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}
.owl-theme .owl-nav button:before {
	position: absolute;
	top: -4px;
	right: -4px;
	bottom: -4px;
	left: -4px;
	z-index: 2;
	border-radius: 50%;
	background: rgba(255,255,255,.1);
	content:"";
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}
.owl-theme .owl-nav button:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: block;
	border-radius: 50%;
	background: red;
	background: #2f2f2f;
	content:"";
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}
.owl-theme .owl-nav button i {
	position: relative;
	display: inline-block;
	z-index: 3;
}
.owl-theme .owl-nav .owl-prev {
	left: 25px;
}
.owl-theme .owl-nav .owl-next {
	right: 25px;
}

@media (min-width: 768px) {
	.owl-theme .owl-nav button {
		display: block;
	}
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-nav button:hover{
	color: #2f2f2f;
}
	.owl-theme:hover .owl-nav button{
		opacity: 1;
	  	filter: alpha(opacity=100);
	}
	.owl-theme .owl-nav button:hover:before {
		background: rgba(0,0,0,.1);
	}
	.owl-theme .owl-nav button:hover:after {
		background: #fff;
	}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

.prev-btn, .next-btn {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    background: #373737;
    border: 1px solid #444;
    text-align: center;
    font-size: 18px;
    color: #aeaeae;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.prev-btn:hover, .next-btn:hover {
    text-decoration: none;
    background: #fff;
    border-color: #d9d9d9;
    cursor: pointer;
    color: #aeaeae;
}