/**
 * 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: 96%;
	text-align: center;
	position: absolute;
	top: 40%;
	left: 2%;
	margin: auto;
	-webkit-tap-highlight-color: transparent;
}
.owl-carousel.owl-theme .owl-nav {
	width: 80%;
	text-align: center;
	position: absolute;
	top: 40%;
	left:10%;
	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: 30px;
	height:30px;
	opacity: 0.8;
	position: absolute;
	left: 0px;
	background-image: url("../images/arrow_left.png");
	background-size: 10px;
	background-position: center center;
	background-repeat: no-repeat;
	background-color:#956f25;
	border-radius: 50px;
}
.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: 30px;
	height:30px;
	opacity: 0.8;
	position: absolute;
	right: 0px;
	background-image: url(../images/arrow_right.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 10px;
	background-color:#956f25;
	border-radius: 50px;
}
.owl-theme .owl-nav button.owl-next:hover {
	opacity: 1;
}
.owl-theme .owl-nav button.owl-next span {
	display: none;
}
.owl-theme .owl-nav button.owl-prev {
	width: 30px;
	height:30px;
	opacity: 0.8;
	position: absolute;
	left: -40px;
	background-image: url("../images/arrow_left.png");
	background-size: 10px;
	background-position: center center;
	background-repeat: no-repeat;
	background-color:#956f25;
	border-radius: 50px;
}
.owl-theme .owl-nav button.owl-next {
	width: 30px;
	height:30px;
	opacity: 0.8;
	position: absolute;
	right: -40px;
	background-image: url(../images/arrow_right.png);
	background-size: 10px;
	background-position: center center;
	background-repeat: no-repeat;
	background-color:#956f25;
	border-radius: 50px;
}
/*點點樣式*/
.owl-theme .owl-nav.disabled + .owl-dots {
	margin-top: 0px;
}
.owl-theme .owl-dots {
	text-align: center;
	-webkit-tap-highlight-color: transparent;
	position: absolute;
	bottom: -40px;
	left: 0;
	width: 100%;
	padding:10px 0;
}
.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
 *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height:10px;
	margin: 5px;
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity 200ms ease;
	border-radius: 50px;
	border: 1px solid #d0d0d0;
	background-color:#d0d0d0;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: #956f25;
	border: 1px solid #956f25;
}
.owl-theme .owl-dots {
	bottom: 0px;
}
@media (min-width: 768px) {
.owl-carousel.owl-theme .owl-nav {
 width: 100%;
 left:0%;
}
}
@media (min-width: 992px) {
/*箭頭樣式*/
.owl-theme .owl-nav button.owl-prev {
 width: 50px;
 height: 50px;
}

.owl-theme .owl-nav button.owl-next {
 width: 50px;
 height: 50px;
}
}
