/* marquee view setting */
.marquee-view {
	margin: 0px;
	width: 570px;
	/* height: 200px; */
	overflow: hidden;
	position: relative;
	border: 1px solid #000;
}
/* marquee content setting */
.service-info {
	border-collapse: collapse;
	border-spacing: 0;
	border-style: solid;
	line-height: 20px;
}
.service-info tr:nth-child(odd) td {  
	background: linear-gradient(aliceblue 10%, #6CB2BE 100%);
	font-size: small;
	font-weight: bold;
	color: while;
}
.service-info tr:nth-child(even) td {  
	background-color: aliceblue;
	font-size: small;
	font-weight: bold;
	color: #147278;
	border-style: solid;
	border-width: 1px;
} 
.service-info tr td:nth-child(1) {
	border-right: none;
}
.service-info tr td:nth-child(2) {
	border-right: none;
	border-left: none;
}
.service-info tr td:nth-child(3) {
	border-left: none;
}
/* checked box view */
.checked-box {
	position: relative;
	padding: 0 0 0 30px;
}
.checked-box:after,  .checked-box:before{
	position: absolute;
	content: "";
	display: block;
	top: 50%;
}
.checked-box:after {
	left: 5px;
	margin-top: -10px;
	width: 15px;
	height: 15px;
	border: 2px solid #ccc;
	border-radius: 6px;
}
.checked-box:before {
	left: 11px;
	margin-top: -7px;
	width: 5px;
	height: 9px;
	border-right: 3px solid red;
	border-bottom: 3px solid red;
	transform: rotate(45deg);
	opacity: 1;
}
