@charset "utf-8";


.list-heading {
	padding-top: 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid #333333;
}
.list-heading-span {
	display: inline-block;
	font-size: 12pt;
	font-weight: bold;
	text-align: center;
}
.list-data {
	border-bottom: 1px solid #333333;
}
.data-heading {
	height: 60px;
	vertical-align: middle;
}
.list-data-span {
	display: inline-block;
}
.list-detaildata {
	width: 100%;
	padding: 32px 16px;
}
.list-detaildata p {
	width: 90%;
	margin: auto;
}
.list-detaildata img {
	display: block;
	width: 80%;
	border: 1px solid #333333;
	margin: 32px auto;
}
.list-data-span.width-number {
	text-align: center;
}
.width-number {
	width:5%;
}
.width-text {
	width: 70%;
}
.width-checkbox {
	width: 5%;
}
.width-time {
	width: 20%:
}
.number-button {
	display: inline-block;
	width: 30px;
	height: 30px;
	border: 1px solid #999999;
	border-radius: 3px;
	color: #999999;
	line-height: 1.5em;
	cursor: pointer;
}
.number-button:hover {
	color: #333333;
	background-color: #DDDDDD;
}
.btn-flat-border {
	display: inline-block;
	padding: 0.3em 1em;
	text-decoration: none;
	color: #005EA4;
	border: solid 2px #005EA4;
	border-radius: 3px;
	transition: .4s;
}
.btn-flat-border:hover {
	background: #005EA4;
	color: white;
}
 label input[type="checkbox"] + span {
	 position: relative;
	 padding-top: 35px;
 }
.list-data-span.width-checkbox label span {
	display: inline-block;
}
.list-data-span.width-checkbox label input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.list-data-span.width-checkbox label input[type="checkbox"] + span::before, .list-data-span.width-checkbox label input[type="checkbox"] + span::after {
	position: absolute;
	top: 12.5px;
	left: 0;
	display: inline-block;
	content: '';
	box-sizing: border-box;
}
.list-data-span.width-checkbox label input[type="checkbox"] + span::before {
	z-index: 0;
	background-color: transparent;
	width: 35px;
	height: 35px;
	border: 2px #616161 solid;
	border-radius: 18px;
}
.list-data-span.width-checkbox label input[type="checkbox"] + span::after {
	z-index: 1;
	width: 10px;
	height: 15px;
	margin: 7px 13px;
	border: 3px solid #616161;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}
.list-data-span.width-checkbox label input[type="checkbox"]:checked + span::before {
	background-color: #616161;
}
.list-data-span.width-checkbox label input[type="checkbox"]:checked + span::after {
	border: 3px solid #fff;
	border-width: 0 3px 3px 0;
}