/**
 * 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 {
  margin-bottom: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
	position: absolute;
	top: 50%;
	text-indent: -9999px;
    margin-top: -20px;
    display: block;
    cursor: pointer;  
    width: 40px;
    height: 40px;
    background-position: top;
    background-size: 40px;
  }
  
  .owl-theme .owl-nav .owl-prev { background-image: url('../../img/arrows/solid_black_lt.png'); left: -10px; }
  .owl-theme .owl-nav .owl-next { background-image: url('../../img/arrows/solid_black_rt.png'); right: -10px; }
      
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-bottom: 10px; }

.owl-theme .owl-dots {
  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: 20px;
      height: 5px;
      margin: 10px 4px;
      background: #8b8788;
      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: black; }

.owl-carousel .owl-item .owl-lazy {
	opacity: 1 !important;
}

@media (max-width:980px) { 
	.owl-theme .owl-dots .owl-dot span {
		width: 14px;
		height: 4px;
		margin: 10px 2px;
	}
}