/* Accordion */
/* colors & borders */
.wp-block-yoast-faq-block {
    border-top:1px solid #eee;
	max-width: 1080px;
}
.wp-block-yoast-faq-block .schema-faq-question {
    border-bottom:1px solid #eee;
}
.wp-block-yoast-faq-block .schema-faq-question:hover,
.wp-block-yoast-faq-block .fcp-opened .schema-faq-question {
    background-color:#fafafa;
}
.wp-block-yoast-faq-block .schema-faq-answer,
.wp-block-yoast-faq-block .fcp-opened .schema-faq-answer {
    border-bottom:1px solid #eee;
}

/* layout */
.wp-block-yoast-faq-block .schema-faq-question {
    display:block;
    padding: 25px;
    position:relative;
}
.wp-block-yoast-faq-block.fcp-faq .schema-faq-question {
    cursor:pointer;
}
.wp-block-yoast-faq-block .schema-faq-answer {
    margin:0;
    padding: 12px 10px 20px 0;
	color: #363C42 !important;
	font-size: 18px !important;
	font-weight: 300 !important;
	line-height: 32.4px !important;
}

.wp-block-yoast-faq-block .schema-faq-answer strong {
   font-weight: 700 !important;
}


/* bullet before a question */
.wp-block-yoast-faq-block .schema-faq-question:before {
    /* position gap */
    margin-top:-2px;
}

.schema-faq-section:before {
    content: "";
    display: table;
    background: url(/wp-content/uploads/2026/02/innomakler-faq-house.webp);
    width: 32px;
    height: 32px;
    background-size: contain;
    float: left;
    background-repeat: no-repeat;
    top: 20px;
    position: relative;
    z-index: 9;
}

.schema-faq-section h3 {
	margin-top: 0;
	margin-bottom: 0;
	color: #363C42 !important;
    font-size: 22px;
	line-height: 22px;
}

.wp-block-yoast-faq-block .schema-faq-question {
    padding-left: 50px;
}

.wp-block-yoast-faq-block .schema-faq-question:before {
   color: #07619f;
    font-family: 'eicons'!important;
    font-weight: 400!important;
    content: '\e92d'!important;
    display: block;
	font-size: 16px!important;
    box-sizing: border-box;
    position: absolute;
    right: 5px;
}

.wp-block-yoast-faq-block.fcp-faq .fcp-opened .schema-faq-question:before {
    top:10px;
    color: #07619f;
    font-family: 'eicons'!important;
    font-weight: 400!important;
    content:'\e946'!important;
	display: block;
    font-size: 16px!important;
    box-sizing: border-box;
    position: absolute;
    right: 5px;
}
/* adjust icons for mobile */
@media only screen and (max-width: 980px){
	.wp-block-yoast-faq-block .schema-faq-question:before{
		right: -12px;
	}
	.wp-block-yoast-faq-block.fcp-faq .fcp-opened .schema-faq-question:before {
		right: -12px;
	}
	.wp-block-yoast-faq-block .schema-faq-question{
		padding-right: 32px;
	}
}


/* transition */
.wp-block-yoast-faq-block.fcp-faq .schema-faq-answer {
    max-height:0;
    overflow:hidden;
    border-bottom-width:0;
    padding-top:0;
    padding-bottom:0;
    transition: all 0.45s ease;
}
.wp-block-yoast-faq-block .fcp-opened .schema-faq-answer {
    max-height:9999px;
    border-bottom-width:1px;
    padding-top:12px;
    padding-bottom:20px;
    transition: all 0.45s ease;
}
strong.schema-faq-question {
    font-size: 16px;
}