/* ======================================================= *\

        CONTENTS

\* =======================================================

WORK IN PROGRESS....


/* ======================================================= *\

        BASE STYLES

\* ======================================================= */

@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700);

.esl-css *,
.esl-css *:after,
.esl-css *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.esl-css section {
  clear: both;
  padding: 0px;
  margin: 0;
  position: relative;
}

/*  BASE FONTS  ============================================================ */

@font-face {
  src: url('nab-forms/css/fonts/corpid-heavy.otf');
  font-family: 'CorpidHeavy';
}

.esl-css h1 {
  font-size: 2.75em;
  font-family: 'CorpidHeavy';
  margin: 1.15em 0 0.8em 0;
}

.esl-css h2 {
  font-size: 1.67em;
  font-family: 'SourceSansRegular', sans-serif;
  font-weight: 700;
  margin: 1.15em 0 0.8em 0;
}

.esl-css h3 {
  font-size: 1.5em;
  font-family: 'SourceSansRegular', sans-serif;
  font-weight: 700;
  margin: 1.15em 0 0.8em 0;
}

.esl-css h4 {
  font-size: 1.35em;
  font-family: 'SourceSansRegular', sans-serif;
  font-weight: 700;
  margin: 1.15em 0 0.8em 0;
}

.esl-css p {
  margin: 0.42857em 0 0.8em 0;
}

.esl-css small {
  font-size: .67em;
  display: block;
  margin: 1.42857em 0 0.8em 0;
}

/*  CSS FADING ELEMENTS     ==================== */

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Firefox < 16 */

@-moz-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Safari, Chrome and Opera > 12.1 */

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Internet Explorer */

@-ms-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Opera < 12.1 */

@-o-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ======================================================= *\

        GLOBAL CLASSES

\* ======================================================= */

/*  GRID LAYOUT   =========================== */

.esl-css .col {
  display: block;
  float: left;
  margin: 1% 0 1% 1.6%;
}

.esl-css .col:first-child,
.esl-css .col:first-of-type {
  margin-left: 0;
}

/* all browsers except IE6 and lower */

.esl-css .span_12_of_12 {
  width: 100%;
}

.esl-css .span_11_of_12 {
  width: 91.53%;
}

.esl-css .span_10_of_12 {
  width: 83.06%;
}

.esl-css .span_9_of_12 {
  width: 74.6%;
}

.esl-css .span_8_of_12 {
  width: 66.13%;
}

.esl-css .span_7_of_12 {
  width: 57.66%;
}

.esl-css .span_6_of_12 {
  width: 49.2%;
}

.esl-css .span_5_of_12 {
  width: 40.73%;
}

.esl-css .span_4_of_12 {
  width: 32.26%;
}

.esl-css .span_3_of_12 {
  width: 23.8%;
}

.esl-css .span_2_of_12 {
  width: 15.33%;
}

.esl-css .span_1_of_12 {
  width: 6.86%;
}

/*   DIV CLASSES    ============================ */

.esl-css .container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.esl-css .group:before,
.esl-css .group:after {
  content: "";
  display: table;
}

.esl-css .group:after {
  clear: both;
}

.esl-css .group {
  zoom: 1;
}

.esl-css .top-label {
  display: block;
  margin: 0 0 10px 0;
}

/* ======================================================= *\

        FORM CLASSES/ELEMENTS

\* ======================================================= */

.esl-css input[type=text],
.esl-css input[type=number],
.esl-css input[type=email],
.esl-css input[type=password],
.esl-css input[type=date],
.esl-css textarea,
.esl-css select {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border: 1px solid #C2CDD6;
  padding-left: .67em;
  font-family: 'SourceSansRegular', sans-serif;
  background: white;
  max-width: 100%;
}

.esl-css input:disabled {
  border: 1px solid darkgray;
  background: #C2CDD6;
}

/* Display element as clickable when replaced by label */

.esl-css input + label {
  cursor: pointer;
}

/* Remove scrollbar from Number input field */

.esl-css input[type=number]::-webkit-inner-spin-button,
.esl-css input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.esl-css textarea {
  resize: vertical;
  min-height: 130px;
}

.esl-css label {
  display: inline-block;
  vertical-align: middle;
}

