
/* The Invoice Intro
---------------------------------------------------------------------------------------------------- */

#intro {
  .inner {
    padding: 42px 0 29px;

    .column {
      width: 50%;
      float: left;

      &:last-of-type {
        text-align: right;
      }

      @media ('max-width: 480px') {
        width: 100%;
        text-align: center;

        &:last-of-type {
          margin-top: 35px;
          text-align: center;
        }
      }

      span {
        font-size: 12px;
        color: rgba(#ffffff, 0.25);
        font-weight: 400;
        text-transform: uppercase;   
      }

      h2 {
        width: 100%;
        float: left;
        padding-bottom: 7px;
        margin-bottom: 6px;
        border-bottom: 1px solid rgba(#ffffff, 0.1);
        font-size: 18px;
        font-weight: 900;
      }

      ul {
        li:first-of-type {
          font-weight: 400;
          color: #ffffff;
        }
      }

      a {
        border-bottom: 1px dashed rgba(#ffffff, 0.1);
        color: #ffffff;
        font-weight: 400;
      }
    }
  }
}