/**
 * 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-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .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 {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

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

/* Styling Next and Prev buttons */
.owl-nav {
  float: left;
  margin-top: 12px;
}

.owl-nav div {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  vertical-align: baseline;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  margin-top: 0;
  -webkit-transition: color .4s linear;
  -moz-transition: color .4s linear;
  -o-transition: color .4s linear;
  transition: color .4s linear;
  font-size: 1.3333333333333333em;
  color: var(--primary-color);
  border: solid 2px var(--primary-color);
  -webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
  font-size: 16px;
  text-align: center;
}

.owl-nav div.owl-next::before {
  content: "\f061";
}

.owl-nav div.owl-prev::before {
  content: "\f060";
}

.owl-nav div.owl-next {
  position: absolute;
  right: -42px;
  top: 50%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 50%, var(--secondary-color) 50%) right;
  background-size: 200%;
  transition: all .5s ease-out;
  margin-top: -10px;
}

.owl-nav div.owl-prev {
  position: absolute;
  left: -42px;
  top: 50%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, var(--secondary-color) 50%) left;
  background-size: 200%;
  transition: all .5s ease-out;
  margin-top: -10px;
}

.owl-nav div.owl-prev:hover {
    color: #FFFFFF;
    background-position: right;
    border: solid 2px var(--secondary-color);
    color: var(--dark-color);
}

.owl-nav div.owl-next:hover {
    color: #FFFFFF;
    background-position: left;
    border: solid 2px var(--secondary-color);
    color: var(--dark-color);
}

.owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
.owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
.owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
       }

/* Styling Pagination*/

.owl-dots {
  width: 100%;
  text-align: right;
  margin-top: 24px;
}

.inpage .owl-dots {
    position: inherit;
    bottom: 0;
    margin-top: 32px;
}

.owl-dots .owl-dot {
  display: inline-block;
}

.owl-dots .owl-dot span{
  margin: 5px 4px;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: solid 2px var(--light-color);
  text-indent: -9999px;
  overflow: hidden;
  background: none;
  overflow: hidden;
  }

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  cursor: pointer;
  border: solid 2px var(--light-color);
  background: var(--light-color);
}

@media only screen and (max-width: 1100px) {

.owl-nav div.owl-next {
  right: -42px;
}

.owl-nav div.owl-prev {
  left: -42px;
}

}

@media only screen and (max-width: 767px) {

.owl-dots .owl-dot span{
  width: 8px;
  height: 8px;
}

}
