@charset "utf-8";
/* CSS Document */

/**立即訂房**/
div.bookingBox {
	position: absolute;
	left: 30px;
	top: 85px;
	width: 182px;
	z-index: 1;
}
a.bookBtn {
	display: block;
	background: url(../images/booking_title.png) no-repeat;
	background-size: contain;
	height: 55px;
	text-indent: -9999px;
}
.book_content {
	display: none;
	background: url(../images/booking_bg.png);
	padding: 5px 15px 5px 15px;
}
.book_content ul li {
	margin-bottom: 10px;
}
.book_content select {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background: url(../images/arrowDown.png) 94% center no-repeat;
}
a.bookNow {
	font-size: 1.08rem;
	color: #dddddd;
	background: #243340;
	width: 100%;
	height: 30px;
	line-height: 30px;
	text-decoration: none;
	text-align: center;
	display: table;
	margin: 0 auto;
	transition: all 0.4s;
}
a.bookNow:hover {
	background: #443d37;
	transition: all 0.4s;
}
/**日期選擇**/
#from, #to, .book_content select {
	width: 100%;
	height: 30px;
	border: 1px solid #484848;
	box-sizing: border-box;
	padding-left: 10px;
	font-size: 1.08rem;
	color: #484848;
	font-family: 'Noto Sans TC', "微軟正黑體", "Microsoft JhengHei UI", sans-serif;
}
#from, #to {
	background: url(../images/date_icon.png) 95% center no-repeat;
}
.book_content select option {
	height: 30px;
}
/**立即訂房 End**/

@media screen and (max-width:768px) {
div.bookingBox {
	width: 100%;
	position: relative;
	top: 0;
	left: 0;
	border-bottom: 1px solid #443d37;
}
a.bookBtn {
	display: none;
}
.book_content {
	display: block !important;
	background: #0f0f0f;
	padding: 25px;
}
.book_content ul {
	display: table;
	margin: 0 auto;
	width: 100%;
	font-size: 0;
}
.book_content ul li {
	display: inline-block;
	width: 50%;
	padding: 0 5px;
	box-sizing: border-box;
}
.book_content ul li:last-child {
	width: 100%;
	margin-bottom: 0;
}
a.bookNow {
	margin: 0;
	width: 100%;
}
}
@media screen and (max-width:414px) {
.book_content ul li {
	width: 100%;
	padding: 0;
}
}