.rankmath-faq{
  display:flex;
	flex-direction: column;
	gap:20px;
}
.rankmath-faq__item{
	border-radius: 20px;
  background: #F9F9F9;
	padding:22px 40px;
}
.rankmath-faq__q{
	font-size:18px;
	font-weight:500;
	cursor: pointer;
	list-style: none;
	display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question-text{
 	width:85%; 
}
.faq-icon{
	background-color:#EE3524;
	display:inline-flex;
	width:36px;
	height:36px;
	border-radius:100px;
	align-items: center;
  justify-content: center;
}
.rankmath-faq__item .closed-icon{
	display:none;
}
.rankmath-faq__item[open] .open-icon{
	display:none;
}
.rankmath-faq__item[open] .closed-icon{
	display:inline-flex;
	background-color:#5E7181;
}
.rankmath-faq__a{
	font-size:16px;
	font-weight:400;
	color:#7B7979;
	margin-top:20px;
	padding-top:20px;
	border-top:solid 1px #EDEDED;
}
@media only screen and (max-width:480px){
	.rankmath-faq__item{
	padding:20px;
}
}