/**
 * Owl Carousel v2.1.4
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */

[class*="owl-carousel-"],
.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative;
    /* margin: 0 auto; */
}

[class*="owl-carousel-"] {
    display: none;
    width: 100%;
    z-index: 1;
}

[class*="owl-carousel-"] .owl-stage {
    position: relative;
    margin: 0;
    -ms-touch-action: pan-Y;
    touch-action: pan-Y;
}

[class*="owl-carousel-"] .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

[class*="owl-carousel-"] .owl-stage-outer {
    width: 100%;
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

[class*="owl-carousel-"] .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-touch-callout: none;
    overflow: hidden;
}

[class*="owl-carousel-"] .owl-item img {
    display: block;
    width: 100%;
    /*-webkit-transform-style:preserve-3d;*/
    padding: 0;
    margin: 0 auto;
}

[class*="owl-carousel-"] .owl-dots,
[class*="owl-carousel-"] .owl-nav {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

[class*="owl-carousel-"] .owl-dots.disabled,
[class*="owl-carousel-"] .owl-nav.disabled {
    display: none;
}

[class*="owl-carousel-"] .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

[class*="owl-carousel-"] .owl-nav.disabled+.owl-dots {
    margin-top: 10px;
}


/* [class*="owl-carousel-"] .owl-dots {
  display: none;
} */

[class*="owl-carousel-"] .owl-dots .owl-dot {
    display: inline-block;
    zoom: 0;
    border: none;
    background: none;
    outline: none;
}

[class*="owl-carousel-"] .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 2px 0;
    background: #dfdfdf;
    display: block;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    transition: opacity 0.2s ease;
    border-radius: 30px;
    opacity: 0.8;
}

[class*="owl-carousel-"] .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #000000;
}

[class*="owl-carousel-"].owl-loaded {
    width: 100%;
    display: block;
}

[class*="owl-carousel-"].owl-loading {
    opacity: 0;
    display: block;
}

[class*="owl-carousel-"].owl-hidden {
    opacity: 0;
}

[class*="owl-carousel-"].owl-refresh .owl-item {
    display: none;
}

[class*="owl-carousel-"].owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

[class*="owl-carousel-"].owl-grab {
    cursor: move;
    cursor: grab;
}

[class*="owl-carousel-"].owl-rtl {
    direction: rtl;
}

[class*="owl-carousel-"].owl-rtl .owl-item {
    float: right;
}

.no-js .owl-carousel {
    display: block;
}

[class*="owl-carousel-"] .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

[class*="owl-carousel-"] .owl-animated-in {
    z-index: 0;
}

[class*="owl-carousel-"] .owl-animated-out {
    z-index: 1;
}

[class*="owl-carousel-"] .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.owl-height {
    transition: height 0.5s ease-in-out;
}

[class*="owl-carousel-"] .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 0.4s ease;
}

[class*="owl-carousel-"] .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

[class*="owl-carousel-"] .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

[class*="owl-carousel-"] .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: -webkit-transform 0.1s ease;
    transition: transform 0.1s ease;
}

[class*="owl-carousel-"] .owl-video-play-icon:hover {
    -webkit-transform: scale(1.3, 1.3);
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

[class*="owl-carousel-"] .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
    display: none;
}

[class*="owl-carousel-"] .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 0.4s ease;
}

[class*="owl-carousel-"] .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}


/**
 * Owl Carousel v2.1.4
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */

.owl-prev,
.owl-next {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
}

[class*="owl-carousel-"] .owl-dots,
.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

[class*="owl-carousel-"] .owl-nav {
    display: contents;
    width: 100%;
    height: 100%;
}

[class*="owl-carousel-"] .owl-nav [class*="owl-"] {
    width: 60px;
    color: rgb(121, 121, 121);
    font-size: 25px;
    position: absolute;
    top: -7px;
    display: inline-block;
    cursor: pointer;
    background: none;
    border: 0;
}

[class*="owl-carousel-"] .owl-nav .owl-prev {
    left: -50px;
    outline: none;
    z-index: 2;
}

[class*="owl-carousel-"] .owl-nav .owl-next {
    right: -50px;
    outline: none;
    z-index: 2;
    text-align: left;
}

[class*="owl-carousel-"] .owl-nav [class*="owl-"]:hover {
    color: #000;
}

[class*="owl-carousel-"] .owl-nav .disabled {
    display: none;
    /* opacity: 0.5;
  cursor: default; */
}
[class*="owl-carousel-"] .owl-nav .owl-prev::before {
    content: "";
    position: absolute;
    left: 45px;
    width: 85px;
    height: 100%;
    background: -moz-linear-gradient(left,  #f0f0f0 0%, #f0f0f0 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #f0f0f0 0%,#f0f0f0 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(240,240,240,1) 0%,rgba(240,240,240,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#00f0f0f0',GradientType=1 ); /* IE6-9 */
    z-index: 1;

}
[class*="owl-carousel-"] .owl-nav .owl-next::after {
    content: "";
    position: absolute;
    right: 45px;
    width: 85px;
    height: 100%;
    background: -moz-linear-gradient(right,  #f0f0f0 0%, #f0f0f0 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(right,  #f0f0f0 0%,#f0f0f0 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to left,  rgba(240,240,240,1) 0%,rgba(240,240,240,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f0f0f0', endColorstr='#f0f0f0',GradientType=1 ); /* IE6-9 */
    z-index: 1;
}
[class*="owl-carousel-"] .owl-nav .disabled::before,
[class*="owl-carousel-"] .owl-nav .disabled::after {
    display: none;

}


[class*="owl-carousel-"] .owl-nav.disabled+.owl-dots {
    margin-top: 10px;
}

[class*="owl-carousel-"] .owl-dots {
    display: none;
}

[class*="owl-carousel-"] .owl-dots .owl-dot {
    display: inline-block;
    zoom: 0;
}

[class*="owl-carousel-"] .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    transition: opacity 0.2s ease;
    border-radius: 30px;
}

[class*="owl-carousel-"] .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

@media screen and (max-width: 991px) {
    [class*="owl-carousel-"] .owl-item img {
        display: block;
        width: 100%;
        /*-webkit-transform-style:preserve-3d;*/
        padding: 0;
    }
    [class*="owl-carousel-"] .owl-nav {
        margin: 0;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    [class*="owl-carousel-"] .owl-nav [class*="owl-"] {
        top: -1px !important;
    }
    /* [class*="owl-carousel-"] .owl-nav [class*="owl-"] {
    display: none;
  } */
    [class*="owl-carousel-"] .owl-dots {
        display: none;
        font-weight: bold;
    }
    /*--黑點顯示--*/
}