.cotent_funciona {
    flex: 1;
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 20px;
}

.content_list {
    width: 100%;
    height: 100%;
    text-align: justify;
}

.content_list .control {
    background-color: var(--primaria);
    padding: 10px;
    border-radius: 10px 10px 0 0;
}
.content_list .control strong {
    color: var(--text);
}

.content_list .content_view {
    padding: 20px;

    font-size: .8rem;
    border-radius: 0 0 10px 10px;

    background-color: #d2d2d250;
    display: none;
}

@keyframes show_question {
    0%{
        height: 0;
    }
    100%{
        height: auto;
    }
}

.content_list .content_view.ative {
    display: flex;
    animation: show_question .1s linear forwards;
}

