.diagnostics-body {
    background: #f0f4f7;
    padding: 23px 0px;
}

.diagnostics-body > .row {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.category-body {
    padding: 20px 20px;
    background-color: #fff;
    color: var(--dark-color);
    border-radius: 15px;
    box-shadow: 0 2px 24px rgba(26, 61, 107, 0.08),
        0 0 2px rgba(38, 54, 75, 0.08);
}

.category-body.detail {
    padding: 0px;
    box-shadow: none;
    margin-bottom: 25px;
}

.category-body > ._name {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 18px;
    text-decoration: none;
    display: block;
}

.category-body > ._diagnostics {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row wrap;
    gap: 10px;
    max-height: 5.5em;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.diagnostic-body {
}

.diagnostic-body > ._name {
    display: inline-block;
    padding: 5px 10px;
    background: #f0f4f7;
    border-radius: 10px;
    font-weight: 400;
    font-size: 15px;
}

.category-body > ._btn-all {
    color: #969696;
    border-bottom: 1px solid #dbdbdb;
    padding: 5px 10px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    margin-top: 15px;
    display: none;
}
