.faq-question {
    display: block;
    font-size: 1.15em;
    background-color: #F5F5F5;
    margin-bottom: 4px;
    cursor: pointer;
    font-weight: 500;
    color: #252525 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    padding-left: 7px;
}
 
.active, .faq-question:hover {
    background-color: rgba(180, 180, 180, 0.686)
  }
 
.faq-answer {
    display: none;
    padding-left: 7px;
    padding-bottom:10px;
}
 
.active .faq-question-expand, .faq-question:hover .faq-question-expand{
     background-color: transparent;
  }
 
.faq-question-expand{
    height: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 2px;
    /* float: right;
    height: 100%;
    background-color: aquamarine;*/
    border: none;
    background-color: inherit;
}
 
.faq-question-expand img{
    height: 24px;
    width: 24px;
    background-color: none;
    transform: rotate(0deg);
}
.content{
	margin-bottom:5px;
}
.active button img {
  transform: rotate(180deg) !important;
}