@charset "utf-8";
*{
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 14px;
}

div#load_screen{
	background:#E9EEF0;
	opacity:1;
	position:fixed;
	z-index:10;
	top:0px;
	width:100%;
	height:1600px;
}
div#load_screen > div#loading{
	color:black;
	width:120px;
	height:100px;
	margin:300px auto;
	font-size: 14px;
	text-align: center;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

#time_dis{
	font-size: 42px !important;
	text-align: center;
	font-weight: bold;
}
td{
	font-size: 14px !important;
}
	.table tr td{
		font-size: 14px;
		padding: 5px;
	}
	.table tr th{
		font-size: 14px;
		padding: 5px;
	}
.main-login{
	width: 300px;
	padding: 5px 10px;
	border-radius: 10px;
	background-image: linear-gradient(rgba(0,140,255,0.6),rgba(255,255,255,0.6));
	position: absolute;
	top: 50px;
	left: 50px;
	font-size: 14px;
	box-shadow: 1px 1px 10px gray;
}
.main-login img{
	width: 100%;
}
.main-login input, select{
	padding: 10px;
	outline: none;
	border: 1px solid #555555;
	width: 100%;
	margin-bottom: 10px;
}
.main-login button{
	padding: 10px;
	width: 100%;
	outline: none;
	border: none;
	background-color: black;
	color: white;
	margin-bottom: 20px;
	cursor: pointer;
}
.main-login p{
	margin-top: 10px;
	text-align: center;
	font-size: 12px;
	color: #555555;
}
.main-login h3{
	text-align: center;
	margin-bottom: 20px;
}
.main-login .error-msg{
	text-align: center;
	margin-bottom: 10px;
	color: white;
	padding: 5px 0px;
	background-color: darkred;
	border-radius: 5px;
}
.header-main{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	background-color: black;
	padding: 5px;
	margin-bottom: 20px;
	position: sticky;
	top: 0px;
	z-index: 999999;
	border-bottom: 2px solid white;
}
.header-main .menu-btn{
	padding: 3px;
	background-color: white;
	margin: 2px;
	border-radius: 5px;
	cursor: pointer;
	transition-duration: 0.5s;
	font-size: 10px !important;
	color: black;
	text-align: center;
}
.header-main .menu-btn:hover{
	background-color: #CCCCCC;
}
.header-main .menu-btn img{
	width: 50px;
	height: 50px;
}
.header-main a{
	text-decoration: none;
	color: yellow;
}
.footer-main1{
	width: 100%;
	bottom: 0px;
	padding-bottom: 0px;
	background-color: black;
	color: gainsboro;
	font-size: 10px !important;
	text-align: center;
	z-index: 999999;
	margin-top: 20px;
}
.menu-bar{
	padding: 5px;
	background-color: #FFFFFF;
	text-align: center;
	margin-top: 10px;
	border-radius: 5px;
}
.menu-bar img{
	border: 2px solid #555555;
	border-radius: 5px;
	width: 50px;
	height: 50px;
	margin: 0px 5px;
	transition: 0.5s;
}
.menu-bar img:hover{
	border: 2px solid dodgerblue;
}
.contaner{
	margin: 0px 50px 70px 50px;
	font-size: 14px;
}
.contaner strong{
	text-decoration: underline;
}
.input-text{
	padding: 5px;
	outline: none;
	border: 1px solid #555555;
	width: 100%;
	margin-bottom: 5px;
	font-size: 14px;
}
.save-bt{
	outline: none;
	border: none;
	background-color: dodgerblue;
	padding: 5px 10px;
	color: white;
	margin-top: 10px;
}
.input-form{
	padding: 10px;
	border: 1px dashed #555555;
	background-color: #EEEEEE;
}
.list-table th,td{
	white-space: nowrap;
	font-size: 20%;
}
.list-text{
	padding: 0px;
	border: 1px;
	outline: none;
	width: 100%;
	text-align: right;
}
.log-bg{
	background-image: url(image/home_bg.jpg);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.err-pc {
	display: none;
}

@media only screen and (max-width: 425px) {
	.main-login {
		padding: 10px;
		border-radius: 10px;
		background-color: #EEEEEE;
		font-size: 14px;
	}
	.header-main {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		background-color: black;
		flex-wrap: wrap;
		padding: 5px;
		margin-bottom: 20px;
		position: sticky;
		top: 0px;
		z-index: 999999;
		border-bottom: 2px solid white;
	}
	.mobile_hedn{
		display: none;
	}
	.err-pc{
		display: block;
	}
}