/**
 * A mixin for creating a chevron on the given element.
 * This should be used within the pseudo `::before` or `::after`
 * But can be used anywhere.
 * @param  {String} $direction:    down           The direction of the chevron
 * @param  {Color}  $color:        $color-primary The color of the chevron.
 * @param  {Number} $size:         .5em           The size of the chevron (width, height).
 * @param  {Number} $border-width: rem-calc(2)    The border with of the chevron.
 *                                                 This makes it thicker/thinner.
 */
table.triple-5-drive {
  width: 100%;
  max-width: 600px; }
  table.triple-5-drive thead th {
    border-bottom: 1px solid #414141; }
  table.triple-5-drive th,
  table.triple-5-drive td {
    padding: 5px;
    border-bottom: 1px solid #cacaca;
    line-height: 1.3em;
    text-align: left; }
