@charset "utf-8";

/*reset*/
.reset {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/*go top start*/
.toTop-arrow {
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 33%;
	opacity: 0.6;
	background: #000;
	cursor: pointer;
	position: fixed;
	right: 1rem;
	bottom: 4.5rem;
	display: none;
}

.toTop-arrow::before,
.toTop-arrow::after {
	width: 18px;
	height: 5px;
	border-radius: 3px;
	background: #f90;
	position: absolute;
	content: "";
}

.toTop-arrow::before {
	transform: rotate(-45deg) translate(0, -50%);
	left: 0.5rem;
}

.toTop-arrow::after {
	transform: rotate(45deg) translate(0, -50%);
	right: 0.5rem;
}

.toTop-arrow:focus {
	outline: none;
}

/*run loading*/
.loading {
	position: fixed;
	height: 100vh;
	width: 100vw;
	background-color: rgba(229, 229, 229, 0.50);
	/*top: 5px;*/
	border-radius: 25px;
	overflow: hidden;
	z-index: 1100;
	line-height: 100vh;
}

/*countdown*/
.countdown01 {
	padding: 25px 20px 10px;
	border-radius: 15px;
	position: fixed;
	right: 0;
	top: 0;
	width: auto;
	background-color: rgba(255, 99, 99, 0.80);
	z-index: 1100;
}

/*側邊選單開始*/
#optionList {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	top: 25%;
	left: -120px;
	position: fixed;
	z-index: 999;
}

#optionListContentR {
	background-color: rgba(255, 2, 5, 0.63);
	padding: 5px;
	width: 30px;
	color: white;
	border-radius: 0 10px 10px 0;
}

ul#menu-v,
#menu-v ul {
	width: 120px;
	/* Main Menu width */
	border: 1px solid rgba(190, 190, 190, 0.3);
	list-style: none;
	margin: 0;
	padding: 0;
	z-index: 999;
}

#menu-v li {
	margin: 0;
	padding: 0;
	position: relative;
	background-color: #DDDDDD;
	/*fallback color*/
	background-color: rgba(0, 0, 0, 0.6);
	transition: background 0.5s;
}

#menu-v li:hover {
	background-color: rgba(0, 0, 0, 0.9);
}

#menu-v a {
	font: normal 12px Arial;
	border-top: 1px solid rgba(190, 190, 190, 0.3);
	display: block;
	color: #EEEEEE;
	text-decoration: none;
	line-height: 30px;
	padding-left: 22px;
	position: relative;
}

#menu-v li:first-child a {
	border-top: 0;
}

#menu-v a.arrow::after {
	content: '';
	position: absolute;
	display: inline;
	top: 50%;
	margin-top: -4px;
	right: 8px;
	border-width: 4px;
	border-style: solid;
	border-color: transparent transparent transparent white;
	transition: border-color 0.5s;
}

#menu-v li a.arrow:hover::after {
	border-color: transparent transparent transparent #CCCCCC;
}

/*Sub level menu items*/
#menu-v li ul {
	min-width: 140px;
	/* Sub level menu min width */
	position: absolute;
	display: none;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
}

#menu-v li:hover>ul {
	display: block;
}

/* 側邊選單結束 */

/*小鈴鐺開始*/
.belllife {
	animation: dang 1000ms infinite;
	-webkit-animation: dang 1000ms infinite;
	color: red;
}

@keyframes dang {
	from {
		opacity: 1.0;
	}

	50% {
		opacity: 0.4;
	}

	to {
		opacity: 1.0;
	}
}

@-webkit-keyframes dang {
	from {
		opacity: 1.0;
	}

	50% {
		opacity: 0.4;
	}

	to {
		opacity: 1.0;
	}
}

/*小鈴鐺結束*/

/* 清除結帳鈕 z-index */
.clearpayBtnCssZindex {
	z-index: 1999;
}