:root {
    --height: 575px;
}
.faq-container {
    /* margin-bottom: 50px; */
    min-height: calc(100vh - 493px);
    /* margin-bottom: -40px; */
    /* max-height: var(--height);
    overflow-y: scroll; */
}
.faq-image {
    max-width: 100%;
}
.accordion-container {
    max-height: var(--height);
    overflow-y: scroll;
}
@media (min-width: 768px) {
    .accordion-container {
        margin-left: 40px;
    }
}
.faq-image {
    max-width: 100%;
    width: 100%;
    height: var(--height);
}
.topic-header {
    margin-top: 70px;
    margin-bottom: 50px;
}
.accordion-item {
    margin-bottom: 10px;
    border: none;
    /* box-shadow: 0px 3px 6px #00000029; */
}
.accordion-button {
    background-color: #F2F2F2;
    outline: none;
}
.accordion-button:focus {
    outline: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
}
.accordion-title {
    color: #000;
    font-size: 18px !important;
    margin-bottom: 0;
    font-weight: 600;
}
.accordion-button.collapsed::after {
    background: url('../img/plus (3).png');
    background-size: cover;
}
.accordion-button:not(.collapsed)::after {
    background: url('../img/plus (3).png');
    background-size: cover;
}
.accordion-body {
    overflow-y: scroll;
    max-height: 400px;
}
.accordion-edit {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
}

.accordion-body .faq-content-title {
    font-weight: bold;
    font-size: 18px;
}
.faq-content-text {
    font-size: 15px;
}