/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	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; */
    color: #061937;
    font-size: 1em;
    /* margin: 5px; */
    /* background: #000; */
    background: #fff;
    display: inline-block;
    cursor: pointer;
    opacity: .75;
    transition: opacity .2s;
}
.owl-theme .owl-nav [class*='owl-']:hover {
    opacity: 1;
    text-decoration: none; }
.owl-theme .owl-nav .disabled {
    opacity: 0.75;
    cursor: default; }

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

.owl-theme .owl-dots {
  background: rgba(0,0,0,.1);
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
}
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}
.owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #fff;
      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: #ed1c24; 
}

.owl-carousel {
position: relative;
}
.owl-prev,
.owl-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
border-radius: 0px;
font-size: 3em !important;
/* width: 1.5em; */
height: 2.5em;
line-height: 2.5em;
text-align: center;
/* border-radius: 50%; */
}
.owl-prev {
left: 0;
border-radius: 0 10px 10px 0;
}
.owl-next {
right: 0;
border-radius: 10px 0 0 10px;
}

.owl-stage {
transition: 0.8s !important;
}

@media screen and (max-width: 600px){
.owl-prev,
.owl-next {
font-size: 2em !important;
height: 3em;
line-height: 3em;
text-align: center;
}

.owl-dots {
  display: none;
} 

}
