/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel .owl-dots,
.owl-carousel .owl-nav{
    text-align:center;
    -webkit-tap-highlight-color:transparent;
}

.owl-carousel .owl-nav{
    margin-top:10px;
}

.owl-carousel .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-carousel .owl-nav [class*=owl-]:hover{
    background:#869791;
    color:#FFF;
    text-decoration:none;
}

.owl-carousel .owl-nav.disabled{
    opacity:.5;
    cursor:default;
    display: none;
}

.owl-carousel .owl-nav.disabled+.owl-dots{
    margin-top:0px;
}

.owl-carousel .owl-dots .owl-dot{
    display:inline-block;
    zoom:1;
    border: 0;
    background-color: #fff0;
    margin-top: 10px;
}

.owl-carousel .owl-dots .owl-dot span{
    width:15px;
    height:15px;
    margin:5px 6px;
    background:#fff0;
    /*border: 1px #f4b920 solid;*/
    background: #fff;
    display:block;
    -webkit-backface-visibility:visible;
    transition:opacity .2s ease;
    border-radius:30px;
    opacity: .5;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span{
    background:#f4b920 ;
    opacity: 1;
}



.i_b1.owl-carousel .owl-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}


@media all and (max-width:768px){ 


.owl-carousel .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;
    margin: 2px 3px;
}

.i_b1.owl-carousel .owl-dots {
    bottom: -20px;
}



}

