/**
 * 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: -20px;
  text-align: center;
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-tap-highlight-color: transparent; }
.owl-theme .owl-nav button.owl-prev,.owl-theme .owl-nav button.owl-next {
  position: absolute;
  padding: 10px!important;
  outline: none;
  color: #f7931e;
  background-color: #ffecd5;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px -8px rgba(0,0,0,.15);
}
.owl-theme .owl-nav button.owl-prev.disabled:hover,.owl-theme .owl-nav button.owl-next.disabled:hover {
  color: #f7931e;
  background-color: #ffecd5;
}
.owl-theme .owl-nav button.owl-prev{left: -30px;}
.owl-theme .owl-nav button.owl-next{right: -30px}
@media(max-width: 576px){
  .owl-theme .owl-nav button.owl-prev{left: -20px;}
  .owl-theme .owl-nav button.owl-next{right: -20px}
}
/*.owl-theme .owl-nav button{}*/
.owl-theme .owl-nav button i {
  font-size: 16px;
}

  .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 {
      color: #fff;
      background-color: #f7931e;
      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 {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  margin-top: 10px;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  outline: none;
}
.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 50%;
  transform: scale(.8);
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--default);
  transform: scale(1);
}
