.custom_questions {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
.padding-b-50 {
    padding-bottom: 50px;
}
.custom_questions_icon {
    background-image: url("../img/icons/questions.svg");
    width: 100px;
    height: 100px;
    background-size: cover;
    display: flex;
    margin: 0 auto;
}
.custom_questions_content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 auto;
    width: 70%;
}
.custom_questions_content a {
    text-decoration: none;
    color: #1BB76D;
}
.custom_question {
    border-left: 2px solid #1BB76D;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    background-color: #f7f7f7;
}
.custom_question_h3 {
    font-size: 18px;
    font-weight: 700;
    color: #5F5F5F;
    margin: 0 0 20px 0;
}
.custom_question_answer span {
    color: #1BB76D;
}
.custom_question_hidden {
    z-index: 5;
    height: 0;
    overflow: hidden;
    opacity: 0;
}
.custom_question_open {
    background-color: #f7f7f7;
    position: relative;
    z-index: 10;
}
.show_custom_question_hidden {
    bottom: 0;
    height: fit-content;
    opacity: 1;
    transition: ease-in-out 200ms;
}
.custom_question_btns {
    display: none;
    padding: 20px;
    gap: 20px;
}
.custom_question_btns button {
    all: unset;
    color: #1BB76D;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
}
.question_panel {
    display: flex;
}

/*Neu Format der Frage*/

.custom_question_open_btn_v2 {
    all: unset;
    cursor: pointer;
    display: none;
    color: #1BB76D;
}
.custom_question_answer_p {
    display: inline;
}
.custom_question_answer_btn_show {
    display: inline-block;
}

@media (max-width: 776px) {
    .custom_questions_content {
        width: 100%;
    }
    .custom_questions {
        width: 95%;
    }
}