#solutions_widget_faq {
}
#solutions_widget_faq_container {
    background-color: var(--our-light-grey-color);
}
#solutions_widget_faq_content {
    flex-direction: column;
}
#solutions_widget_faq_title {
    margin: 20px 0;
    display: flex;
    flex-direction: row;
    /*border: solid 1px blue;*/
}
#solutions_widget_faq_band {
    display: flex;
    flex-direction: row;
    /*border: solid 1px blue;*/
}
.solutions_widget_faq_band_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*border: solid 1px red;*/
}
.faq_band_content {
    width: 90%;
    margin: 20px;
    display: flex;
    flex-direction: column;
    /*border: solid 1px black;*/
}
.solutions_widget_faq_band_question {
    padding: 0 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
}
.solutions_widget_faq_band_question_text {
    display: flex;
    flex-direction: row;
}
/*
.solutions_widget_faq_band_question_icon:not(.active)::after {
    content: '+';
}
.solutions_widget_faq_band_question_icon.active::after {
    content: '-';
}
*/
.faq_band_reply {
    display: none;
    margin: 10px 0 0 10px;
    width: 80%;
    /*border: solid 1px green;*/
}
.faq_band_reply.active {
    display: block;
}

@media all and (min-width: 650px) {
}
@media all and (min-width: 900px) {
}
@media all and (min-width: 1200px) {
    #solutions_widget_faq_band {
        /*flex-direction: column;*/
    }
    .solutions_widget_faq_band_container {
        /*flex-direction: row;*/
    }
    .faq_band_content {
        /*width: 20%;*/
        /*margin: 40px;*/
    }
} 