/**
 * 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 {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
  left: 0;
  margin: auto;
}
  .owl-theme .owl-nav [class*='owl-'] {
    position: absolute;
    bottom: 0;
    margin: auto;
    outline: 0;
  }

.owl-theme .owl-nav [class*='owl-'] span {
  display: block;
  color: #fff;
  border: 2px solid #fff;
  font-size: 30px;
  width: 30px;
  height: 40px;
  -webkit-transition: background-color 0.6s ease, color 0.6s ease;
  -moz-transition: background-color 0.6s ease, color 0.6s ease;
  -ms-transition: background-color 0.6s ease, color 0.6s ease;
  -o-transition: background-color 0.6s ease, color 0.6s ease;
  transition: background-color 0.6s ease, color 0.6s ease;
}

  .owl-theme .owl-nav [class*='owl-']:hover span {
    background-color: #fff;
    color: #000;
  }

.owl-carousel .owl-nav .owl-prev {
  left: 10px;
}

.owl-carousel .owl-nav .owl-next {
  right: 10px;
}

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


.owl-theme .owl-dots {
  position: absolute;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 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: #869791; }

    .owl-theme .owl-stage-outer,
    .owl-theme .owl-stage-outer .owl-stage,
    .owl-theme .owl-stage-outer .owl-stage .owl-item {
      height: 100%;
    }
.owl-theme .owl-carousel-slide {
      width: 100%;
      height: 100%;
      background: no-repeat center / cover;
    }