/*Flex items*/
.sample_reports .list {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0px;
}

.sample_reports .list-item {
    display: flex;
    padding: 0.3em;
    width: 100%;
}

@media all and (min-width: 40em) {
    .sample_reports .list-item {
        width: 50%;
    }
}

@media all and (min-width: 60em) {
    .sample_reports .list-item {
        width: 33.33%;
    }
}

.sample_reports .list-content {
    border: 1px solid silver;
    /* padding: 0.5em; */

    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 1em;
    width: 100%;
    text-align: center;
}

.sample_reports .list-content .description {
    padding-top: 10px;
    border-top: 1px solid silver;
    font-size: 0.8em;
    margin-bottom: 0px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.sample_reports .list-content .description p {
    margin-bottom: 0px;
}

.sample_reports .list-content a{
    flex: 1 0 auto;
}