.product-faq{
	margin-top: 3rem;
}
.product-faq h4{
	font-size: 18px;
}
.product-faq details {
    box-sizing: border-box;
    margin-top: 7px;
    margin-left: 1rem;
    margin-right: 1rem;
    color: rgb(var(--txtDark));
    background: #fff;
}

.product-faq  summary {
    overflow: hidden;
    outline: none;
    display: block;
    background: #fff;
    padding: 1.75rem 0 1.5rem 3rem;
    color: rgb(var(--greyDark));
    border: 1px solid rgba(var(--greyDark), .1);
    position: relative;
    cursor: pointer;
    border-radius: 5px;
    -ms-transform: all 0.1s linear 0s;
    -webkit-transition: all 0.1s linear 0s;
    -moz-transition: all 0.1s linear 0s;
    transition: all 0.1s linear 0s;
    box-shadow: 0 0 5px rgb(0 0 0 / 7%);
}

.product-faq summary .expand-icon {
    position: absolute;
    height: 24px;
    width: 24px;
    top: 2.65rem;
    right: 2rem;
    transition: .25s transform ease;
}
.product-faq .expand-icon {
    width: 24px;
    height: 24px;
    margin-left: auto;
}

.product-faq summary:hover, details[open]>summary {
    color: rgb(var(--greenBase));
    border: 1px solid rgb(var(--greenBase));
}

.product-faq details[open]>summary .expand-icon {
    transform: rotate(90deg);
}

.product-faq .content p{
	    padding: 2rem 3rem;
}