@charset "UTF-8";

/* CSS Document */

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
/* RADIO BUTTONS  */
/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/



.ift_drop_hide {
	display: none;
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
/* RADIO BUTTONS  */
/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/




.ift_radio_set_01 {
	margin: 3px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	float: left;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	justify-content: flex-start;
	height: 100%;
	flex-direction: column;
}

.ift_radio_box {
	margin: 3px 20px 3px 0px;
	padding: 2px 0px 4px 32px;
	position: relative;
	float: left;
	cursor: pointer;
	font-family: "din500", Helvetica, Arial, sans-serif;
	font-size: 15px;
	line-height: 20px;
	color: #222222;
	text-align: left;
	flex-wrap: wrap;
	user-select: none;
}
 @media only screen and (min-width : 961px) {

.ift_radio_box {
	margin: 3px 0px 3px 0px;
	box-sizing: border-box;
}
}
 @media only screen and (min-width : 601px) and (max-width: 960px) {

.ift_radio_box {
	margin: 3px 0px 3px 0px;
	box-sizing: border-box;
	width: 33%;
}
}
 @media only screen and (min-width : 1px) and (max-width: 600px) {

.ift_radio_box {
	margin: 3px 0px 3px 0px;
	box-sizing: border-box;
	width: 100%;
	font-size: 15px;
	line-height: 20px;
}
}

/* Hide the browser's default radio button */










.ift_radio_box input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom radio button */





.ift_radio_checkmark {
	position: absolute;
	top: 0px;
	left: 0px;
	height: 25px;
	width: 25px;
	background-color: #ffffff;
	border-radius: 50%;
	border: 1px solid #aaaaaa;
	box-sizing: border-box;
}

/* On mouse-over, add a grey background color */




.ift_radio_box:hover input ~ .ift_radio_checkmark {
	background-color: #ffcc00;
}

/* When the radio button is checked, add a blue background */




.ift_radio_box input:checked ~ .ift_radio_checkmark {
	background-color: #ffcc00;
}

/* Create the indicator (the dot/circle - hidden when not checked) */




.ift_radio_checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */





.ift_radio_box input:checked ~ .ift_radio_checkmark:after {
	display: block;
}

/* Style the indicator (dot/circle) */




.ift_radio_box .ift_radio_checkmark:after {
	top: 5px;
	left: 5px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #222222;
}
