/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Perform a value into a percentage value.
 * @param {number} $value - The value which should be converted.
 * @returns {number} $value - The percentage.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
.signature-background {
  background-color: transparent; }
  .signature-background .action {
    margin: 10px 0; }

#driver-application-container {
  padding: 20px;
  overflow: hidden; }
  #driver-application-container h2 {
    width: auto;
    max-width: 1410px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0; }
  #driver-application-container input.ng-invalid,
  #driver-application-container select.ng-invalid {
    border-color: red;
    color: red; }
    #driver-application-container input.ng-invalid span,
    #driver-application-container select.ng-invalid span {
      color: red; }
  #driver-application-container input.ng-invalid,
  #driver-application-container table {
    border-collapse: collapse; }
    #driver-application-container input.ng-invalid tr th,
    #driver-application-container table tr th {
      padding: 20px 0px;
      border-bottom: 1px solid black; }
    #driver-application-container input.ng-invalid tr td,
    #driver-application-container table tr td {
      padding: 20px 10px; }
  #driver-application-container a {
    text-decoration: underline;
    color: blue; }
  #driver-application-container .highlight {
    color: red; }
  #driver-application-container .col-1 {
    float: left;
    clear: none;
    width: 74.25%;
    margin-left: 0;
    margin-right: 3%;
    overflow: hidden; }
    #driver-application-container .col-1:last-child {
      margin-right: 0; }
    #driver-application-container .col-1 #form-views {
      width: 100%; }
  #driver-application-container .col-2 {
    float: left;
    clear: none;
    width: 22.75%;
    margin-left: 0;
    margin-right: 3%;
    overflow: hidden; }
    #driver-application-container .col-2:last-child {
      margin-right: 0; }
  #driver-application-container .pure-u-1 {
    margin: 10px 0; }
  #driver-application-container .nav {
    margin: 30px 0; }
  #driver-application-container .pure-button {
    color: black;
    text-decoration: none;
    box-shadow: none;
    text-shadow: none; }
  #driver-application-container .pure-button:hover {
    background-image: none;
    background-color: #ccc;
    text-shadow: none; }
  #driver-application-container .menu {
    font-size: 24px;
    font-size: 1.5rem;
    color: #0c2c82;
    border: 2px solid #f9aa51;
    overflow: hidden; }
    #driver-application-container .menu ul {
      width: 100%;
      margin: 0;
      padding: 0;
      overflow: hidden; }
      #driver-application-container .menu ul li {
        float: left;
        clear: left;
        width: 100%;
        margin: 0;
        padding: 5px;
        display: block; }
      #driver-application-container .menu ul .active {
        color: white;
        background: black; }
  #driver-application-container .personal-history .personal-history-acknowledge {
    margin: 100px 0 0 0; }
  #driver-application-container .work-history .record {
    padding: 0 0 30px 0;
    border-bottom: 2px solid #f9aa51; }
    #driver-application-container .work-history .record label {
      display: inline-block;
      margin: 5px 0; }
  #driver-application-container .work-history .record.last {
    margin-bottom: 40px;
    border-bottom: 0; }
  #driver-application-container .work-history .nav {
    margin: 10px 0; }
  #driver-application-container .work-history button {
    margin: 0 10px; }
  #driver-application-container .driver-history .record {
    padding: 0 0 30px 0;
    border-bottom: 2px solid #f9aa51; }
    #driver-application-container .driver-history .record label {
      display: inline-block;
      margin: 5px 0; }
  #driver-application-container .driver-history .record.last {
    margin-bottom: 40px;
    border-bottom: 0; }
  #driver-application-container .driver-history .nav {
    margin: 10px 0; }
  #driver-application-container .driver-history button {
    margin: 0 10px; }
  #driver-application-container .review .review-question div {
    padding: 10px 0; }
    #driver-application-container .review .review-question div label {
      color: blue; }
  #driver-application-container .signature-background {
    width: 100%;
    height: 100%;
    position: relative; }
    #driver-application-container .signature-background .signature {
      position: relative; }

.background-authorization .section {
  border: 2px solid black;
  margin: 10px 0;
  padding: 5px; }

a.doc {
  font-size: 14px;
  font-weight: bold; }

a.doc:hover {
  color: #f9aa51; }

@media only screen and (max-width: 900px) {
  #driver-application-container {
    padding: 0 10px; }
    #driver-application-container .col-1 {
      float: left;
      clear: none;
      width: 100%;
      margin-left: 0;
      margin-right: 3%; }
      #driver-application-container .col-1:last-child {
        margin-right: 0; }
    #driver-application-container .col-2 {
      float: left;
      clear: none;
      width: 100%;
      margin-left: 0;
      margin-right: 3%; }
      #driver-application-container .col-2:last-child {
        margin-right: 0; }
    #driver-application-container .pure-u-1-2 {
      width: 100%; } }
.alert-danger {
  font-size: 1.2em;
  font-weight: bold;
  color: red;
  text-decoration: underline; }

#poststuff #pvda_peopletrail_meta_box .inside {
  padding: 0;
  margin: 0; }

.driver-application h2 {
  font-size: 2em; }
.driver-application strong {
  font-size: 15px; }