.esl-css ::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.esl-css textarea:focus,
.esl-css input:focus,
.esl-css select:focus {
  outline: 0;
  box-shadow: inset 0 0 0px 1px #737F89;
}

.esl-css .radio-label,
.esl-css .checker-label,
.esl-css .tab-select {
  background: white;
}

/*   DROPDOWNS  =========================================== */

.esl-css select {
  outline: none;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  min-width: ;
}

.esl-css option {
  font-family: 'SourceSansRegular', sans-serif;
}

/* Hides default arrow in IE */

.esl-css select::-ms-expand {
  display: none;
}

/* Targetting Webkit browsers only.  */

@media screen and (-webkit-min-device-pixel-ratio:0) {
  .esl-css select {
    padding-right: 25px;
  }
}

.esl-css .select-wrap {
  position: relative;
  z-index: 1;
}

/* Custom chevron for Dropdown */

.esl-css .select-wrap:after {
  z-index: 3;
  height: 20px;
  width: 20px;
  content: url(nab-forms/css/img/chevron.svg);
  color: #737F89;
  right: 5px;
  top: 10px;
  position: absolute;
  pointer-events: none;
  /* Allows click through in IE9 */
}

/*   RADIOS  =========================================== */

.esl-css input[type=radio] {
  display: none;
}

.esl-css .radio {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.esl-css .radio-label,
.esl-css .radio-label-disabled {
  height: 26px;
  width: 26px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 13px;
  border: 4px solid #C2CDD6;
}

.esl-css .radio-content {
  display: block;
  vertical-align: middle;
  text-align: center;
  color: white;
  font-size: .8em;
  height: 12px;
  width: 12px;
  border-radius: 6px;
  margin: 4px auto;
  margin: 3px 0 0 -7px;
}

.esl-css input[type=radio]:checked + .radio-label {
  background-color: white;
  border: 4px solid #697F00;
  color: #697F00;
}

.esl-css input[type=radio]:checked + .radio-label .radio-content {
  background-color: #697F00;
}

.esl-css input[type=radio]:disabled + .radio-label {
  border: 4px solid darkgray;
  background: #C2CDD6;
}

.esl-css input[type=radio]:disabled + .radio-label .radio-content {
  background-color: darkgray;
}

/*   CHECKBOXES  =========================================== */

.esl-css .checker-wrap {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  margin-bottom: 8px;
}

.esl-css .checker-label {
  height: 26px;
  width: 26px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 5px;
}

.esl-css .checker-content {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  color: white;
  font-size: .8em;
  height: 100%;
  width: 100%;
  border: 3px solid #C2CDD6;
}

.esl-css .checker-content:before {
  content: "\00a0";
}

.esl-css input[type=checkbox]:checked + .checker-label .checker-content {
  background-color: #697F00;
  border: 3px solid #697F00;
}

.esl-css input[type=checkbox]:checked + .checker-label .checker-content:before {
  content: "\2713";
}

.esl-css input[type=checkbox]:disabled + .checker-label .checker-content {
  background-color: #C2CDD6;
  border: 3px solid darkgrey;
  color: darkgrey;
}

.esl-css .checkbox input[type=checkbox] {
  position: static;
  margin-left: 0;
  margin-right: 10px;
}

.esl-css .checkbox label {
  padding: 0;
}

/*   SWITCHES  =========================================== */

.esl-css .toggle {
  font-size: .83em;
}

.esl-css .toggle {
  position: relative;
  width: 65px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Circular Switch */

.esl-css .toggle-round-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border-radius: 25px;
}

.esl-css .toggle-round-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  -moz-transition: margin 0.3s ease-in 0s;
  -webkit-transition: margin 0.3s ease-in 0s;
  -o-transition: margin 0.3s ease-in 0s;
  transition: margin 0.3s ease-in 0s;
}

.esl-css .toggle-round-inner:before,
.esl-css .toggle-round-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 30px;
  padding: 0;
  line-height: 30px;
  font-size: .92em;
  color: white;
  font-family: 'CorpidHeavy';
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.esl-css .toggle-round-inner:before {
  content: "On";
  padding-left: 12px;
  background-color: #292C2E;
  color: #FFFFFF;
}

