/**
 * @file
 * Mediteran styles for the System Status general info.
 */
.system-status-general-info__header {
  overflow: hidden;
  font-weight: 300;
  margin: 10px 0 20px 0;
  font-size: 26px;
}

.system-status-general-info__items {
  display: flex;
  flex-direction: column;
}

.system-status-general-info__item {
  padding: 0 5px 40px 5px;
  box-sizing: border-box;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .system-status-general-info__items {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .system-status-general-info__item {
    padding: 0 40px 40px 5px;
    box-sizing: border-box;
    width: 33.3333333333%;
  }

  .system-status-general-info__item:nth-child(2) {
    width: 66.6666666666%;
    padding-right: 0;
  }

  .system-status-general-info__item:last-child {
    border-right: none;
    padding: 0;
  }
}

.system-status-general-info__item-icon {
  display: inline-block;
  height: 55px;
  width: 55px;
  vertical-align: top;
}
.system-status-general-info__item-icon:before {
  content: "";
  background-size: 35px;
  background-position: 50% center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: block;
}
.system-status-general-info__item-icon--d8:before {
  background-image: url(../../../images/icons/cccccc/d8-logo.svg);
}
.system-status-general-info__item-icon--clock:before {
  background-image: url(../../../images/icons/cccccc/clock.svg);
}
.system-status-general-info__item-icon--server:before {
  background-image: url(../../../images/icons/cccccc/server.svg);
}
.system-status-general-info__item-icon--php:before {
  background-image: url(../../../images/icons/cccccc/php-logo.svg);
  background-size: 45px;
}
.system-status-general-info__item-icon--database:before {
  background-image: url(../../../images/icons/cccccc/database.svg);
  background-size: 30px;
}

.system-status-general-info__item-details {
  box-sizing: border-box;
  display: inline-block;
  width: calc(100% - 60px);
  padding-left: 10px; /* LTR */
  position: relative;
}
[dir="rtl"] .system-status-general-info__item-details {
  padding-right: 10px;
  padding-left: 0;
}

.system-status-general-info__item-title {
  margin: 15px 0;
  color: #0678be;
  text-transform: uppercase;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.system-status-general-info__sub-item-title {
  margin: 0;
  font-size: 14px;
}

.system-status-general-info__sub-item__title {
  font-weight: bold;
}
.system-status-general-info__sub-item__value {
  display: block;
}

.system-status-general-info__run-cron {
  margin: 1em 0 0;
}

@media screen and (min-width: 60em) {
  .system-status-general-info__item-icon {
    width: 55px;
    height: 55px;
  }
  .system-status-general-info__item-icon:before {
    background-size: 35px;
  }
  .system-status-general-info__item-icon--php:before {
    background-size: 55px;
  }

  .system-status-general-info__run-cron {
    position: absolute;
    top: 1em;
    right: 1em; /* LTR */
    margin-top: 0;
  }
  [dir="rtl"] .system-status-general-info__run-cron {
    left: 1em;
    right: auto;
  }
}

@media screen and (max-width: 48em) {
  .system-status-general-info__header {
    display: none;
  }
  .system-status-general-info {
    border-top: 0;
    margin-top: 25px;
  }
}

.system-status-general-info__description {
  position: relative;
}
.system-status-general-info__description .cron-description__run-cron {
  position: relative;
  margin-top: 15px;
}

@media screen and (min-width: 480px) {
  .system-status-general-info__description .cron-description__run-cron {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: -20px;
  }
}
