/**
 * Default clearfix implementation.
 *
 * @usage
 *    .box {
 *      @include clearfix;
 *    }
 */
/**
 * Casts a string into a number.
 *
 * @param {string} $value
 *    Tje string to cast to a number.
 * @return {$number}
 *    The value as number.
 */
/**
 * Split a string into a list of strings.
 *
 * @param {string} $string
 *    Tje string to be split.
 * @param {string} $delimiter
 *    The boundary string.
 * @return {list} $result
 *    The result list.
 */
.scp-table {
  background-color: #fff;
}
.sidebar .scp-table {
  background-color: transparent;
}
.scp-table td, .scp-table th {
  border: 1px solid #05598C;
}
.sidebar .scp-table td, .sidebar .scp-table th {
  border-color: #fff;
  padding: 0.5rem 0.5rem 0.5rem 0;
}
.scp-table td, .scp-table tr:nth-child(n) {
  background-color: #fff;
}
.scp-table th {
  background-color: #EDEFF8;
}
.sidebar .scp-table th {
  background-color: transparent;
  font-weight: normal;
}
.sidebar .scp-table tr {
  border-bottom: 2px solid #B6CCDF;
}