*{
	margin: 0;
	padding: 0;
}
.container{
	max-width: 1300px;
	min-width: 1100px;
	width: 100%;
	margin: auto;
}
.container .title{
	text-align: center;
	font-size: 22px;
	color: #333;
	margin: 15px auto;
	overflow: hidden;
}
.container .examp{
	margin: 15px 0;
}
.container .examp h3{
	margin: 8px;
	color: #333;
}
.container .examp p{
	margin: 8px;
	border-radius: 5px;-webkit-border-radius: 5px;
	background: #f1f2f3;padding: 15px;font-size: 20px;color: #666;color: #555;line-height: 24px;
}

.container .handle{
	margin: 15px auto;
	text-align: center;
	color: #666;
	font-size: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.container .handle *{
	font-size: 16px;
}
.handle select{
	height: 36px;
	line-height: 36px;
	padding: 0 10px;
	outline: none;
	border: 1px solid #ddd;
	margin-left: 10px;
	width: 400px;
	border-radius: 5px;
	margin-right: 20px;
}
.handle input[type="checkbox"]{
	zoom:150%;
	outline: none;
	margin-left: 5px;
	cursor: pointer;
	position: relative;
	top: 1px;
}
.handle .input-group{
	display: flex;
	align-items: center;
	justify-content: center;
}
.handle button{
	display: inline-block;
	height: 36px;
	line-height: 36px;
	background: #0ea06f;
	padding: 0 20px;
	color: #fff;
	margin-left: 10px;
	border-radius: 5px;
	cursor: pointer;
	outline: none;
	border: 0;
}
.container .sudobox{
	margin: 15px auto;
}
#sudoku-table{
	margin: auto;
	max-width: 658px;
	max-height: 658px;
	border-spacing: 0;
	border-collapse: collapse;
}
#sudoku-board{
	border: 2px solid black;
}
#sudoku-board td {
	padding: 0px;
	margin: 0px;
	border-collapse: collapse; 
	border: none;
}
#sudoku-board input.square {
	box-sizing: border-box;
	display: block;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:0px;
	width: 100%;
	height: 100%;
	padding: 0px;
	font-size: 28px;
	line-height: 1.5;
	text-align: center;
	outline: none;
}
#sudoku-board input.square:disabled {
	background-color: #fff;
}
#sudoku-board .border-right {
	border-right: 2px solid black;
}
#sudoku-board .border-bottom {
	border-bottom: 2px solid black;
}
#sudoku-board .green-text{
	color: #0ea06f !important;
}
#sudoku-board .ipt{
	color: #FF8080;
}