/**
 * 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: 0px
}

.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;*/
    background-color: rgba(255, 255, 255, 0.9);
    color: #FFF;
    text-decoration: none
}

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

.owl-theme .owl-nav.disabled+.owl-dots {
/*    margin-top: 10px*/
    position: absolute;
    bottom: 29px;
    left: 20%;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    background: none;
}

.owl-theme .owl-dots .owl-dot span {
    width: 53px;
    height: 2px;
    margin: 5px 7px;
    background-color: rgba(0, 117, 207, 0.3);
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
/*    border-radius: 30px*/
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: rgba(0, 117, 207, 1);
}

/* CUSTOM */

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    margin: 0;
    position: absolute;
    top: 0;
    height: 100%;
    width: 80px;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 0;
    background-repeat: no-repeat;
    background-size: 46px;
    background-position: center;
    display: block;
    outline: none;
}

.owl-carousel .owl-nav button.owl-next {
    right: 0;
    background-image: url(/images/icon-arrow-right-large.svg);
    background-size: 50px 50px;;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 0;
    background-image: url(/images/icon-arrow-left-large.svg);
    background-size: 50px 50px;;
}

.owl-carousel.header {
    background-image: url(/images/background-slideshow-home.jpg);
    background-size: cover;
    background-position: center;
    clip: polygon(86% 0%, 0% 125%, 0% 0%);
    background-color: #fff;
}

.owl-carousel.header .owl-item .item .bg-slide {
    width: 100%;
/*    height: 460px;*/
    position: relative;
}

.owl-carousel.header .owl-item .item .bg-slide img {
    width: auto;
    position: absolute;
    bottom: 0;
    right: 30%;
    height: 80%;
}

.owl-carousel.product .owl-item  {
    text-align: center;
}

.owl-carousel.product .owl-item img {
    display: inline-block;
    width: auto;
}

.owl-carousel.product .owl-nav button.owl-next,
.owl-carousel.product .owl-nav button.owl-prev {
    background-color: rgba(255, 255, 255, 0);
}

.owl-carousel.highlight .owl-item  {
    border-right: 1px solid #fff;
}

.owl-carousel.highlight .owl-item .item {
    position: relative;
    overflow: hidden;
}

.owl-carousel.highlight .owl-item .item .title {
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-weight: 700;
    font-size: 0.9em;
    color: #35373f;
    z-index: 1;
}

.owl-carousel.highlight .owl-item .item img {
    transition: all 0.5s ease-in-out;
}

.owl-carousel.highlight .owl-item .item  a:hover img {
    transform: scale(1.10); 
}



/* LG */
/* ---------------------------- */
@media (max-width: 1199.98px) {

}

/* MD */
/* ---------------------------- */
@media (max-width: 991.98px) {
    .owl-carousel.product .owl-item img {
        height: 600px;
        width: auto;
    }

}

/* SM */
/* ---------------------------- */
@media (max-width: 767.98px) {
    
    .owl-carousel.product .owl-item img {
        height: 600px;
        width: auto;
    }


}


/* XS */
/* ---------------------------- */
@media (max-width: 575.98px) {
    
    .owl-carousel.product .owl-item img {
        height: 400px;
        width: auto;
    }


}