/**
 * 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: 0px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; 
}
.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 0px;
  padding: 0px 0px;
  display: inline-block;
  cursor: pointer;
}

.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;
  background: rgb(49 49 49 / 24%);
  height: 24px;
  border: none;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  display: inline; 
}
.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  /*background: #D6D6D6;*/
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
  border: 1px solid #fff;
}

.owl-carousel,.owl-item
{
  -ms-touch-action: pan-y!important;
  touch-action: pan-y!important;
}

.owl-carousel .owl-stage, .owl-carousel.owl-drag .owl-item{
  -ms-touch-action: auto!important;
  touch-action: auto!important;
}



.owl-stage {
  margin: 0 auto;
}

.owl-next, .owl-prev {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  margin: 0;
  line-height: 1;
  background: none;
  border: none;
  display: block;
  cursor: pointer;
  background-color: rgba(51, 51, 51, 0.6);
  padding: 10px !important;
}

.owl-next { 
  right: 10px;
}

.owl-prev { 
  left: 10px;
}

.owl-next:hover, .owl-prev:hover {
    background-color: rgba(51, 51, 51, 0.8);
}

.owl-next:focus, .owl-prev:focus {
  outline: none !important;
}

.owl-next i, .owl-prev i {
  font-size: 4rem;
  line-height: 1;
  padding: 0.5rem 0.3rem;
  border-radius: .3rem;
  color: var(--second);
  background: rgb(255 255 255 / 80%);
  /*background: rgb(82 82 162 / 19%);*/
}
.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
  background: #ffffff;
}

.owl-loaded .disabled {
  display: none;
}

.owl-dots{
  /*bottom: 2px;
  position: fixed;
  width: 99%;*/
  position: absolute;
  bottom: 10px;
  border: 1px solid #e4e4e4;
  right: 48%;
}




@media only screen and (max-width: 700px) {
  .owl-dots{
    display: none;
  }
/*
  .owl-next {
    position: absolute;
    right: 1rem !important;
    opacity: 0.5;
  }

  .owl-prev {
    position: absolute;
    left: 1rem !important;
    opacity: 0.5;
  }
  */
  .owl-next { 
    transform: translateX(15px);
  }

  .owl-prev { 
    transform: translateX(-15px);
  }

  .owl-nav{
    width:auto;
  }
}


