/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,
.owl-theme .owl-nav {
    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 {
    text-decoration: none;
    box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.42);
}

.owl-theme .owl-nav .disabled {
    opacity: .8;
    cursor: default
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0px
}
.owl-slider .owl-dots{
    position: absolute;
    top: 50%;
    right: 10%
}
.owl-theme .owl-dots .owl-dot {
    display: block;
    zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 7px 5px;
    background: #949493;
    text-align: center;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 100px;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 10px;
    height: 30px;
    background: #ed996b;
}


.owl-theme1 .owl-dot {
    display: inline-block;
    zoom: 1
}

.owl-theme1 .owl-dots {
    position: relative;
    text-align: center;
    margin: auto;
}

.owl-theme1 .owl-dots .owl-dot.active span {
    width: 30px;
    height: 10px;
    background: #ed996b;
}

.owl-theme1 .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 7px 5px;
    background: #f7d5c3;
    text-align: center;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 100px;
}






.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
    background: #ed996b;
    border-radius: 100px;
    width: 40px;
    height: 40px;
}
.owl-carousel .owl-nav button.owl-next{
    right: -20px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.owl-carousel .owl-nav button.owl-prev{
    left: -20px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.owl-carousel .owl-nav span{
    color: #fff;
    font-size: 30px;
    line-height: 25px
}

.owl-carousel .owl-nav button.owl-prev:hover span,
.owl-carousel .owl-nav button.owl-next:hover span
{
    color: #fff;

}