/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

/* Damages-ouvrage: align the requested guarantees as accessible option cards. */
#custom .radio_input {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 14px;
	margin: 12px 0 24px;
}

#custom .radio_input label {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	column-gap: 10px;
	align-items: center;
	justify-content: start;
	text-align: left;
	min-height: 46px;
	margin: 0;
	padding: 9px 12px;
	border: 1px solid #e1e5e8;
	border-radius: 5px;
	background: #fff;
	color: #444;
	line-height: 1.3;
	cursor: pointer;
}

#custom .radio_input .icheckbox_square-grey,
#custom .radio_input input[type="checkbox"] {
	grid-column: 1;
	margin: 0;
	justify-self: start;
}

#custom .radio_input label:hover {
	border-color: #409fff;
	background: #f7fbff;
}

#custom .radio_input > label:first-child {
	grid-column: 1;
}

@media (max-width: 767px) {
	#custom .radio_input {
		grid-template-columns: 1fr;
	}
}
