/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}
.owl-carousel .owl-nav.disabled{
    opacity: 0;
}
.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 {
    background: #869791;
    color: #FFF;
    text-decoration: none;
}
.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}
.owl-theme .owl-dots {
    display: inline-flex;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    margin-left: auto;
    margin-right: auto;
}
.owl-theme .owl-dots .owl-dot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid transparent;
    outline: none !important;
    margin: 0 20px;
}
.owl-theme .owl-dots .owl-dot:first-child{
    margin-left: 0;
}
.owl-theme .owl-dots .owl-dot:last-child{
    margin-right: 0;
}
.owl-theme .owl-dots .owl-dot.active{
    border: 1px solid #FED166;
    background-color: #fff;
}
.owl-theme .owl-dots .owl-dot span {
    display: block;
    position: relative;
    width: 6px;
    height: 6px;
    background: #000;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 50%;
    outline: none !important;
    padding: 0;
}
.owl-theme .owl-dots .owl-dot.active span{
    background: #FED166;
}
.owl-theme .owl-dots .owl-dot:hover span {
    background: #FED166;
}

/*DimONE*/
.owl-dots::before{
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 50%;
    width: calc(100% - 20px);
    height: 1px;
    background-color: rgba(0, 0, 0, 0.15);
    margin-left: 10px;
    margin-right: 10px;
}