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

/* Default theme - Owl Carousel CSS File */

.owl-theme .owl-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    display: grid;
    grid-template-columns: min-content 1fr min-content;
    grid-template-rows: 1fr;
    grid-template-areas:
        'owl-prev . owl-next';
    align-items: center;
    width: 100%;
    height: 0;
    -webkit-tap-highlight-color: transparent; }
.owl-theme .owl-nav [class*='owl-'] {
    margin: -15px 25px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer; }
.owl-theme .owl-nav [class*='owl-']:hover {
    background: url('../image/arrow-hover.svg'); }
.owl-carousel .owl-nav .owl-prev {
    grid-area: owl-prev;
    background: url('../image/arrow.svg');
    transform: rotate(180deg); }
.owl-carousel .owl-nav .owl-next {
    grid-area: owl-next;
    background: url('../image/arrow.svg'); }
.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 25px; 
    margin-bottom: 10px; }
.owl-theme .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    height: 60px;
    text-align: center;
    -webkit-tap-highlight-color: transparent; }
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
.owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 20px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px; }
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #868686; }
