@CHARSET "UTF-8";

:root {
    --main-color: #fff8ea;
}

html, body {

}

.main-bg {
	background-color: #fff8ea;
	background-image: url(resource/bg1.png);
}
.visit-bg {
	background-color: #def9ff;
	background-image: repeating-radial-gradient(circle, rgba(0, 0, 0, 0.03) 0, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 4px);
}

@media (min-width: 1400px){
	.container.c-mw-1000,
	.container-lg.c-mw-1000, 
	.container-md.c-mw-1000, 
	.container-sm.c-mw-1000, 
	.container-xl.c-mw-1000, 
	.container-xxl.c-mw-1000 {
	    max-width: 1000px !important;
	}
}
@media (min-width: 1200px){
	.container.c-mw-1000,
	.container-lg.c-mw-1000, 
	.container-md.c-mw-1000, 
	.container-sm.c-mw-1000, 
	.container-xl.c-mw-1000, 
	.container-xxl.c-mw-1000 {
	    max-width: 1000px !important;
	}
}

.font-w-400{
	font-weight: 400;
}

.font-w-900{
	font-weight: 900;
}

.thick-frame-text{
    font-weight: bold;
    color: #ffffff;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 2px 2px 2px #000;
    padding: 0 10px;
}

.highlighter{
	position: relative;
}
.highlighter.highlighter-gold::after{
	content: '';
    position: absolute;
    top: 55%;
    width: 100%;
    height: 0;
    left: 50%;
    transform: translate(-50%, 0);
    border: 0.5rem solid rgba(247, 187, 53, 0.5);
    border-radius: 5px;
    clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}

.required-mark::after {
	content: '*' !important;
    position: initial !important;
    color: red;
    margin-left: 3px;
}

.btn-apptMethod {
	color: black;
    background-color: rgba(0, 0, 0, 0.15);
    text-align: center;
    font-size: 4vmin;
    line-height: 5;
    padding: 0 5px;
    transition: 0.3s;
    border: none;
    display: block;
    width: 100%;
    box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.65);
    position: relative;
	text-wrap: nowrap;
}
.btn-apptMethod:hover {
	background-color: rgba(255, 255, 255, 0);
	letter-spacing: 0.5rem;
	box-shadow: none;
}
.btn-apptMethod::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	transition: all 0.3s;
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: rgba(0, 0, 0, 0.5);
	border-bottom-color: rgba(0, 0, 0, 0.5);
	transform: scale(0.1, 1);
}
.btn-apptMethod:hover::before {
	opacity: 1; 
	transform: scale(1, 1); 
}

.apptInfo tbody td:nth-child(odd){
	background-color: #fff7ec;
	min-width: 115px;
	width: 20%;
}


