/**
 * 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: 0;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.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 {
    color: #ffffff;
    background-color: #ec1b23;
}

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

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

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    bottom: 5px;
    width: 100%;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
    height: auto;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 4px;
    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: #ec1b23;
}

.owl-carousel .owl-nav button.owl-next {
    margin: 0;
    box-shadow: 3px 0 3px 0 rgba(50, 50, 50, 0.2);
    border-radius: 5px 0 0 5px;
    height: 64px;
    width: 40px;
    transition: all 0.45s ease;
    color: #666666;
    border: none;
    position: absolute;
    cursor: pointer;
    font: 12px/15px Arial,Helvetica,sans-serif;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 1);
    right: 15px;
    left: auto;
    padding: 0;
    outline: 0;
    opacity: 0;

    -transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev {
    margin: 0;
    box-shadow: -3px 0 3px 0 rgba(50, 50, 50, 0.2);
    border-radius: 0 5px 5px 0;
    height: 64px;
    width: 40px;
    transition: all 0.45s ease;
    color: #666666;
    border: none;
    position: absolute;
    cursor: pointer;
    font: 12px/15px Arial,Helvetica,sans-serif;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 1);
    right: auto;
    left: 15px;
    padding: 0;
    outline: 0;
    opacity: 0;

    -transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.owl-carousel .owl-nav button i {
    font-size: 45px;
}

.owl-carousel.owl-loaded:hover .owl-nav .owl-prev {
    left: 0;
    opacity: 1;
}

.owl-carousel.owl-loaded:hover .owl-nav .owl-next {
    right: 0;
    opacity: 1;
}