/*關閉chrome, safari, edge input type number的上下按鈕*/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button
{
	
	-webkit-appearance: none;
	margin: 0px;
	
}

/*關閉firefox input type number的上下按鈕*/
input[type=number]
{
	
	-moz-appearance: textfield;
	
}

input[type=number]:focus
{
	
	border: 2px solid black;
	
}

/*form
{
	
	padding: 20px;
	color: black;
	border-radius: 20px;
	box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.5);
	background-color: #e6f3fa;
	
}*/

h3[name=sub-title]
{
	
	margin-top: 20px;
	
}

p[name=action], p[name=error]
{
	
	font-weight: bold;
	text-align: center;
	/*color: red;*/
	
}

p[name=error]
{
	
	display: none;
	font-size: 22px;
	
}

p[name=formInfo]
{
	
	font-weight: bold;
	font-size: 20px;
	margin: 20px 0px;

}

label
{
	
	font-weight: 500;
	font-size: 18px;
	color: black;
	
}

[use=necessary]
{
	
	color: #D13B56;
	
}

[use=necessary]::before
{
	
	content: "*";
	margin-right: 2px;
	font-size: 18px;
	font-weight: bold;
	color: #D13B56;
	
}

div[name=sex]
{
	
	display: flex;
	flex-direction: column;
	
}

submit
{
	
	width: 200px;
	margin: 0px auto;
	font-size: 18px !important;
	cursor: pointer;
	
}

/*預約規則的錯誤通知*/
mask
{
	
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999999;
	overflow-y: hidden;
	
}

div[class=action]
{
	
	display: flex;
	position: relative;
	width: 400px;
	height: 250px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
	background-color: #d8e9f2;
	
}

close
{
	
	display: block;
	position: absolute;
	top: 5px;
	right: 10px;
	font-size: 20px;
	font-family: fontAwesome;
	cursor: pointer;
	
}

close:hover
{
	
	color: black;
	
}

div[class=action] p
{
	
	margin-bottom: 30px; 
	font-weight: bold;
	font-size: 24px;
	color: black;
	
}

noHurt
{
	
	color: red;
	
}

button[class=goBack], button[class=goResver]
{
	
	padding: 10px 25px;
	margin: 0px 5px;
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	color: white;
	border-radius: 50px;
	background-color: #3E789F;
	cursor: pointer;
	
}

button[class=goBack]:hover, button[class=goResver]:hover
{
	
	background-color: #274B64;
	
}

/*input樣式*/
.faq-question-form-area .question-form form input[type="text"],
.faq-question-form-area .question-form form input[type="email"],
.faq-question-form-area .question-form form input[type="password"],
.faq-question-form-area .question-form form textarea{
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #a8a8a8;
    display: block;
    height: 50px;
    margin-bottom: 30px;
    padding: 0 20px;
    width: 100%;
    color: #848484;
    font-size: 16px;
    font-weight: 300;
    transition: all 500ms ease;
    font-family: 'Hind', sans-serif;
}

.faq-question-form-area .question-form form textarea{
    height: 140px;
    padding: 15px 20px;
}

input[type=radio]
{
	
	cursor: pointer;
	
}