/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Green 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: #ffbf94;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #ff7100;
      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 {
      margin: 10px 20px;
      background: transparent;
      display: block;
      position: relative;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; 
    }
    .owl-theme .owl-dots .owl-dot span::after {
      content: "";
      display: inline-block;
      margin-left: 20px;
      vertical-align: middle;
      color: #EE2C65;
      background: #EE2C65 content-box;
      padding: 4px;
      border: 2px solid transparent;
      border-radius: 50%;
      width: 12px;
      height: 12px;
    }
    .owl-theme .owl-dots .owl-dot.active span::after,
    .owl-theme .owl-dots .owl-dot:hover span:after {
      content: "";
      display: inline-block;
      margin-left: 20px;
      vertical-align: middle;
      color: #EE2C65;
      background: #EE2C65 content-box;
      padding: 4px;
      border: 2px solid #EE2C65;
      border-radius: 50%;
      width: 12px;
      height: 12px;
    }
    .owl-theme .owl-dots .owl-dot span::before {
      position: absolute;
      content: "";
      height: 2px;
      width: 50px;
      background-color: #EE2C65;
      top: 10px;
      left: 50px;
      right: 0;
    }
    
    @media (max-width: 767px) {
      .owl-theme .owl-dots .owl-dot span {
        margin: 10px;
      }
      .owl-theme .owl-dots .owl-dot span:last-child::before {
        position: relative;
      }
    }
