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

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

/* Styling Next and Prev buttons */

.owl-theme00 .owl-controls .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;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme00 .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: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	background: #869791;
	/*
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	*/
}

.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; it hides when it's 1?*/
	opacity: 0.9;
}

/* 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
}
/* Whale Extra */

.owl-theme .item{
	margin-right:5px;
	margin-left:5px;
	text-align: center;
	border-radius: 3px;
	/*
	padding: 30px 0px;
	*/
}
.owl-theme .item p{
	margin: 0px!important;
}

.owl-theme .item p,
.owl-theme .item h1,
.owl-theme .item h2,
.owl-theme .item h3,
.owl-theme .item h4,
.owl-theme .item h5,
.owl-theme .item h6,
.owl-pagination
{
	text-align: center;
}

/*to works fine when have bg carousel color*/
/*
.owl-theme .owl-controls{
	padding-bottom: 5px;
}
*/

/*responsive caption*/
@media (max-width:767px){
    .whale-owl-responsive-caption .item-header{
        font-size:5vw!important;
    	margin-top: 0px;
    	margin-bottom: 5px;        
    }
    .whale-owl-responsive-caption .item-description{
        font-size:2vw!important;
    	margin-top: 0px;
    	margin-bottom: 5px;        
    }
    .whale-owl-responsive-caption .item-btn{
        font-size:3vw!important;
    	padding: 5px 10px!important;
    	margin-top: 5px!important;
    }
}

/*next/prev nav buttons (img)*/
/*
.owl-theme .owl-controls .owl-buttons div{
	opacity: 0;
    transition: all 0.3s ease 0s;

	background-color: transparent;
	background-repeat: no-repeat;;
	background-position: center;
	top: 50%;
	margin-top:-25px;
	display: inline-block;
	position: absolute;
	padding: 3px 10px;
	height: 25px;
	color: transparent;
}
.owl-theme .owl-controls .owl-buttons div.owl-prev {
    left: 10px;
	background-image: url(prev-1.png);
}
.owl-theme .owl-controls .owl-buttons div.owl-next {
    right: 10px;
	background-image: url(next-1.png);
}

.owl-theme:hover .owl-controls .owl-buttons div{
	opacity: 1;
}
*/
/*css*/
.owl-theme .owl-controls .owl-buttons div{
	opacity: 0;
    transition: all 0.3s ease 0s;
	color: transparent;
	position: absolute;
	top: 50%;
	
	display: inline-block;

    border-top: solid 2px #666666;
    border-right: solid 2px #666666;
    width: 20px;
    height: 20px;
    margin-top:-10px;
    /*
    border-width:12px;
    border-color:red;
	*/
}
.owl-theme .owl-controls .owl-buttons div.owl-prev {
    left: 25px;
	-webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}
.owl-theme .owl-controls .owl-buttons div.owl-next {
    right: 25px;
	-webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.owl-theme:hover .owl-controls .owl-buttons div{
	opacity: 1;
}

/*Button*/
.owl-theme .item a.item-btn{
  display: inline-block;
  margin-top:10px;
  text-decoration: none;
  transition: 200ms;
  border-style: solid;

  background-color: rgba(255,255,255,0);
  color: white!important;
  border-width: 1px;
  border-color: white;
  border-radius: 0px;
  padding: 12px 30px;
}
.owl-theme .item a.item-btn:hover {
  background-color: rgba(255,255,255,1);
  color: black!important;
  border-width:1px;
  border-color: white;
  border-radius:0px;
  padding: 12px 30px;
}

/*Progress Bar*/
#progressBar{
  width: 100%;
  background: #ededed;
}        
#bar{
  width: 0%;
  max-width: 100%;
  height: 4px;
  background: #7fc242;
}