/**
 * 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 button {
  background: none !important;	outline: none !important;

}

.owl-theme button:hover,
.owl-theme button:active,
.owl-theme button:focus {
	outline: none !important;
}

.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 40px;
}

.trpp-owl-carousel[data-auto-height="visible-items"] .owl-nav {
  transform: none;
  left: 0;
  margin-top: -25px !important; 
}

.owl-theme[data-dots="on"] .owl-nav  {
  margin-top: -15px;
}

.owl-theme .owl-nav .owl-prev ,
.owl-theme .owl-nav .owl-next {
  margin:0 !important;
}

.owl-theme .owl-nav .owl-prev {
  position: absolute;
  left: -20px;
}

.owl-theme .owl-nav .owl-next {
  position: absolute;
  right: -20px;
}

.owl-theme .owl-nav .owl-prev span ,
.owl-theme .owl-nav .owl-next span {
  font-size: 40px;
  margin:0;
  line-height: 1;
  color:#ddd;
  -webkit-transition: color .3s ease;
	-moz-transition: color .3s ease;
	-o-transition: color .3s ease;
	transition: color .3s ease;
}

.owl-theme .owl-nav [class*='owl-'] {
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  text-decoration: none;
}

.owl-theme .owl-nav .owl-prev:not(.disabled):hover span ,
.owl-theme .owl-nav .owl-next:not(.disabled):hover span {
  color:#869791;
}

.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;
  height: 30px;
}

.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: 10px 7px;
  background: #dddddd;
  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;
}