/**
 * 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: 10px;
  text-align: right;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
  color: rgb(var(--c-neutral-lightest));
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: rgb(var(--c-primary-lightest));
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 40px;
}

.owl-theme .owl-dots {
  display: flex;
  justify-content: 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: 8px;
  height: 8px;
  margin: 4px;
  background: rgb(var(--c-neutral-light));
  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 {
  width: 10px;
  height: 10px;
  margin: 3px;
  background: rgb(var(--c-brand-1));
}

.owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
}

.owl__prev,
.owl__next {
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  border-radius: 20px;
  background: rgb(var(--c-primary));
  cursor: pointer;
  transition: background ease .4s;
}

@media (hover: hover) {

  .owl__prev:hover,
  .owl__next:hover {
    background: rgb(var(--c-primary-dark));
  }
  .owl-theme .owl-nav .disabled:hover {
    opacity: 1;
  }
}

.owl-nav .font__far {
  color: rgb(var(--c-neutral-lightest));
  font-size: 25px;
  line-height: 40px;
}

.owl-carousel .owl-stage {
  display: flex;
}
