.yellow-stars,
.grey-stars {
	display: flex;
	align-items: center;
}
.percentage,
.percentage-inactive {
	margin-left: 8px;
}

/* faq */
.faq {
	padding: 60px 20px;
}

.faq__title {
	margin-bottom: 60px;
	text-align: center;
	color: #484848;
	font-size: 30px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.faq-inner {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.faq-item {
	overflow: hidden;
	cursor: pointer;
	border-bottom: 1px solid rgb(136, 136, 136);
}

.faq-item__header {
	display: flex;
	justify-content: space-between;
	font-weight: bold;
	font-size: 18px;
	padding-bottom: 20px;
	padding-top: 20px;
}

.faq-item__body {
	max-height: 0;
	transition: 0.2s all;
}

.faq-item.active .faq-item__body {
	max-height: 300px;
	padding-top: 10px;
	padding-bottom: 20px;
}

.faq-item__header i {
	font-size: 24px;
	margin-left: 20px;
}

.faq-item__header .fa-minus-circle {
	display: none;
}

.faq-item.active .fa-plus-circle {
	display: none;
}

.faq-item.active .faq-item__header .fa-minus-circle {
	display: inline-block;
}
.faq-item.active .faq-item__header .fa-plus-circle {
	display: none;
}
/* end faq */