.esl-css .toggle-round-inner:after {
  content: "Off";
  padding-right: 15px;
  background-color: #292C2E;
  color: #FFFFFF;
  text-align: right;
}

.esl-css .toggle-round-switch {
  display: block;
  width: 20px;
  margin: 5px;
  background: #BE0D00;
  border-radius: 25px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 36px;
  -moz-transition: all 0.3s ease-in 0s;
  -webkit-transition: all 0.3s ease-in 0s;
  -o-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.esl-css .toggle-checkbox:checked + .toggle-round-label .toggle-round-inner {
  margin-left: 0;
}

.esl-css .toggle-checkbox:checked + .toggle-round-label .toggle-round-switch {
  right: 0px;
  background-color: #697F00;
}

/* Square Switch */

.esl-css .toggle-square-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border-radius: 3px;
}

.esl-css .toggle-square-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  -moz-transition: margin 0.3s ease-in 0s;
  -webkit-transition: margin 0.3s ease-in 0s;
  -o-transition: margin 0.3s ease-in 0s;
  transition: margin 0.3s ease-in 0s;
}

.esl-css .toggle-square-inner:before,
.esl-css .toggle-square-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 30px;
  padding: 0;
  line-height: 30px;
  font-size: 14px;
  color: white;
  font-family: Trebuchet, Arial, sans-serif;
  font-weight: bold;
}

.esl-css .toggle-square-inner:before {
  content: "\2713";
  padding-left: 10px;
  background-color: #292C2E;
  color: #FFFFFF;
}

.esl-css .toggle-square-inner:after {
  content: "x";
  padding-right: 23px;
  background-color: #292C2E;
  color: #FFFFFF;
  text-align: right;
}

.esl-css .toggle-square-switch {
  display: block;
  width: 20px;
  background: #BE0D00;
  border-radius: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  -moz-transition: all 0.3s ease-in 0s;
  -webkit-transition: all 0.3s ease-in 0s;
  -o-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
}

.esl-css .toggle-checkbox:checked + .toggle-square-label .toggle-square-inner:before {
  padding-left: 25px;
}

.esl-css .toggle-checkbox:checked + .toggle-square-label .toggle-square-inner {
  margin-left: 0;
}

.esl-css .toggle-checkbox:checked + .toggle-square-label .toggle-square-switch {
  left: 45px;
  background-color: #697F00;
}

/*   TAB SELECTORS  ============================================== */

.esl-css .tab-select {
  border: 1px solid #C2CDD6;
  height: 36px;
  border-radius: 5px;
  box-sizing: border-box;
}

.esl-css .tab-select:before,
.esl-css .tab-select:after {
  display: table;
  clear: both;
  content: "";
}

.esl-css .tab-select-button {
  text-align: center;
  font-family: 'CorpidHeavy';
  padding: 6px 0;
  margin: 0;
  border-left: 1px solid #C2CDD6;
  height: 100%;
  width: 25%;
  float: left;
}

