.free-reservation-statistics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 15px;
}

.free-reservation-statistics .col:first-child {
    background-color: #fdf1ad;
}

.free-reservation-statistics .col:last-child {
    background-color: #f1e079;
}

.free-reservation-statistics .col {
    padding: 25px;
}

.free-reservation-statistics .col .form-group {
    grid-column-gap: 10px;
    margin-bottom: 7px;
}

.free-reservation-statistics .col .form-group:last-child {
    margin-bottom: 0;
}

.free-reservation-statistics .col .form-group a {
    color: #bc542b;
    text-decoration: underline;
}

.free-reservation-statistics .col .form-group label {
    font-weight: normal;
    display: inline;
}

@media (max-width: 575px) {
    .free-reservation-statistics {
        grid-template-columns: 1fr;
    }
}