
/* 
 *  Core Owl Carousel CSS File
 *  v1.3.3
 */

 /* 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;
  -webkit-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 {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

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

@keyframes swingleft {
  from {
    margin-left: -5px;
  }

  to {
    margin-left: 5px;
  }
}
@keyframes swingright {
  from {
    margin-right: -5px;
  }

  to {
    margin-right: 5px;
  }
}

.next_button{
  z-index: 1;
  width: 46px;
  height: 46px;
  line-height: 42px;
  text-align: center;
  color: #fff;
  background: #000;
  font-size: 26px;
  transition: .5s;
  display: inline-block;
  margin: 10px;
}
.owl-buttons{
  text-align: center;
}
.owl-prev, .owl-next{
  display: inline-block;
}
.product_main_page .next_button{
  right: 0px;
}
.next_button i{
	position:relative;
  display: block;
  line-height: 44px;
}
.next_button:hover{
  background: #fff;
  color: #000;
}
.prev_button{
    z-index: 1;
    width: 46px;
    height: 46px;
    line-height: 42px;
    text-align: center;
    color: #fff;
    background: #000;
    font-size: 26px;
    transition: .5s;
    display: inline-block;
    margin: 10px;
}
.product_main_page .prev_button{
  left: 0px;
}
.prev_button i{
  position:relative;
  display: block;
  line-height: 44px;
}
.prev_button:hover{
  background: #fff;
  color: #000;
}
#co1 .next_button{
  color:#fff;
}
#co1 .prev_button{
	color:#fff;
}
.next_button img{
	position:relative;
	left:5px;
	top:3px;
}


.owl-pagination{
    text-align: center;
    position: absolute;
    bottom: 0px;
    width: 80%;
	margin:0px 10%;
	padding:20px 0px;
    display: block;
	background-color:#fff;
}
.owl-page{
  display: inline-block;
  border:2px solid #ee9701;/*Orange*/ 
  border-radius:50%;
  margin:0px 5px;
    box-shadow:3px 3px 10px 2px rgba(0,0,0,0.15);  
}
.owl-page span{
  width: 22px;
  height: 22px;
  display: block;
  margin: 0px 0px;
  background: #fff;
  border-radius: 50%;
}
.owl-page.active span{
  background:#ee9701;/*Orange*/ 
  border:2px solid #ee9701;/*Orange*/ 
}
.owl-page.active{
    box-shadow:3px 3px 10px 2px rgba(0,0,0,0.35);	
}