.esl-css .tab-select-button:first-of-type {
  border-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.esl-css .tab-select-button:last-of-type {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.esl-css .tab-select-button:hover {
  background-color: #C2CDD6;
}

.esl-css input[type=radio]:checked + .tab-select-button {
  background-color: #697F00;
  color: white;
}

/*   RANGE SLIDER BAR  =========================================== */

.esl-css input[type=range]:focus {
  outline: 0;
  box-shadow: 0;
  border: 0;
}

.esl-css input[type=range] {
  -webkit-appearance: none;
  /* Hides the slider so that custom slider can be made */
  width: 100%;
  /* Specific width is required for Firefox. */
}

.esl-css .range-slider {
  position: relative;
  width: 100%;
  height: .5em;
  background-color: #C2CDD6;
  border-radius: 5px;
}

.esl-css .slider-button {
  content: " ";
  display: inline-block;
  border: .25em solid #737F89;
  background: #C2CDD6;
  height: 1em;
  width: 1em;
  position: absolute;
  top: -50%;
  left: 0;
  border-radius: 50%;
}

.esl-css .slider-size {
  width: 0;
  height: 100%;
  background: #BE0D00;
}

/*   ALERT BOX  ============================================= */

.esl-css .alert {
  padding: 1.25em;
  background: #1f5ba1;
  color: white;
  border-radius: 4px;
}

.esl-css .alert small {
  margin: 0;
}

/*   RADIO BUTTON W/IMAGE =================================== */

.esl-css .img-radio {
  border-radius: 4px;
  border: 1px solid #C2CDD6;
}

.esl-css .img-radio img {
  float: left;
  width: 100%;
  height: auto;
}

.esl-css .img-radio-inner {
  display: table;
  clear: both;
  content: "";
  padding: 1em;
}

.esl-css .img-radio-inner > h4 {
  margin-top: 0;
}

.esl-css .img-radio-inner > p {
  border-bottom: 1px solid #C2CDD6;
  padding-bottom: 1em;
  min-height: 50px;
}

.esl-css .img-radio-inner > .radio {
  width: 26px;
  margin: 0 auto;
}

/*   SUBMIT BUTTON  ========================================= */

.esl-css input[type=submit] {
  margin-top: 20px;
  padding: 16px 40px;
  background: #BE0D00;
  -o-transition: .5s;
  -ms-transiton: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.esl-css input[type=submit]:hover {
  background-color: #A50000;
  text-decoration: underline;
}

/*   FORM VALIDATION  ========================================= */

.esl-css #error-val {
  border: 2px solid #BE0D00;
}

.esl-css #success-val {
  border: 2px solid #697F00;
}

.esl-css .error-text {
  color: #BE0D00;
  font-weight: bold;
}

.esl-css .success-text {
  color: #697F00;
  font-weight: bold;
}

/* ======================================================= *\

        OTHER ELEMENTS

\* ======================================================= */

/* ======================================================= *\

        MEDIA QUERIES

\* ======================================================= */

/*  GRID GOES FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
  .esl-css input[type=text],
  .esl-css input[type=number],
  .esl-css input[type=email],
  .esl-css input[type=password],
  .esl-css textarea,
  .esl-css select {
    width: 100%;
  }

  .esl-css .tooltip {
    margin-left: 0;
    margin-top: 10px;
    display: block;
  }

  .esl-css .tt-content {
    margin-top: 20px;
    margin-left: 0;
    border-top-left-radius: 0;
  }

  .esl-css .tt-content:after {
    left: 0;
    top: -10px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(0, 0, 0, 0);
    border-bottom-color: #292C2E;
    border-width: 10px;
  }

  .esl-css .col {
    margin: 1% 0 1% 0%;
  }

  .esl-css .span_12_of_12 {
    width: 100%;
  }

  .esl-css .span_11_of_12 {
    width: 100%;
  }

  .esl-css .span_10_of_12 {
    width: 100%;
  }

  .esl-css .span_9_of_12 {
    width: 100%;
  }

  .esl-css .span_8_of_12 {
    width: 100%;
  }

  .esl-css .span_7_of_12 {
    width: 100%;
  }

  .esl-css .span_6_of_12 {
    width: 100%;
  }

  .esl-css .span_5_of_12 {
    width: 100%;
  }

  .esl-css .span_4_of_12 {
    width: 100%;
  }

  .esl-css .span_3_of_12 {
    width: 100%;
  }

  .esl-css .span_2_of_12 {
    width: 100%;
  }

  .esl-css .span_1_of_12 {
    width: 100%;
  }

  /*.esl-css input[type="checkbox"] {*/
    /*display: none;*/
  /*}*/

  .esl-css input[type="checkbox"] + label:before {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: -1px 4px 0 0;
    vertical-align: middle;
    border: 4px solid #c2cdd6;
    border-radius: 4px;
    cursor: pointer;
    content: ' ';
    color: #fff;
  }

  .esl-css input[type="checkbox"]:checked + label:before {
    background-color: #697f00;
    border-color: #697f00;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAKCAYAAABv7tTEAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAAAmElEQVQoz2NgIBIUtPJwF3cISjIwMDCwEKOhpFNYPj9uzwNOdn4GDnbHIKI0PH5+/j8MnL607D9JGp6/vv6/okfSjoGBgYGhfpJq/a37B/43T9NdR5SGkg4h+fcfn/z//////89fXv1vnqa7Dq8GBgYGhpwmVqbLN7fAFXz7/v7/2/cPcGuAgdwmNhSNBDXg0khQA7pGQhoAPLy2d6AVB+AAAAAASUVORK5CYII=');
    background-position: center;
    background-repeat: no-repeat;
  }
}

