.rdate {
    font-size: .9rem;
    font-style: italic;
}
.btnContainer {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
.reportMeasurements {
    display: flex;
    flex-wrap:wrap;
    row-gap: 6px;
    column-gap: 6px;
    flex: 0 50%;
}
#filter input {
    max-width: 500px;
    margin-bottom: 1em;
    margin-right: 1em;
}
.reportPassed {
    font-size: 3rem;
    line-height: normal;
    color: green;
    text-align: center;
}
.coaReport h3 {
    text-align: center;
    border: 1px solid;
    color: white;
    background: #AFC4C0;
}
.reportMeasurements .reportItem {
    flex: 0 1 32%;
    border: 3px solid #000000;
    padding: 10px 2px 2px 2px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.reportMeasurements .reportValue {
    font-size: 2rem;
    font-weight: bold;
    color: #024453;
    margin-bottom: 10px
}
.reportInfo .reportLabel {
    font-weight: 700;
}
@media (max-width: 768px) {
    .coaReport {
        margin: .5em;
        padding: 0;
    }
    .reportMeasurements .reportItem {
        flex: 0 1 49%;
    }
}
@media (min-width: 768px) {
    .coaReport {
        flex: 1 1 auto;
        border: 2px solid #024453;
        margin: 50px;
        padding: 20px 50px;
        border-radius: 5px;
    }
    .coaReport .summary {
        display: flex;
        justify-content: space-around;
        margin: 2rem auto;
    }
    .reportMeasurements {
        display: flex;
        flex-wrap: wrap;
        row-gap: 6px;
        column-gap: 6px;
        flex: 0 50%;
    }
}