/**
 * 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: 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; }

.owl-theme .owl-dots {
  text-align: 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: 10px;
      height: 10px;*/
      width: 11px;
      height: 11px;
      margin: 5px 7px;
      /*background: #d7d7d7;*/
      background: transparent;
      background: url("../../images/carrouselDot.png") top right no-repeat;
      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 {
      /*background: #869791;*/
      background: url("../../images/carrouselDotActive.png") top right no-repeat;
      }



.owl-dots{
  position: absolute;
  bottom: 35px;
  left:25%;
  right:25%;
}

.owl-dot{
	outline: none;
}

.custom-prev{
    position: absolute;
    left: 10px;
    top: calc(50% - 14px);
    width: 18px;
    height: 28px;
    background: transparent;
    background: url("../../images/carrouselPrev.png") top right no-repeat;
    border:0px solid black;
    cursor: pointer;
    outline: none;
}
.custom-prev:hover{
    background: url("../../images/carrouselPrevActive.png") top right no-repeat;
}

.custom-next{
    position: absolute;
    right: 10px;
    top: calc(50% - 14px);
    width: 18px;
    height: 28px;
    background: transparent;
    background: url("../../images/carrouselNext.png") top right no-repeat;
    border:0px solid black;
    cursor: pointer;
    outline: none;
}
.custom-next:hover{
    background: url("../../images/carrouselNextActive.png") top right no-repeat;
}