/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  top: 40%;
  width: 100%;
}
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 60px;
    padding: 5% 7px;
    display: inline-block;
    cursor: pointer;
    position: absolute;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.3);
    -webkit-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
  }
  @media (max-width: 480px) {
    .owl-theme .owl-nav [class*='owl-'] {
      font-size: 40px;
      padding: 5% 7px;
    }
  }
  .owl-theme .owl-nav .owl-prev {
    left: 15px;
  }
  .owl-theme .owl-nav .owl-next {
    right: 15px;
  }
    .owl-theme .owl-nav [class*='owl-']:hover {
      text-decoration: none;
      text-shadow: 1px 1px 6px rgba(0,0,0,0.8);
     }
  .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;
  position: absolute;
  bottom: 10px;
  width: 100%;
}
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      -webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.4);
      -moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.4);
      box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.4);
      width: 30px;
      height: 6px;
      margin: 5px 3px;
      background: white;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #ffc600; }
