

.selectBox .box2 {
	display: flex;
	flex-flow: row wrap;
	justify-content: start;
	align-content: space-between;
	align-items: start;
	
	padding: 20px;
}

.box2.place label {
	flex-flow: column;
	padding: 0 0 20px;
}

.box2.place span.radiobox,
.box2.place span.checkbox {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-content: center;
	align-items: start;
	
	flex: 0 0 180px;
	position: relative;
	z-index: 1;
	margin-right: 0;
	margin-bottom: 8px;
	padding: 4px;
	width: 180px;
	height: 180px;
	background: #fff;
	border: var(--border-color-darkgray) solid 1px;
	border-radius: 4px;
	cursor: pointer;
}

.baseForm input:checked + span.checkbox,
.selectBox input:checked + span.radiobox,
.selectBox input:checked + span.checkbox
{
	border: var(--key-color) solid 6px;
}


.selectBox input:checked + span.radiobox::brfore,
.selectBox input:checked + span.checkbox::brfore 
{
	content: '';
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.7);
	
}








