.best4u-im-faq {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px 0;
}

.best4u-im-faq .bim-item {
    width: 100%;
    margin-top: 15px;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 20px;
    box-sizing: border-box;
}

.best4u-im-faq.two-columns .bim-item {
    width: 49%;
    margin-bottom: auto;
}

.best4u-im-faq .bim-question {
    border-bottom: solid 3px rgba(255, 255, 255, 0.75);
    padding-bottom: 5px;
}

.best4u-im-faq .bim-answer {
    margin-top: 10px;
}

.best4u-im-faq .bim-dropdown .bim-answer {
    max-height: 0;
    transition: all 200ms;
    overflow: hidden;
    margin-top: 0;
}

.best4u-im-faq .bim-dropdown.open .bim-answer {
    margin-top: 10px;
}

.best4u-im-faq .bim-dropdown .bim-question {
    cursor: pointer;
    transition: all 200ms;
    border-bottom: solid 0 rgba(255, 255, 255, 0.75);
    padding-bottom: 0;
}

.best4u-im-faq .bim-dropdown.open .bim-question {
    border-bottom: solid 3px rgba(255, 255, 255, 0.75);
    padding-bottom: 5px;
}

.best4u-im-faq .bim-dropdown .bim-question:after {
    content: '+';
    font-weight: 600;
    display: inline-block;
    width: 10px;
    text-align: center;
    float: right;
}

.best4u-im-faq .bim-dropdown.open .bim-question:after {
    content: '-';
}

@media (max-width: 1200px) {
    .best4u-im-faq.two-columns .bim-item {
        width: 100%;
    }
}