.owl-carousel .owl-nav {
    -webkit-tap-highlight-color: transparent;
    position: relative;
    height: 0;
    margin: 20px 0 40px;
}
.owl-carousel .owl-nav [class*='owl-'] {
    color: rgba(255,255,255,0.6);
    font-size: 0px;
    display: block;
    line-height: 1;
    position: absolute;
    top: -20px;
}
.owl-carousel .owl-nav .owl-prev {
    left: 0;
    right: auto;
}
.owl-carousel .owl-nav .owl-prev::before {
    content: '';
    display: block;
    width: 60px;
    height: 40px;
    background-image: url('prev.svg');
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center;
    opacity: .5;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}
.owl-carousel.owl-arrows-dark .owl-nav .owl-prev::before {
    background-image: url('prev_dark.svg');
}
.owl-carousel .owl-nav .owl-next {
    left: auto;
    right: 0;
}
.owl-carousel .owl-nav .owl-next::before {
    content: '';
    display: block;
    width: 60px;
    height: 40px;
    background-image: url('next.svg');
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center;
    opacity: .5;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}
.owl-carousel.owl-arrows-dark .owl-nav .owl-next::before {
    background-image: url('next_dark.svg');
}
.owl-carousel .owl-nav [class*='owl-']:hover {
    color: #fff;
    text-decoration: none;
    opacity: 1;
}
.owl-carousel .owl-nav [class*='owl-']:hover::before {
    opacity: .9;
}
.owl-carousel .owl-nav .disabled {
    opacity: 0.1 !important;
    cursor: default;
}
.owl-carousel .owl-nav .disabled::before {
    cursor: default !important;
}
.owl-carousel .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}

.owl-carousel .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}
.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    display: inline;
}
.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #fff;
    display: inline-block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 50%;
    opacity: .3;
}
.owl-carousel .owl-dots .owl-dot.active span {
    opacity: 1;
}
.owl-carousel .owl-dots .owl-dot:hover span {
    opacity: .75;
}

.owl-dots-in .owl-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
}
.owl-dots-out .owl-dots {
    position: relative;
    left: 0;
    right: 0;
    padding: 10px 0 5px;
}
.owl-arrows-in .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: 0;
}.owl-arrows-out {
    padding: 0;
}
.owl-arrows-out .owl-nav {
    position: absolute;
    top: 50%;
    right: -8px;
    left: -8px;
    margin: 0;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}
.owl-arrows-out .owl-nav [class*='owl-']::before {
    width: 36px;
    height: 36px;
    -webkit-background-size: 20px;
    background-size: 20px;
    opacity: 1;
}
.owl-arrows-out .owl-nav [class*='owl-'] {
    background: #f79d12;
    opacity: .9;
    border-radius: 2px;
    top: -18px;
}
.owl-arrows-out .owl-nav [class*='owl-']:hover {
    background: #f78812;
    opacity: 1;
}
@media (min-width: 992px) {
    .owl-arrows-out .owl-nav {
        opacity: 0;
        visibility: hidden;
    }
    .owl-arrows-out:hover .owl-nav {
        opacity: 1;
        visibility: visible;
    }
}
.owl-no-dots .owl-dots,
.owl-no-arrows .owl-nav {
    display: none !important;
}
.owl-thumbs {
    position: relative;
}
.owl-big {
    padding: 0;
    border: none;
}
.owl-small {
    margin: 4px -4px 0;
}
.owl-small .owl-item {
    padding: 4px;
    width: 25%;
    opacity: .5;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    position: relative;
    cursor: pointer;
}
.owl-small .owl-item img {
    display: block;
}
.owl-small .owl-item:hover {
    opacity: .75;
}
.owl-small .owl-item.active {
    opacity: 1;
}