

/* Invoice Section Titles
---------------------------------------------------------------------------------------------------- */

.invoice {
  .title {
    height: 30px;
    margin-bottom: 11px;
    overflow: hidden;
    text-align: center;

    &:after {
      width: 100%;
      height: 30px;
      position: absolute;
      top: 50%;
      left: 0;
      z-index: -1;
      border: 1px solid rgba(#ffffff, .75);
      border-radius: 6px;
      content: '';
    }

    h2 {
      height: 30px;
      display: inline-block;
      padding: 0 12px;
      background-color: #4086b0;
      border-radius: 15px;
      border: 1px solid rgba(#ffffff, .75);
      font-size: 12px;
      font-weight: 900;
      line-height: 28px;
      text-transform: uppercase;
    }
  }

  .unit {
    height: 19px;
    position: absolute;
    top: -1px;
    padding: 0 8px;
    margin-left: 10px;
    border-radius: 9.5px;
    background-color: rgba(#ffffff, .75);
    font-size: 10px;
    line-height: 20px;
    color: $color-blue;
  }
}

/* Import Work and Totals
---------------------------------------------------------------------------------------------------- */

@import 'invoice-items';
@import 'invoice-totals';
