.form-control{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-top: 15px;
	margin-bottom: 15px;
}

.form-control .field-checkbox{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}
.form-control .field-checkbox input[type="checkbox"]{
	width: 18px;
	height: 18px;
}
.form-control .field-checkbox  label{
	cursor: pointer;
	margin-left: 10px;
	font-size: 14px;
	font-weight: 400;
	color : var(--default-color);
}

.form-control  .form-control-icon{
	width: 25px;
	height: 25px;
	border-radius: 25px;
	background-color: #B54949;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.form-control  .form-control-icon img{
	max-width: 16px;
}

.search{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	border:1px solid var(--border-color);
	height: 45px;
}
.search input{
	width: 100%;
	height: 45px;
	outline: none;
	border:0px;
	background-color: transparent;
}
.search .icon{
	min-width: 45px;
	width: 45px;
	height: 45px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.form-control.active label{
	font-weight: 700;
}