/**
 * 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-carousel .owl-nav {
  /*visibility: hidden;不顯?/
}
.owl-carousel:hover .owl-nav {
  visibility: visible; /*顯示*/
}
.owl-theme .owl-nav {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 40%;
  left: 0;
  margin: auto;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*='owl-'] {
  margin: 5px;
  display: inline-block;
  cursor: pointer;
}
.owl-theme .owl-nav [class*='owl-']:hover {
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
/*箭頭??*/
.owl-theme .owl-nav button.owl-prev {
  width: 20px;
  height: 40px;
  opacity: 0.8;
  position: absolute;
  left: 0px;
  background-image: url("../images/arrow_left.png");
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
.owl-theme .owl-nav button.owl-prev:hover {
  opacity: 1;
}
.owl-theme .owl-nav button.owl-prev span {
  display: none;
}
.owl-theme .owl-nav button.owl-next {
  width: 20px;
  height: 40px;
  opacity: 0.8;
  position: absolute;
  right: 0px;
  background-image: url(../images/arrow_right.png);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
.owl-theme .owl-nav button.owl-next:hover {
  opacity: 1;
}
.owl-theme .owl-nav button.owl-next span {
  display: none;
}
.owl-carousel {
  position: relative;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  width: 90%
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  display: block;
  border-radius: 50px;
  border: 1px solid #fff;
  background-color: transparent;
  transition: all 200ms ease;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #fff;
}
.fadeOut.owl-theme .owl-dots {
  top: 75%;
  left: 0%;
  width: 100%
}
.fadeOut_pic.owl-theme .owl-dots {
  bottom: -35px;
  right: 0%;
  width: 100%;
}
.dot_style.owl-theme .owl-dots {
  right: 10px;
  left: 0;
  bottom: -35px;
  position: absolute;
  width: 100%;
}
.dot_style.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  display: block;
  border-radius: 50px;
  border: 1px solid #000;
  background-color: transparent;
  transition: all 0.2s ease;
}
.dot_style.owl-theme .owl-dots .owl-dot.active span, .dot_style.owl-theme .owl-dots .owl-dot:hover span {
  background: #000;
  border-color: #000;
}
@media (min-width:992px) {
  .owl-theme .owl-dots {
    width: 150px;
    text-align: start;
  }
  .fadeOut.owl-theme .owl-dots {
    left: 5%;
  }
  .dot_style.owl-theme .owl-dots {
    text-align: end;
  }
}
@media (min-width:1600px) {
  .fadeOut.owl-theme .owl-dots {
    top: 70%;
    left: 10%;
  }
}