
/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
    -o-transform: translate3d(0px,0px,0px);
    transform: translate3d(0px,0px,0px);
    -webkit-transform: translate3d(0px,0px,0px);
    -moz-transform: translate3d(0px,0px,0px);
    -ms-transform: translate3d(0px,0px,0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls .owl-buttons div {
  position: absolute;
}
 
.owl-controls .owl-buttons .owl-prev{
  left: 10px;
  top: 50%; 
}
 
.owl-controls .owl-buttons .owl-next{
  right: 10px;
  top: 50%;
}
.owl-controls {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */

.owl-carousel  .owl-item{
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility:    hidden;
  -ms-backface-visibility:     hidden;
/*  -o-transform: translate3d(0px,0px,0px);
  transform: translate3d(0px,0px,0px);
  -webkit-transform: translate3d(0px,0px,0px);
  -moz-transform: translate3d(0px,0px,0px);
  -ms-transform: translate3d(0px,0px,0px);
*/}

/* OpenCart Code */
.owl-carousel {
	margin: 0 0 15px; 
	background: #fff; 
	border:medium none; 
	position: relative;
	border-radius: 0px; 
}
.owl-carousel .owl-buttons div {
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0; 
	color: rgba(0,0,0,0.8);
	text-shadow: 1px 1px 0 rgba(255,255,255,0.3);
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}
.owl-carousel:hover .owl-buttons div {
	opacity: 1;
	-webkit-opacity:1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
}
.owl-carousel .owl-buttons div i {
	display:none;
}

.owl-carousel .owl-buttons .owl-prev {
	background: url(../images/rect2.png) no-repeat scroll 0 3px transparent;
    font-size: 0;
    height: 40px;
    left: 10px;
    position: absolute;
    top: 45%;
    width: 50px;  
}
.owl-carousel .owl-buttons .owl-prev::before {
	background:url(../images/arrow2.png) no-repeat scroll 21px 15px transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 300ms ease 0s;
}
.owl-carousel .owl-buttons .owl-prev:hover::before {
    background:url(../images/arrow2.png) no-repeat scroll 9px 15px transparent;
}
.owl-carousel .owl-buttons .owl-next {
	background: url(../images/rect.png) no-repeat scroll 12px 3px transparent;
    font-size: 0;
    height: 40px;
    position: absolute;
    right: 10px;
    top: 45%;
    width: 50px;
}
.owl-carousel .owl-buttons .owl-next::before{
	background:url(../images/arrow.png) no-repeat scroll 1px 15px transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 300ms ease 0s;
}
.owl-carousel .owl-buttons .owl-next:hover::before {
    background: url(../images/arrow.png) no-repeat scroll 12px 15px transparent;
}
.owl-pagination {
	text-align: center;
	bottom: 30px;
	position: relative;
}
.owl-controls .owl-page {
	display: inline-block;
	margin: 0px 5px;
}
.owl-controls .owl-page span {
	display: block;
	width: 14px;
	height: 14px;
	background: url(../images/nav.png) no-repeat scroll -13px -27px transparent;
	border:1px solid #999;
}
.owl-controls .owl-page.active span,.owl-controls .owl-page:hover span  {
	display: block;
	width: 14px;
	height: 14px;
	background: url(../images/nav.png) no-repeat scroll 0px -27px transparent;
	transition: all 600ms ease 0s;
	border:1px solid #000;
}
