/**
 * 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: 48px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; 
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.owl-prev{
  width: 48px;
  height: 48px;
  display: block !important;
  border-radius: 50%;
  background: url(../../icons/left-arrow.svg) no-repeat center !important;
  background-size: 48px !important;  
  margin: 0 !important;
  opacity: 1;
  transition: .25s ease;
  cursor: pointer;
}

.owl-prev:hover{
  opacity: .6 !important;
  transition: .25s ease;
}

.owl-prev span{
  display: none;
}

.owl-next{
  width: 48px;
  height: 48px;
  display: block !important;
  border-radius: 50%;
  background: url(../../icons/right-arrow.svg) no-repeat center !important;
  background-size: 48px !important; 
  margin: 0 !important;
  opacity: 1;
  transition: .25s ease;
  cursor: pointer;
}

.owl-next:hover{
  opacity: .6 !important;
  transition: .25s ease;
}

.owl-next span{
  display: none;
}

  .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: 32px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
margin:0; }
  .owl-theme .owl-dots .owl-dot {
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #fff;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border: 1px solid #192482;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #192482; }
