/**
 * 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-carousel {
  width: auto !important;
}

.owl-theme.center .owl-item {
  opacity: 0.2;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.owl-theme.center .owl-item.center {
  opacity: 1;
}

.owl-theme .owl-nav:not(.disabled) {
  cursor: default;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav:not(.disabled) [class*="owl-"] {
  opacity: 0.5;
  color: #fff;
  font-size: 50px;
  bottom: 0;
  height: 100%;
  text-shadow: 0 1px 2px black;
  background-image: -webkit-gradient(linear, left top, right top, from(#0000), to(#0000));
  background-image: linear-gradient(0.25turn, #0000, #0000);
  cursor: pointer;
  -webkit-transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), color 0.01s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), color 0.01s cubic-bezier(0.075, 0.82, 0.165, 1);
  outline: none;
  /* border-radius: 3px; */
  position: absolute;
}

.owl-theme .owl-nav:not(.disabled) [class*="owl-"]:hover {
  opacity: 1;
  color: #fff;
  text-decoration: none;
}

.owl-theme .owl-nav:not(.disabled) .owl-next {
  right: 0;
  padding: 0 15px 0 20px !important;
}

.owl-theme .owl-nav:not(.disabled) .owl-next:hover {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #0000), color-stop(150%, #0005));
  background-image: linear-gradient(0.25turn, #0000 30%, #0005 150%);
}

.owl-theme .owl-nav:not(.disabled) .owl-prev {
  left: 0;
  padding: 0 20px 0 15px !important;
}

.owl-theme .owl-nav:not(.disabled) .owl-prev:hover {
  background-image: linear-gradient(-0.25turn, #0000 30%, #0005 150%);
}

.owl-theme .owl-dots:not(.disabled) {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
}

.owl-theme .owl-dots:not(.disabled) .owl-dot {
  display: inline-block;
  zoom: 1;
  outline: none;
  /* *display: inline; */
}

.owl-theme .owl-dots:not(.disabled) .owl-dot span {
  width: 15px;
  height: 11px;
  margin: 7px;
  background: #ddd;
  display: block;
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid #bbb;
  z-index: 666;
  -webkit-transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), color 0.01s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1), color 0.01s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.owl-theme .owl-dots:not(.disabled) .owl-dot.active span {
  background: #c0374b;
  border-bottom: 4px solid #a4293b;
  z-index: 668;
}

.owl-theme .owl-dots:not(.disabled) .owl-dot:hover span {
  background: #fafac0;
  border-bottom: 4px solid #c9c981;
  z-index: 667;
}
/*# sourceMappingURL=owl.theme.image.css.map */