/*
 * cwTeXYen (Chinese Traditional) http://www.google.com/fonts/earlyaccess
 */
@font-face {
	font-family: 'MyWebFont';
	font-style: normal;
	font-weight: 100;
	src: url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Light.woff2) format('woff2'),
		url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Light.woff) format('woff'),
		url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Light.otf) format('opentype');

	unicode-range: U+4E00-9FFF;
}

@font-face {
	font-family: 'MyWebFont';
	src: local('Muli'), local('Poppins'), local("Helvetica Neue"), local(Helvetica), local(Arial), local(sans-serif);
	font-style: normal;
	font-weight: 100;

	unicode-range: U+00-024F;
}


.Center {
	width:fit-content;
	margin-left: auto;
	margin-right: auto;
}


.form-group {
	margin-bottom:18px;
}

.fade {
	display: none;
}

.fade.in {
	display: block;
}

.hidden {
	display:none;
}


body {
	font-family: MyWebFont !important;
	/*font-size: 13pt;*/

}

button:disabled {
    background: #F5F5F5 !important;
    color : #C3C3C3;
}

.disabled {
	background-color: #e9ecef !important;
}

tbody.Template {
	display:none;
}

ul, li, a {
	text-decoration: none;
	list-style: none;
	border: none;
	border-collapse: collapse;
}

.Clear {
	clear:both;
	flex-basis:100%;
}


.Clickable {
	cursor:pointer;
}

.TextCenter {
	text-align:center;
}


.img-circle {
    border-radius: 50%;
}



.ImageContainer {
	position: relative;
	text-align: center;
	display:inline-block;
	width:auto;
	height:auto;
}

.ImageContainer .OverlayIcon {
	position: absolute;	
	top: 4px;
    right: 4px;
	cursor:pointer;
}

.ImageContainer .OverlayIcon img {
	transition: all .2s ease-in-out;
}

.ImageContainer .OverlayIcon img:hover {
	transform: scale(1.50);
}

.EnlargeOnHover:hover {
	transform: scale(1.25);
	-webkit-transform: scale(1.25);
	transition: all .2s ease-in-out;
}


.TopRightMenuButton {
	display:none;
	width: 40px;
	height: 40px;
	/*background-color: #eee;*/
	position: absolute;
	right: 0px;
	margin-top: 9px;
	margin-right: 6px;
	border-radius: 5px;
	cursor: pointer;
	z-index:10;
}
.TopRightMenuButton > .line {
	width: 25px;
	height: 2px;
	background-color: #fff;
	margin-bottom: 6px;
	margin-left: 7px;
}
.TopRightMenuButton > .line:first-child {
	margin-top: 12px;
}

.TopRightMenuButton.Toggled > .line1 {
	position:relative;
	top: 7px;
	/*margin-bottom:5px;*/
	-webkit-animation: topbar-x 500ms linear 0s;
	-moz-animation: topbar-x 500ms linear 0s;
	-ms-animaton: topbar-x 500ms linear 0s;
	animation: topbar-x 500ms 0s;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	-ms-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.TopRightMenuButton.Toggled > .line2 { 
	display:none;
}
.TopRightMenuButton.Toggled > .line3 {
	position:relative;
	bottom: unset;
	margin-bottom:4px;
	
	-webkit-animation: bottombar-x 500ms linear 0s;
	-moz-animation: bottombar-x 500ms linear 0s;
	-ms-animaton: bottombar-x 500ms linear 0s;
	animation: bottombar-x 500ms 0s;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	-ms-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}



.ShowOnHoverContainer .ShowOnHover {
	display:none;
}

.ShowOnHoverContainer:Hover .ShowOnHover {
	display:block;
}

.ShowOnHoverContainer1 .ShowOnHover1 {
	display:none;
}

.ShowOnHoverContainer1:Hover .ShowOnHover1 {
	display:block;
}



.WhiteOverlay {
	background: rgba(255,255,255,0.90) !important;
	position: fixed !important;
	z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
}

.WhiteOverlay>img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -15px;
    color: #000;
    font-size: 30px;
}


