/**
 * 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-carousel .owl-stage {
  padding: 8px 0px  0;
}
.owl-carousel .owl-item {
  padding: 0 10px;
}

.owl-carousel .owl-item.center {
  transform: scale(1.3);
  transition: all .5s;
}

 
.owl-carousel .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -20px;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  cursor: pointer;
  font-size: 0;
  width: 40px;
  height: 40px;
  background-size: cover;
  position: absolute;
  opacity: 0.4;
  
}

.owl-carousel .owl-nav button.owl-prev {
  background: url('../images/arrow-slider-left.png') center top no-repeat;
  background-size: cover;
  left: -20px;
}
.owl-carousel .owl-nav button.owl-next {
  background: url('../images/arrow-slider-right.png') center top no-repeat;
  background-size: cover;
  right: -20px;
}

.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover  {
  opacity: 1;
}

.owl-carousel  .owl-nav button.owl-prev:focus,
.owl-carousel  .owl-nav button.owl-next:focus {
  outline: none;
}

.owl-carousel .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}



.owl-carousel .owl-nav.disabled+.owl-dots {
  margin-top: 25px;
  position: relative;
  z-index: 2;
}

.owl-carousel .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-carousel .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-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  background: var(--green-text-color);
}







