/**
 * 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: 0px;
    padding: 0px 0px;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }

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



.owl-carousel,.owl-item
{
    -ms-touch-action: pan-y!important;
    touch-action: pan-y!important;
}

.owl-carousel .owl-stage, .owl-carousel.owl-drag .owl-item{
    -ms-touch-action: auto!important;
        touch-action: auto!important;
}



@media only screen and (max-width: 700px) {
    .owl-dots{
      display: none;
    }

  .owl-next {
    position: absolute;
    right: 1rem !important;
    opacity: 0.5;
  }

  .owl-prev {
    position: absolute;
    left: 1rem !important;
    opacity: 0.5;
  }

  .owl-nav{
    width:auto;
  }
}



.owl-stage {
  margin: 0 auto;
}

.owl-next, .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  line-height: 1;
  background: none;
  border: none;
  display: block;
  cursor: pointer;
}

.owl-next:focus, .owl-prev:focus {
  outline: none !important;
}

.owl-next { right: 0px; background:white; }

.owl-prev { left: 0px; background:white;}

.owl-next i, .owl-prev i {
  font-size: 1.5rem;
  color: #303030;
  line-height: 1;
  background:rgba(255,255,255,0.5);
  padding: .3rem;
  border-radius: .3rem;
}




