/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */

.owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav {
    width: 100%;
    height: 23px;
    top: 0; bottom: 0;
    position: absolute;
    margin: auto;
    pointer-events: none;
	transform: scale(1.5);
}


.owl-theme .owl-nav [class*=owl-] {
    width: 25px;
    height: 25px;
    display: inline-block;
    background: url(/public/img/owl-arrow.png) no-repeat;
    color: #FFF;
    font-size: 0;
    cursor: pointer;
    vertical-align: bottom;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    /*background: #869791;
    color: #FFF;
    text-decoration: none*/
}

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

.owl-theme .owl-dots {
	width: 100%;
    height: 11px;
    bottom: 8%;
	position: absolute;
	margin: auto;
    pointer-events: none;
}
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    vertical-align: bottom;
    cursor: pointer;
    pointer-events: auto;
    height: 13px;
    vertical-align: top;
	width: 50px;
	transform: scale(3);
}

@media (min-width:320px){

    .owl-theme .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
        margin: 3px 5px;
        background: transparent;
        border: 2px solid #fff;
        display: block;
        -webkit-backface-visibility: visible;
        transition: opacity .2s ease;
        border-radius: 30px;

    }

}
@media (min-width:480px){

    .owl-theme .owl-dots .owl-dot span {
        width: 11px;
        height: 3px;
        margin: 5px 10px;
        background: transparent;
        background-color: #fff;
        border: none;
        display: block;
        -webkit-backface-visibility: visible;
        transition: opacity .2s ease;
        border-radius: 0px;

    }

}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #009a9d;
}