/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
 :root {
   --main-color-one: #EE7826;
   --main-color-two: #C84792;
   --main-color-three: #22A7DD;
   --main-color-four: #808080;

   --main-color-five: #E6E6E6;
   --main-color-six: #333333;

   --main-color-whatsapp: #44A42A;
 }
.owl-theme .owl-dots,.owl-theme .owl-nav{
  text-align:center;
  -webkit-tap-highlight-color:transparent
}
.owl-theme .owl-nav [class*=owl-] i{
  color: white;
  font-size:14px;
  margin:0;padding:.6rem 1rem;
  background: var(--main-color-one);
  display:inline-block;
  cursor:pointer;
  border-radius:1rem;
  position: relative;
}
.owl-theme .owl-nav .owl-prev, .owl-theme .owl-nav .owl-next{
  position: absolute;
  top: 40%;
}
.owl-theme .owl-nav .owl-prev{
  left: -3%;
}
.owl-theme .owl-nav .owl-next{
  right: -3%;
}
.owl-theme .owl-nav [class*=owl-]:hover i{
  background:var(--main-color-six);
  color:white;
  text-decoration:none
  }
  .owl-theme .owl-nav .disabled{
    opacity:.5;
    cursor:default
  }
  .owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}
  .owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}
  .owl-theme .owl-dots .owl-dot span{
    width:13px;
    height:13px;
    margin:5px 7px;
    background:var(--main-color-one);
    display:block;
    -webkit-backface-visibility:visible;
    transition:opacity .2s ease;
    border-radius:30px
  }
  .owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{
    background:var(--main-color-six);
  }
