/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top:40px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }

  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 34px;
    background: #e42f46;
    display: inline-block;
    cursor: pointer;
    border-radius: 0px; 
    -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
   }
    .owl-theme .owl-nav .owl-prev{ right: 40px }
    .owl-theme .owl-nav .owl-next{right: 0px}

    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #c60019;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 50px; }

.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;
    width: 35px;
    text-align: center;
    }
    .owl-theme .owl-dots .owl-dot span {
      width: 13px;
      height: 13px; 
      background: #ee8080;
      display: inline-block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px;
      position: relative;
    }
    .owl-theme .owl-dots .owl-dot span:before{
      content: '';
      position: absolute;
      top: -5px;
      bottom: -5px;
      left: -5px;
      right: -5px;
      border:2px solid transparent;
      border-radius: 50%; 

      -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
       -o-transition: all 0.2s ease-in-out;
       -ms-transition: all 0.2s ease-in-out;
       transition: all 0.2s ease-in-out;
    }
    .owl-theme .owl-dots .owl-dot.active span:before, 
    .owl-theme .owl-dots .owl-dot:hover span:before {
      border:2px solid #e42f46;
    }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #e42f46; }
