/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 0 auto;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
.owl-theme .owl-nav [class*='owl-'] {
  position: relative;
  width: 40px;
  height: 40px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0;
  margin: 5px;
  padding-left: calc(20px + 2vw);
  padding-right: calc(20px + 2vw);
  border: 1px solid rgba(230, 230, 230, 0.6);
  background:  rgba(230, 230, 230, 0);
  display: inline-block;
  cursor: pointer;
  line-height: 40px;
  transition: all 0.4s ease 0s;
}
.owl-theme .owl-nav [class*='owl-']::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-family: 'fontawesome';
  font-size: 21px;
  font-weight: normal;
}
.owl-theme .owl-nav .owl-prev::before {
  content: '\f177';
}
.owl-theme .owl-nav .owl-next::before {
  content: '\f178';
}
.owl-theme .owl-nav [class*='owl-']:hover {
  border-color: rgba(0, 0, 0, 1);
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  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; }
.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: 5px 7px;
  background: #D6D6D6;
  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;
}



.owl-theme-variants .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.owl-theme-variants .owl-nav > div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
  display: block;
  width: 34px;
  height: 46px;
  background: #fff;
  line-height: 46px;
  border: 1px solid rgba(0, 0, 0, .0);
  text-align: center;
  transition: all 0.3s ease-in-out;

}

.owl-theme-variants .owl-nav > div.owl-prev {
  left: 5px;
}

.owl-theme-variants .owl-nav > div.owl-next {
  right: 5px;
}


.owl-theme-variants .owl-nav > div::before {
  display: inline-block;
  font-family: 'fontawesome';
  font-size: 18px;
  color: #555;
  font-weight: normal;
  transition: all 0.3s ease-in-out;
}

.owl-theme-variants .owl-nav > div.disabled {
  opacity: 0;
  visibility: hidden;
}


.owl-theme-variants .owl-nav > div.owl-prev::before {
  content: '\f177';
}

.owl-theme-variants .owl-nav > div.owl-next::before {
  content: '\f178';
}

.owl-theme-variants .owl-nav > div:hover {
  border-color: #000;
}

.owl-theme-variants .owl-nav > div:hover::before {
  color: #000;
}







.owl-theme .owl-dots {
  position: static;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .owl-theme .owl-dots {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
  }
}


.owl-theme .owl-dots .owl-dot span {
  width: 25px;
  height: 25px;
  background: #999;
  transition: all 0.3s ease-in-out;
  border: 9px solid #fff;
}

.owl-theme .owl-dots .owl-dot span:hover {
  background: #000;
  border-color: #fff; 
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.3); */
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #000;
  border-color: #fff;

}




