.f_propertyHighlights {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: center;
}

.f_propertyHighlights_title {
	display: block;
	padding: 15px 0;
	width: 100%;
	text-align: center;
	background: #3675bc;
	font-size: 18px;
	color: #fff;
	font-weight: 600;
}

.f_propertyHighlights_tabs {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
}

.f_propertyHighlights_tabs span {
	display: block;
	width: 50%;
	text-align: center;
	padding: 12px 0;
	border-bottom: 4px solid #c5c5c5;
	margin-bottom: 10px;
	cursor: pointer;
}

.finished_propertyHighlights .f_propertyHighlights_tabs div {
	border-bottom: 4px solid #eaad05;
	margin-bottom: 10px;
	border-right: none;
	color: #eaad05;
	cursor: default;
	padding: 12px 0;
	text-align: center;
	width: 100%;
}

.f_propertyHighlights_tabs span:first-child {
	border-right: 2px solid #909090;
}

.f_propertyHighlights_tabActive {
	border-bottom: 4px solid #eaad05 !important;
	color: #eaad05;
	cursor: default !important;
}

.f_propertyHighlights_body {
	background: #f7f7f7;
	border: 1px solid #bbbbbb;
	border-top: none;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.f_propertyHighlights_lines {
	padding-top: 5px;
}

.f_propertyHighlights_line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 20px;
	border-bottom: 1px solid #e4e3e3;
	text-transform: capitalize;
	font-size: 14px;
}


.f_propertyHighlights_line section {
	font-weight: 500;
    font-size: 16px;
}

.f_propertyHighlights_lines {
	display: none;
}

.f_propertyHighlights_linesActive {
	display: block;
}

.f_propertyHighlights_lineFinal section {
	color: #7aa8da;
	font-size: 18px;
}
.f_propertyHighlights_helpIcon {
	font-size: 12px;
    height: 18px;
    width: 19px;
    display: inline-block;
    margin-left: 10px;
    border: 1px solid;
    padding-left: 5px;
    border-radius: 50%;
    font-weight: 900;
    cursor: pointer;
	position: relative;
}


@media (max-width: 768px) {
	.f_propertyHighlights_line {
		font-size: 13px;
		padding: 8px 20px;
	}	

	.f_propertyHighlights_line section {
		font-size: 14px;
		margin-left: 1rem;
	}

	.f_propertyHighlights_helpIcon {
		margin-left: 5px;
	}

	.f_propertyHighlights_line.f_propertyHighlights_lineFinal {
		font-size: 12px;
	}	
	
}