.esl-css .description small {
  font-size: 0.65em;
}

.esl-css header nav ul,
.esl-css #header-container header #quick-links {
  margin: 0px !important;
}

/*.form-dorpdown-label{
    text-align:right !important;
}
.form-dorpdown-field{
    padding:0px;
    margin-top:-10px;
}*/

.esl-css .multistepform .page .section {
  padding-bottom: 0px;
  padding-top: 10px;
}



.esl-css .multistepform .form-dropdown-label {
  font-size: 18px;
}

.esl-css .multistepform .select-wrap {
  max-width: 80%;
  margin-left: 10px;
}

.esl-css .multistepform .select-wrap {
  margin-left: 0px;
}

.esl-css .multistepform .select-wrap {
  max-width: 60%;
}

.esl-css .multistepform .select-wrap > div {
  font-size: 14px;
  color: #666;
}

.esl-css .multistepform .select-wrap select {
  margin-bottom: 10px;
}

.esl-css .multistepform .body .htmlcontent > div {
  font-size: 18px;
  padding: 20px 0 10px 0;
}

.esl-css .multistepform .body .htmlcontent strong {
  font-size: 24px;
}


@media only screen and (max-width : 768px) {
  .esl-css .form-dorpdown-label {
    text-align: left !important;
  }

  .esl-css .multistepform  .select-wrap {
    max-width: 100%;
  }
}
.esl-css nav {
  background-color: #000;
}

.esl-css nav #nav-container {
  width: 1270px;
  margin: 0 auto;
  font-size: 0;
}

.esl-css nav #nav-container > div {
  display: inline-block;
  width: 50%;
}


.esl-css nav #nav-container > div:last-child {
  text-align: right;
}

.esl-css nav span {
  display: inline-block;
  /*vertical-align: top;*/
  text-decoration: none;
  /*font-size: 16px;*/
  background-repeat: no-repeat;
  background-position: center;
  /*height: 60px;*/
  color: #fff;
  /*text-align: center;*/
}

.esl-css nav #nav-container span {
  font-family: SourceSansRegular, Arial, Helvetica, sans-serif;
}

.npsform .esl-css nav span.tagline {
  padding-left: 10px;
  border-left: 0;
}

.esl-css nav span.tagline {
  float: left;
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid #fff;
  font-family: 'SourceSansRegular';
}

.esl-css nav span#logo {
  width: 81px;
  background-image: url("nab-forms/css/img/NAB_BLACK.png")!important;
  margin-right: 10px;
  margin-left: 10px;
  background-repeat: no-repeat;
  float: left;
}

.esl-css nav.alt span#logo {
  width: 81px;
  height: 31px;
  margin: 15px 0;
}

.esl-css nav.alt .tagline {
  line-height: 61px;
  float: left;
  font-family: 'SourceSansRegular';
}

.esl-css nav.alt .tagline > span {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid #fff;
  vertical-align: middle;
  line-height: 31px;
  font-size: 16px;
}

.esl-css nav #nav-container .vertical-line {
  display: none;
}

@media only screen and (max-width: 480px) {
  .esl-css .forceshow input[type="checkbox"] {
    display:inline-block;
  }
}

@media (max-width: 768px) {
  .esl-css nav #nav-container {
    width: 100%;
  }

  .esl-css nav #nav-container > div {
    width: 100%;
  }

  .esl-css nav #nav-container .vertical-line {
    width: 4%;
    display: inline-block;
    height: 62px;
    float: left;
    position: relative;
  }

  .esl-css nav #nav-container .vertical-line > span {
    height: 30px;
    border-left: 1px solid #fff;
    position: absolute;
    top: 50%;
    margin-top: -15px;
  }

  .esl-css nav.alt span.tagline {
    width: 200px;
    margin-left: 0;
    text-align: left;
    display: inline-block;

  }

  .esl-css nav.alt .tagline > span {
    border-left: 0;
    margin-left: 0;
    margin-right: 0;
    vertical-align: middle;
    height: 62px;
    display: table-cell;
    line-height: 1.5;
  }
}
