/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * System admin module: Status report.
 *
 * Main status report theming, status report info styles, status report layout
 * and counter styles are provided by the system/base library, see
 *  - system-status-report.css
 *  - system-status-report-general-info.css
 *  - system-status-counter.css
 *  - system-status-report-counters.css
 */

.system-status-report {
  position: relative;
  padding-top: var(--space-m);
}

@media screen and (min-width: 35.5rem) {
  .system-status-report {
    padding-top: var(--space-l);
  }
}

.system-status-report__status-title {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 0.625rem 0.375rem 0.625rem 2.5rem; /* LTR */
  vertical-align: top;
  background-color: transparent;
  font-weight: normal;
}

[dir="rtl"] .system-status-report__status-title {
  padding: 0.625rem 2.5rem 0.625rem 0.375rem;
}

.system-status-report__status-icon:before {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem; /* LTR */
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
}

[dir="rtl"] .system-status-report__status-icon:before {
  right: 0.75rem;
  left: auto;
}

.system-status-report__status-icon--error:before {
  background-image: url(../../../../misc/icons/dc2323/error.svg);
}

.system-status-report__status-icon--warning:before {
  background-image: url(../../images/core/e29700/warning.svg);
}

.system-status-report__entry__value {
  padding: 1em 0.5em;
}

.cron-description__run-cron {
  display: block;
}

.claro-details__wrapper.claro-details__wrapper--system-status-report {
  margin: 0;
}

.system-status-report__row {
  display: flex;
  border-bottom: 1px solid #d3d4d9;
}

.system-status-report__row:last-of-type {
  border-bottom: none;
}
