/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin:0;
  text-align: center;
  -webkit-tap-highlight-color: transparent; 
}
  .owl-theme .owl-nav [class*='owl-'] {
   position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  background-color: rgba(255,255,255,1);
  border:1px solid #ccc; 
  z-index: 99;
  margin-top: -25px;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;

  -webkit-transition: all 0.4s ease-in-out;
   -moz-transition: all 0.4s ease-in-out;
   -o-transition: all 0.4s ease-in-out;
   -ms-transition: all 0.4s ease-in-out;
   transition: all 0.4s ease-in-out;
  }
  .owl-theme .owl-nav .owl-prev{left:-90px;}
  .owl-theme .owl-nav .owl-next{right:-90px;}

  .owl-theme .owl-nav .owl-prev .arrow-left,
  .owl-theme .owl-nav .owl-next .arrow-right{
    position: absolute;
    top: 50%;
    margin-top: -5px;

    width:10px;
    height:10px;
    vertical-align:top;
    cursor: pointer;
    border-width: 2px;
    border-color: #ac8f63
  }

  .owl-theme .owl-nav .owl-prev .arrow-left{left: 17px;}
  .owl-theme .owl-nav .owl-next .arrow-right{ left: 14px; }

  .owl-theme .owl-nav .owl-prev.disabled .arrow-left,
  .owl-theme .owl-nav .owl-next.disabled .arrow-right{ cursor: default; }

   
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.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; }

/*custom*/
.owl-product .owl-nav [class*="owl-"]{
  top: 37%
}
.owl-product-thumb{
  margin-top: 20px;
}
.owl-product-thumb .item{ background-color:#000000  }
.owl-product-thumb .item img{
  border: 1px solid #ccc;
  width: 100%;
  cursor: pointer;
  opacity: 0.65;
   -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}
.owl-product-thumb .item:hover img,
.owl-product-thumb .owl-item.current img{
  opacity: 1; 
  border-color:#767676;
} 