.image_check_box{
	display            : inline-block;
	background-position: center top;
	background-repeat  : no-repeat
	;background-size   : 100px 100px;
	width              : 180px;
	height             : 200px;
	text-align         : center;
	position           : relative;
	margin             : 10px;
	cursor             : pointer;
}

.image_check_box:hover .image_check_circle.img_chk_unchecked { background-color: #EB5A5E; }

.image_check_circle {
	display            :inline-block;
	height             : 26px;
	width              : 26px;
	border             : 1px solid #EB5A5E;
	border-radius      : 50%;
	background-color   : white;
	transition         : background-color 0.4s ease;
}

.img_chk_unchecked {
	background-color   : white;
}

.img_chk_checked {
	background-color   : #231E45;
	border-color       : #231E45;
}

.img_chk_content {
	position           : absolute;
	bottom             : 14px;
	width              : 100%;
	font-weight        : bold;
	color              : #231E45;
	text-align         : center;
	line-height        : 40px;
}

#frmRequest { padding-top: 200px; }

@media (max-width: 768px) {
	#frmRequest { padding-top: 250px; }
}

/* ----------------------------------------- R A D I O   B U T T O N  --------------------------------------------------*/
/* Customize the label (the container) */
.containerR {
	position           : relative;
	padding-left       : 35px;
	margin-bottom      : 12px;
	cursor             : pointer;
	color              : #231E45;
	font-size          : 22px;
	line-height        : 25px;
	text-align         : left;
	-webkit-user-select: none;
	-moz-user-select   : none;
	-ms-user-select    : none;
	user-select        : none;
}

/* Hide the browser's default radio button */
.containerR input {
	position           : absolute;
	opacity            : 0;
	cursor             : pointer;
	height             : 0;
	width              : 0;
}

/* Create a custom radio button */
.checkmarkR {
	position           : absolute;
	top                : 0;
	left               : 0;
	height             : 26px;
	width              : 26px;
	background-color   : white;
	transition         : background-color 0.4s ease;
	border             : 1px solid #EB5A5E;
	border-radius      : 50%;
}

/* On mouse-over, highlight */
.containerR:hover input ~ .checkmarkR {
	background-color   : #EB5A5E;
}

/* When the radio button is checked, add background color */
.containerR input:checked ~ .checkmarkR {
 	background-color  : #231E45;
	border-color      : #231E45;
}

.unCheckColor {
	color              : #EB5A5E;*/
}


/* ----------------------------------------- C H E C K B O X --------------------------------------------------*/

/* Customize the label (the container) */
.containerC {
	display            : block;
	position           : relative;
	padding-left       : 35px;
	/*margin-bottom      : 12px;*/
	cursor             : pointer;
	font-size          : 16px;
	line-height        : 24px;
	-webkit-user-select: none;
	-moz-user-select   : none;
	-ms-user-select    : none;
	user-select        : none;
}

/* Hide the browser's default checkbox */
.containerC input {
	position           : absolute;
	opacity            : 0;
	cursor             : pointer;
	height             : 0;
	width              : 0;
}

/* Create a custom checkbox */
.checkmark {
	position           : absolute;
	top                : 0;
	left               : 0;
	height             : 25px;
	width              : 25px;
	background-color   : #eee;
	border             : 1px solid #888;
	border-radius      : 5px;
}

/* On mouse-over, highlight */
.containerC:hover input ~ .checkmark {
	background-color   : #EB5A5E;
}

/* When the checkbox is checked, add a background color */
.containerC input:checked ~ .checkmark {
	background-color   : #231E45;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content            : "";
	position           : absolute;
	display            : none;
}

/* Show the checkmark when checked */
.containerC input:checked ~ .checkmark:after {
	display            : block;
}

/* Style the checkmark/indicator */
.containerC .checkmark:after {
	left               : 9px;
	top                : 5px;
	width              : 5px;
	height             : 10px;
	border             : solid white;
	border-width       : 0 3px 3px 0;
	-webkit-transform  : rotate(45deg);
	-ms-transform      : rotate(45deg);
	transform          : rotate(45deg);
}
