﻿/**
 * 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 {
    /*margin-top: 10px;*/
    display:none;
}
.owl-theme .owl-nav:after{
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.owl-theme:hover .owl-nav {
    display:block;
}
.owl-theme.focus .owl-nav {
    display:block;
}

.owl-theme .owl-nav [class*=owl-] {
    color: #222;
    font-size: 1rem;
    margin: -57px 0 0 0;
    padding: 0 0;
    background: rgba(20,64,109,1);
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    width: 26px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    top: 50%;
    border: 2px solid rgba(255,255,255,0);
    text-align: center;
}

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

.owl-theme .owl-nav .disabled {
    opacity: .125;
    background: rgba(20,64,109,.75);
    cursor: default;
}

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

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    background: transparent;
    border: 2px solid rgba(255,255,255,0);
}
.owl-theme .owl-dots .owl-dot:focus{border: 2px dotted orange;}

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

.owl-theme .owl-dots .owl-dot:hover span{background: #cd2f2f;}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot.active:hover span{background: rgba(17,55,92,1);}
.owl-theme .owl-dots .owl-dot.active span{width: 12px;height: 12px;}

@media (max-width: 960px){
.owl-theme.focus .owl-nav, .owl-theme:hover .owl-nav {display:none;}
}