@keyframes topbar-x {
	0% {
		top: 0px;
		transform: rotate(0deg);
	}
	45% {
		top: 6px;
		transform: rotate(145deg);
	}
	75% {
		transform: rotate(130deg);
	}
	100% {
		transform: rotate(135deg);
	}
}
@-webkit-keyframes topbar-x {
	0% {
		top: 0px;
		-webkit-transform: rotate(0deg);
	}
	45% {
		top: 6px;
		-webkit-transform: rotate(145deg);
	}
	75% {
		-webkit-transform: rotate(130deg);
	}
	100% {
		-webkit-transform: rotate(135deg);
	}
}
@-moz-keyframes topbar-x {
	0% {
		top: 0px;
		-moz-transform: rotate(0deg);
	}
	45% {
		top: 6px;
		-moz-transform: rotate(145deg);
	}
	75% {
		-moz-transform: rotate(130deg);
	}
	100% {
		-moz-transform: rotate(135deg);
	}
}
@keyframes bottombar-x {
	0% {
		bottom: 0px;
		transform: rotate(0deg);
	}
	45% {
		bottom: 0px;
		transform: rotate(-145deg);
	}
	75% {
		transform: rotate(-130deg);
	}
	100% {
		transform: rotate(-135deg);
	}
}
@-webkit-keyframes bottombar-x {
	0% {
		bottom: 0px;
		-webkit-transform: rotate(0deg);
	}
	45% {
		bottom: 0px;
		-webkit-transform: rotate(-145deg);
	}
	75% {
		-webkit-transform: rotate(-130deg);
	}
	100% {
		-webkit-transform: rotate(-135deg);
	}
}
@-moz-keyframes bottombar-x {
	0% {
		bottom: 0px;
		-moz-transform: rotate(0deg);
	}
	45% {
		bottom: 0px;
		-moz-transform: rotate(-145deg);
	}
	75% {
		-moz-transform: rotate(-130deg);
	}
	100% {
		-moz-transform: rotate(-135deg);
	}
}




@keyframes Spin1Round {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@-webkit-keyframes Spin1Round {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}
@-moz-keyframes Spin1Round {
	0% {
		-moz-transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(360deg);
	}
}


body.magnificpopupnoscroll{
   overflow-y: hidden !important;
}

/* for magnific pop up begins */
.white-popup-block {
	background: #FFF;
	padding: 20px 30px;
	text-align: left;
	max-width: 720px;
    width: 60%;
	margin: 40px auto;
	position: relative;
}

.white-popup-block button {
	padding-left:24px;
	padding-right:24px;
}

/* for tooltipster */
.tooltip_templates { 
	display: none; 
}

.label {
	font-size:inherit;
}

.TwCityTownZipGroup {
	width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.city_input, .town_input, .zipcode_input {
    width: 31% !important;
    display: table-cell;
}


.table>tbody>tr>td {
	vertical-align: middle;
}


[NoneEditable] {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
}
[NoneEditable]::after {
	content: "無法編輯的區域";
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	padding-top: 5px;
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
	background: rgba(252, 252, 252, 0.90);
	border: 1px dashed #999;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}



.RequiredAsterisk {
	color:red;
}







/* Customize the label (the StyledRadioContainer) */
.StyledRadioContainer {
	display: inline;
	position: relative;
	padding-left: 22px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default radio button */
.StyledRadioContainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom radio button */
.StyledRadioContainer .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 18px;
	width: 18px;
	background-color: #eee;
	border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.StyledRadioContainer:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.StyledRadioContainer input:checked ~ .checkmark {
	background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.StyledRadioContainer .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.StyledRadioContainer input:checked ~ .checkmark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.StyledRadioContainer .checkmark:after {
	top: 25%;
	left: 25%;
	width: 50%;
	height: 50%;
	border-radius: 50%;
	background: white;
}



.BoxShadow4 {
	
	box-shadow: var(--shd,0 1px 4px rgba(0,0,0,.4))
	
}





@media (max-width: 768px) {
	.white-popup-block {
		max-width: 90%;
		width: 90%;
	}
}
/* for magnific pop up ends */


@media (max-width: 992px) {
	

}