.cleantime_group {
    display: block;
    margin-top: var(--px20);
}

.cleantime_grid,
.cleantime_grid_results {
    display: inline-grid;
    gap: var(--px20);
    width: 100%;
}

.cleantime_grid {
    grid-template-columns: repeat(2, 20%) 1fr;
}

.cleantime_grid_results {
    grid-template-columns: 30% 1fr;
    margin-bottom: var(--px10);
}

.clean_label {
    color: var(--bodyColor);
    font-weight: var(--fontMed);
    padding-bottom: var(--px5);
}

/* IE Styling */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .cleantime_group {
        margin-top: 20px;
    }

    .cleantime_grid,
    .cleantime_grid_results {
    }

    .cleantime_grid {
    }

    .cleantime_grid_results {
        margin-bottom: 10px;
    }

    .clean_label {
        color: #444;
        font-weight: 500;
        padding-bottom: 5px;
    }
}