.fexe-evidences {
    .list-message-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 250px;
        width: 100%;
        border-radius: 15px;
        background-color: #eee;
        margin: 20px 0;
        padding: 20px;

        p {
            text-align: center;
        }
    }

    .fexe-evidence-item {
        padding: 20px 0;
        border-bottom: solid 1px #ccc;

        .title {
            font-size: 18px;
            font-weight: 700;
            color: #666;
        }

        .evidence-meta {
            margin: 10px 0;

            .category {
                display: inline-block;
                margin-right: 5px;
                padding: 3px 5px;
                border-radius: 2px;
                line-height: 1;
                font-weight: 700;

                &.trayectorias-educativas {
                    background-color: #FBD78D;
                }

                &.gobernanza {
                    background-color: #FFCACD;
                }

                &.talento-humano {
                    background-color: #fce0f1;
                }

                &.evaluacion {
                    background-color: #D0E8EE;
                }

                &.gestion-de-la-informacion {
                    background-color: #D6EBB4;
                }
            }
        }

        .evidence-info {
            margin: 10px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 10px;

            .info-block {
                width: 100%;
            }

            @media only screen and (min-width: 768px) {
                .info-block {
                    width: calc(50% - 20px);
                }
            }
            @media only screen and (min-width: 1024px) {
                .info-block {
                    width: calc(25% - 10px);
                }
            }

            .label {
                margin-bottom: 0;
                padding-bottom: 0;
                line-height: 1;
            }

            .values {
                font-weight: 700;
                margin-top: 0;

                .type-label {
                    display: block;
                }
            }
        }

        .evidence-sources {
            margin: 10px 0;

            h6 {
                font-weight: 700;
                margin: 0 0 5px 0;
                padding: 0;
            }

            a {
                display: block;
                font-size: 12px;
                line-height: 1.2;
                margin-bottom: 4px;

                &:hover {
                    text-decoration: underline;
                }
            }

            span.source {
                display: block;
                font-size: 12px;
                line-height: 1.2;
                margin-bottom: 6px;
                user-select: none;
            }
        }
    }
}

.fexe-evidence-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 10px;

    .filter-wrapper {
        width: 100%;
        @media only screen and (min-width: 768px) {
            width: calc(50% - 10px);
        }
        @media only screen and (min-width: 1024px) {
            width: calc(25% - 10px);
        }

        label {
            display: block;
            font-weight: 700;
        }
    }

    .recommendation-message {
        width: 100%;
        text-align: center;
        margin: 20px 0;

        .recommendations {
            font-weight: 700;
        }
    }

    .clear-filter-wrapper {
        width: 100%;
        text-align: center;

        button {
            color: #FFF;
            background-color: #E02B20;
            border: solid 1px #E02B20;
            height: 45px;
            line-height: 25px;
            width: 250px;
            border-radius: 5px;
            font-family: 'Public Sans', Helvetica, Arial, Lucida, sans-serif;
            font-size: 20px;
            padding: 10px;
            margin-bottom: 25px;
            margin-top: 25px;
            cursor: pointer;
            transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;

            &:hover {
                background-color: #ff0800;
                color: #ffffff;
            }
        }
    }
}