.checkbox, .radio {
		font-family: "SourceSansPro",Helvetica,Arial,sans-serif;
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 20px;
		min-height: 20px;
		padding-left: 32px;
		position: relative;
}
.checkbox input, .radio input {
		display: none;
		outline: medium none !important;
}
.checkbox .icons, .radio .icons {
		color: #02baf2;
		cursor: pointer;
		display: block;
		font-size: 16px;
		height: 20px;
		left: 0;
		position: absolute;
		text-align: center;
		top: 0;
		width: 20px;
}
.checkbox .icons .first-icon, .checkbox .icons .second-icon, .radio .icons .first-icon, .radio .icons .second-icon {
		background: white none repeat scroll 0 0;
		border: 1px solid #d6e1e5;
		height: 20px;
		left: 0;
		opacity: 1;
		position: absolute;
		top: 0;
		width: 20px;
}
.checkbox .icons .first-icon::before, .checkbox .icons .second-icon::before, .radio .icons .first-icon::before, .radio .icons .second-icon::before {
		bottom: 1px;
		left: 0;
		position: relative;
}
.checkbox .icons .second-icon, .radio .icons .second-icon {
		opacity: 0;
}
.checkbox.checked .first-icon, .radio.checked .first-icon {
		opacity: 0;
}
.checkbox.checked .second-icon, .radio.checked .second-icon {
		border-color: #b2c6cd;
		opacity: 1;
		transition: color 0.25s linear 0s;
}
.checkbox.disabled, .radio.disabled {
		cursor: default;
}
.checkbox.disabled .first-icon, .radio.disabled .first-icon {
		background: #e1eef3 none repeat scroll 0 0;
		opacity: 1;
}
.checkbox.disabled .second-icon, .radio.disabled .second-icon {
		background: #e1eef3 none repeat scroll 0 0;
		opacity: 0;
}
.checkbox.disabled.checked .first-icon, .radio.disabled.checked .first-icon {
		opacity: 0;
}
.checkbox.disabled.checked .second-icon, .radio.disabled.checked .second-icon {
		color: #b2c6cd;
		opacity: 1;
}
.radio .icons .first-icon, .radio .icons .second-icon {
		border-radius: 50px;
}
.radio.checked .second-icon::before {
		background: #02baf2 none repeat scroll 0 0;
		border-radius: 8px;
		content: " ";
		height: 8px;
		left: 50%;
		margin-left: -4px;
		margin-top: -4px;
		position: absolute;
		top: 50%;
		width: 8px;
}
.radio.disabled.checked .second-icon::before {
		background: #93a4aa none repeat scroll 0 0;
}
.checkbox .icons .first-icon, .checkbox .icons .second-icon {
		border-radius: 4px;
}