.f_order .f_body .f_buttons {
	display: flex;
	justify-content: space-between;
	background: #EAEAEA;
	border-radius: 20px;
	margin: 15px 0;
}
.f_order input[type="text"] {
	display: block;
	background: transparent;
	padding: 10px 20px;
	width: 60%
}
.f_order .f_polit {
	font-size: 12px;
	display: block;
	color: #5C5C5C;
}
.f_order .f_polit a {
	font-size: inherit;
}
.f_order .f_submit {
	display: block;
	border-radius: 20px;
	height: auto;
    width: 40%;
    line-height: normal;
    font-size: 14px;
    padding: 15px 10px;
    box-shadow: none;
	cursor: pointer;
}
.f_order .f_body .checkbox {
	display: flex;
    margin: 0 0 10px;
	cursor: pointer;
	user-select: none;
	position: relative;
}
.f_order .f_body .checkbox input[type=checkbox] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}
.f_order .f_body .checkbox label {
	display: inline-block;
	position: relative;
	padding: 0 0 0 25px;
	line-height: 18px;
	font-size: 14px;
	font-weight: 700;
}
.f_order .f_body .checkbox label:before {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	position: absolute;
	left: 0;
	top: 0;
	border: 2px solid #000;
	cursor: pointer;
}
.f_order .f_body .checkbox input[type=checkbox]:checked + label:after {
	content: "";
    left: 4px;
    top: 4px;
    width: 10px;
    height: 10px;
    background-color: #000;
    display: block;
    position: absolute;
	z-index: 1;
}
.f_order .f_body .radio {
	display: flex;
    margin: 0 0 10px;
	cursor: pointer;
	user-select: none;
	position: relative;
	gap: 10px;
}
.f_order .f_body .radio input[type=radio] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}
.f_order .f_body .radio label {
	line-height: 18px;
	font-size: 14px;
}
.f_order .f_body .radio label:nth-child(odd) {
	display: inline-block;
	position: relative; 
	padding: 0 0 0 20px; 
	line-height: 18px;
}
.f_order .f_body .radio label:nth-child(odd):before {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	border: 2px solid #000;
	cursor: pointer;
	border-radius: 50%;
}
.f_order .f_body .radio label.active:after {
	content: "";
    left: 4px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #000;
    display: block;
    position: absolute;
	z-index: 1;
}