/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
button {
	outline: none;
}
.owl-theme .owl-dots, .owl-theme .owl-nav {
	text-align: center;
	-webkit-tap-highlight-color: transparent
}
/*箭頭滑入顯示*/
.owl-carousel .owl-nav {
	visibility: hidden; /*不顯示*/
}
.owl-carousel:hover .owl-nav {
	visibility: visible; /*顯示*/
}
/*箭頭樣式*/
.owl-theme .owl-nav {
	position: absolute;
	right: 0%;
	top: 48%;
	width: 100%;
	display:none;
}
.owl-theme .owl-nav button.owl-prev {
	position: absolute;
	left: 15px;
	width: 30px;
	height: 30px;
	font-size: 14px;
	margin: 5px;
	padding: 4px 7px;
	display: inline-block;
	cursor: pointer;
	border-radius: 50%;
	opacity: .9;
	background-image: url(../images/arrowL.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-color:#c3a174;
	border:0;
}
.owl-theme .owl-nav button.owl-prev span {
	display: none;
}
.owl-theme .owl-nav button.owl-prev:hover {
	opacity: 1;
}
.owl-theme .owl-nav button.owl-next {
	position: absolute;
	right: 15px;
	width: 30px;
	height: 30px;
	font-size: 14px;
	margin: 5px;
	padding: 4px 7px;
	display: inline-block;
	cursor: pointer;
	border-radius: 50%;
	opacity: .9;
	background-image: url(../images/arrowR.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-color:#c3a174;
	border: 0;
}
.owl-theme .owl-nav button.owl-next:hover {
	opacity: 1;
}
.owl-theme .owl-nav button.owl-next span {
	display: none;
}
/*.owl-theme .owl-nav .disabled {
	opacity: .5;
	cursor: default
}
.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 10px
}*/

/*點點樣式*/
.owl-theme .owl-dots {
	position: absolute;
	width: 100%;
	bottom: 5%;
	left: 0px;
}
.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1
}
.owl-theme .owl-dots .owl-dot span {
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	background-color: #fff;
	display: block;
	-webkit-backface-visibility: visible;
 transition: opacity .2s ease;
	border-radius: 30px;
	border: 1px solid #999;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background-color: #c3a174;
	border: 1px solid #c3a174;
}
@media only screen and (min-width: 992px) {
/*箭頭樣式*/
.owl-theme .owl-nav {
 display: inherit;
}
.owl-theme .owl-nav button.owl-prev {
 width: 50px;
 height: 50px;
}
.owl-theme .owl-nav button.owl-next {
 width: 50px;
 height: 50px;
}
.owl-theme .owl-dots {
display: inherit;
}
}
