.checkIn, .cIPersonContent {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.cIField {
	width: 49%;
	margin-bottom: 20px;
	text-align: left;
}
.cIFieldSubmit {
	width:100%;
}
.cIRadio {
	display: none;
	
}
/*
.cICheckbox {
	width: 0;
	height: 0;
	border: 1px solid transparent;
}
.cICheckbox+label {
	position: absolute;
	display: inline-block;
	width: 40px;
	height: 40px;
	border: 1px solid #c0b2a8;
	background-color: #ffffff;
	line-height: 40px;
	text-align: center;
	cursor:pointer;
	text-transform: uppercase;
}
.cICheckbox:checked+label:after {

    content: '';
    position: absolute;
    left: 12px;
    top: 12px;
    width: 6px;
    height: 12px;
    border-top: 0px solid transparent;
    border-left: 0px solid transparent;
    border-right: 2px solid #268fa2;
    border-bottom: 2px solid #268fa2;
    -webkit-transform: rotateZ(37deg);
    transform: rotateZ(37deg);
    -webkit-transform-origin: 20% 40%;
    transform-origin: 100% 100%;
}
.cIPrivacyLabel {
	padding-left: 55px;
	line-height: 40px;
}*/
.cIRadio+label {
	display: inline-block;
	width: 40px;
	height: 40px;
	border: 1px solid #c0b2a8;
	background-color: #ffffff;
	line-height: 40px;
	text-align: center;
	cursor:pointer;
	text-transform: uppercase;
}
.cIRadio:checked+label {
	background-color: #2fa0b0;
	color: #ffffff;
}
#cIPersons, #cIPersonAdd {
	width: 100%;
	text-align: left;
	margin-bottom: 20px;
}
#cIPersonAdd {
	line-height: 40px;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: bold;
}
#cIPersonAdd .glyphicon, .cIPersonLabel .glyphicon {
	font-size: 20px;
	margin-right: 5px; 
	color: #8b705d;
	top: 2px;
}
.cIPersonLabel .glyphicon-chevron-down {
	float: right;
	cursor: pointer;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.cIPersonLabel .glyphicon-minus {
	cursor: pointer;
}
.cIPersonLabel {
	padding-bottom: 5px;
	margin: 26px 0;
	border-bottom: 2px solid #8b705d;
	text-align: left;
	text-transform: uppercase;
	font-weight: bold;
}
.cIHidePerson .glyphicon-chevron-down {
	-moz-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.cIPersonContent {
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	max-height: 400px;
}
.cIHidePerson .cIPersonContent {
	max-height: 0;
	overflow: hidden;
}
#cIAddPerson .cIPersonWrap {
	display: none;
	position: relative;
}
@media screen and (max-width: 600px) {
	.cIField {
		width: 100%;
	}
}