@charset "UTF-8";
cronk-simple-grid ion-content {
  /* stylelint-disable order/order */
}
cronk-simple-grid ion-content table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  position: relative;
}
cronk-simple-grid ion-content table tr {
  background: white;
  border-bottom: 1px solid;
}
cronk-simple-grid ion-content table tr.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(1%, 1fr));
}
cronk-simple-grid ion-content table th, cronk-simple-grid ion-content table td {
  padding: 0.8rem 1rem;
}
cronk-simple-grid ion-content table th {
  background: white;
  position: sticky;
  top: 0;
}
cronk-simple-grid ion-content table th.primary {
  background: var(--cronk-color-primary-rgb);
  color: var(--cronk-color-primary-contrast);
}
cronk-simple-grid ion-content table th.secondary {
  background: var(--cronk-color-secondary-rgb);
  color: var(--cronk-color-secondary-contrast);
}
cronk-simple-grid ion-content table th.tertiary {
  background: var(--cronk-color-tertiary-rgb);
  color: var(--cronk-color-tertiary-contrast);
}
cronk-simple-grid ion-content table th.dark {
  background: var(--cronk-color-dark-rgb);
  color: var(--cronk-color-dark-contrast);
}
cronk-simple-grid ion-content table th.sort-desc::before {
  content: "▼";
  padding-right: 0.5rem;
  font-family: sans-serif;
}
cronk-simple-grid ion-content table th.sort-asc::before {
  content: "▲";
  padding-right: 0.5rem;
  font-family: sans-serif;
}
cronk-simple-grid ion-content table td span, cronk-simple-grid ion-content table td div {
  line-height: 1.5;
}
cronk-simple-grid ion-content table td span {
  background: #eee;
  color: dimgrey;
  display: none;
  font-size: 10px;
  font-weight: bold;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  left: 0;
}
@media (max-width: 800px) {
  cronk-simple-grid ion-content {
    /* Simple CSS for flexbox table on mobile */
  }
  cronk-simple-grid ion-content table thead {
    left: -9999px;
    position: absolute;
    visibility: hidden;
  }
  cronk-simple-grid ion-content table tr, cronk-simple-grid ion-content table tr.grid {
    border-bottom: 0;
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 40px;
  }
  cronk-simple-grid ion-content table td {
    border: 1px solid;
    margin: 0 -1px -1px 0;
    padding-top: 35px;
    position: relative;
    width: 100%;
  }
  cronk-simple-grid ion-content table td span {
    display: block;
  }
}