/*
 * Visual
 */

/* Desktop + base */
.checkboxes{
	column-count: 2;
	column-gap: 2em;
}
.checkbox-replacement, .radio-replacement {
    color: #898989;
}
input[type=checkbox]:checked + .checkbox-replacement, input[type=radio]:checked + .radio-replacement {
    color: #ce2b1c;
}
input[type=checkbox]:hover + .checkbox-replacement, input[type=radio]:hover + .radio-replacement {
    color: #ce2b1c;
}
.person {
	background:		#FFF;
	padding-top:		20px;
	padding-bottom:		20px;
	margin-bottom:		20px;
}

.person h3 {
	margin-top:		10px!important;
}



/* Mobile */
@media screen and (max-width: 767px) {
	
}

/* Tablet */
@media screen and (min-width: 768px) and (max-width: 991px) {
}

/* Small desktop */
@media screen and (min-width: 992px) and (max-width: 1199px) {
	.person {
		
	}
}

/* Desktop */
@media screen and (min-width: 1199px) {
	.person {
		
	}
}