/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  margin:25px 0 0;
  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: #cad158; }
      
.owl-carousel .owl-item .item, .owl-carousel .owl-item img {
    border-radius: 10px;
}

.owl-carousel .owl-item .item {
    position:relative;
    z-index:1;
}

.owl-carousel .owl-item .item .play {
    position:absolute;
    background:url(../images/play.png) center no-repeat;
    width:47px;
    height:64px;
    margin: auto;
    top: 0;
    bottom: 0;    
    left: 0;
    right: 0;
    text-align: center;
    cursor:pointer;        
}

.owl-carousel .owl-stage-outer {
    -webkit-box-shadow: 0px 0px 40px 0px rgba(179,179,179,1);
    -moz-box-shadow: 0px 0px 40px 0px rgba(179,179,179,1);
    box-shadow: 0px 0px 40px 0px rgba(179,179,179,1);
    background:#d8d8d8;
    border-radius:10px;
}

.owl-carousel.review_text .owl-stage-outer {
    box-shadow: 0 0 50px 0 rgba(217, 217, 217, 0.85);
    -webkit-box-shadow: 0 0 50px 0 rgba(217, 217, 217, 0.85);
    -moz-box-shadow: 0 0 50px 0 rgba(217, 217, 217, 0.85);
    border-radius:34px;
    background:#fff;
}

.owl-carousel.review_text .owl-item .item {
    padding:20px 25px;
}

.owl-carousel.review_text .owl-item img {
    border-radius: 17px;
}

.owl-theme.review_text .owl-nav [class*="owl-"] {top:34%;}
.owl-theme .owl-dots {margin:0;}

.owl-prev {float:left;left:-65px;position:absolute;top:19%;}
.owl-next {transform: rotate(180deg);float:right;right:-65px;position:absolute;top:19%;}

@media screen and (max-width: 767px) {
    .owl-carousel {width:280px;margin:0 auto;}
    .owl-carousel .owl-item img {width:auto;}
    
    .owl-carousel.review_text .owl-item .item {padding:10;}
    .owl-carousel.review_text .owl-stage-outer {
        border-radius:12px;
    }
}

@media screen and (max-width: 539px) {
    .owl-theme .owl-nav [class*="owl-"] {width:14px;top:29%;}
    .owl-prev {left:-22px}
    .owl-next {right:-22px;}
    
    .owl-theme.review_text .owl-nav [class*="owl-"] {top:6%;}    
}