/*
 * VDL Pattern Library
 *
 * Base Stylesheet: Table of Contents
 *
 * 1. Basic Styling
 * 2. Fonts & Font Icons
 * 3. Grid
 * 4. Helper Classes
 * 5. Form Styling
 * 6. Button Styling
 *
 */
/* html defaults */
html {
  font-family: 'Circular', sans-serif;
}
/* Body defaults */
body {
  font-family: 'Circular', sans-serif;
  font-size: 14px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  background: #ebebeb;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
/*
 * Font Heading Patterns
 *
 */
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  line-height: 0;
  color: #6f6f6f;
}
/* Fonts and Typography */
h1 {
  font-size: 30px;
  font-weight: 100;
  margin-top: 50px;
  margin-bottom: 30px;
}
h2 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 30px;
}
h3 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 8px;
  margin-bottom: 10px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 14px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #444;
}
h4,
h5,
h6 {
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 3px;
}
h1 small {
  font-size: 18px;
}
h2 small {
  font-size: 16px;
}
h3 small {
  font-size: 14px;
}
h4 small {
  font-size: 12px;
}
h5 small {
  font-size: 10px;
}
h6 small {
  font-size: 8px;
}
h2.secondary-container,
section > h2 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}
/*
 * Other Flow Content Patterns
 *
 */
p {
  margin-bottom: 30px;
}
a,
a:visited,
a:hover,
a:active,
a:focus {
  font-weight: 700;
  color: #086274;
  text-decoration: none;
}
a:hover,
a:active,
a:focus {
  text-decoration: underline;
}
/* Direct Links */
a.adp-direct-link,
a.adp-direct-link:visited,
a.adp-direct-link:hover,
a.adp-direct-link:active,
a.adp-direct-link:focus {
  text-transform: uppercase;
}
/* Capitalized Contextual Links */
a.adp-link-capitalize,
a.adp-link-capitalize:visited,
a.adp-link-capitalize:hover,
a.adp-link-capitalize:active,
a.adp-link-capitalize:focus {
  text-transform: capitalize;
}
/* Disabled links should use JavaScript to extend functionality */
a.link-disabled,
a.link-disabled:visited,
a.link-disabled:hover,
a.link-disabled:active,
a.link-disabled:focus {
  cursor: not-allowed;
  color: #769ba5;
  text-decoration: none;
}
/* Rejected links should use JavaScript to extend functionality */
a.link-rejected,
a.link-rejected:visited,
a.link-rejected:hover,
a.link-rejected:active,
a.link-rejected:focus {
  color: #d40f0f;
  text-decoration: none;
}
/* Angular data-ng-click pointer fix */
[ng-click],
[data-ng-click],
[x-ng-click] {
  cursor: pointer;
}
/* Ideally used on heading content. w3@ http://www.w3.org/TR/html5/dom.html#heading-content-0 */
.content-label {
  font-weight: 500;
}
pre {
  font-size: 16px;
  text-transform: uppercase;
}
/* Lists */
ul,
ol {
  font-weight: 400;
  font-family: 'Circular';
  font-size: 14px;
}
ul li,
ol li {
  margin-top: 5px;
  margin-bottom: 5px;
}
/* A list without margins and bullets */
.adp-list-unstyled {
  padding-left: 0;
  list-style: none;
}
/* Normalizaing tables */
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td,
th {
  padding: 0;
}
/*
 * Framework Patterns
 *
 */
.company-name {
  display: block;
  font-size: 24px;
}
.user-control {
  display: block;
  font-family: inherit;
  font-weight: 500;
}
.footer-text {
  font-size: 12px;
  color: #4d4d4d;
  margin-top: 10px;
}
.footer-product-feedback {
  font-family: inherit;
  font-weight: 500;
  font-size: 12px;
  color: #3ebede;
  margin-top: 10px;
}
/*
 * Login Pattern
 *
 * These classes will extend headers and inputs
 * to be in alignment with the Login pattern
 *
 */
.welcome-message {
  font-family: inherit;
  font-weight: 100;
  font-size: 40px;
  margin-top: 30px;
  margin-bottom: 40px;
}
.welcome-login-input {
  font-family: inherit;
  font-weight: 100;
  font-style: italic;
  font-size: 20px;
  color: #4d4d4d;
}
/* White Background */
.adp-box {
  padding: 15px;
}
.adp-box.bg-white {
  background-color: #fff;
}
/* Notification Bubble */
.notification-wrapper {
  position: relative;
  float: left;
}
.notification-wrapper .fa {
  font-size: 30px;
}
.notification-wrapper .bubble {
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 10;
  width: 18px;
  height: 18px;
  background: #d40f0f;
  line-height: 19px;
  border-radius: 10px;
  color: white;
  font-family: "Circular", Arial, Helvetica, sans-serif;
  text-align: center;
  font-size: 0.8em;
}
/*Required for popovers*/
/* Unstyled keeps list items block level, just removes default browser padding and list-style */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
/* Inline turns list items into inline-block */
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
/* ADP Font */
@font-face {
  font-family: 'FontADP';
  src: url('../fonts/FontADP.eot?-xusuaw');
  src: url('../fonts/FontADP.eot?#iefix-xusuaw') format('embedded-opentype'), url('../fonts/FontADP.woff?-xusuaw') format('woff'), url('../fonts/FontADP.ttf?-xusuaw') format('truetype'), url('../fonts/FontADP.svg?-xusuaw#FontADP') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* ADP Font Awesome */
@font-face {
  font-family: 'adp-font-awesome';
  src: url('../fonts/adp-font-awesome.woff?') format('woff'), url('../fonts/adp-font-awesome.ttf') format('truetype'), url('../fonts/adp-font-awesome.svg?#adp-font-awesome') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"],
[class*=" icon-"] {
  font-family: 'FontADP';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class^="adp-fa-"],
[class*=" adp-fa-"] {
  font-family: 'adp-font-awesome';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-ReviewResult:before {
  content: "\e67f";
}
.icon-Filter:before {
  content: "\e67d";
}
.icon-Filter_checkmark:before {
  content: "\e67e";
}
.icon-file-type-xml:before {
  content: "\e679";
}
.icon-file-type-wmv:before {
  content: "\e67a";
}
.icon-file-type-bmp:before {
  content: "\e67b";
}
.icon-file-type-vsd:before {
  content: "\e67c";
}
.icon-new_hire_review:before {
  content: "\e678";
}
.icon-page-last:before {
  content: "\e676";
}
.icon-page-first:before {
  content: "\e677";
}
.icon-whole-year:before {
  content: "\e632";
}
.icon-semi-year:before {
  content: "\e634";
}
.icon-file-type-psd:before {
  content: "\e668";
}
.icon-file-type-wav:before {
  content: "\e669";
}
.icon-file-type-mpa:before {
  content: "\e66a";
}
.icon-file-type-mp3:before {
  content: "\e66b";
}
.icon-dockit:before {
  content: "\e66c";
}
.icon-restore:before {
  content: "\e66d";
}
.icon-company-holiday:before {
  content: "\e66e";
}
.icon-employee-on-loan:before {
  content: "\e66f";
}
.icon-import-disabled:before {
  content: "\e670";
}
.icon-mapping-disabled:before {
  content: "\e671";
}
.icon-expression-disabled:before {
  content: "\e672";
}
.icon-translations-disabled:before {
  content: "\e673";
}
.icon-file-def-disabled:before {
  content: "\e674";
}
.icon-adv-details-disabled:before {
  content: "\e675";
}
.icon-adp:before {
  content: "\e667";
}
.icon-chart-tree:before {
  content: "\e600";
}
.icon-chart-step:before {
  content: "\e601";
}
.icon-chart-line:before {
  content: "\e602";
}
.icon-chart-heatmap:before {
  content: "\e603";
}
.icon-chart-bullet:before {
  content: "\e604";
}
.icon-chart-bubble:before {
  content: "\e605";
}
.icon-chart-area:before {
  content: "\e606";
}
.icon-chart-scatter:before {
  content: "\e607";
}
.icon-chart-column:before {
  content: "\e608";
}
.icon-chart-donut:before {
  content: "\e609";
}
.icon-clients-info:before {
  content: "\e60a";
}
.icon-client-info:before {
  content: "\e60b";
}
.icon-avs:before {
  content: "\e60c";
}
.icon-tops:before {
  content: "\e60d";
}
.icon-adpr:before {
  content: "\e60e";
}
.icon-vistaplus:before {
  content: "\e60f";
}
.icon-file-type-ind:before {
  content: "\e610";
}
.icon-file-type-zip:before {
  content: "\e611";
}
.icon-file-type-msg:before {
  content: "\e612";
}
.icon-file-type-ai:before {
  content: "\e613";
}
.icon-file-type-tif:before {
  content: "\e614";
}
.icon-file-type-png:before {
  content: "\e615";
}
.icon-file-type-gif:before {
  content: "\e616";
}
.icon-file-type-jpg:before {
  content: "\e617";
}
.icon-file-type-avi:before {
  content: "\e618";
}
.icon-file-type-swf:before {
  content: "\e619";
}
.icon-file-type-mp4:before {
  content: "\e61a";
}
.icon-file-type-mov:before {
  content: "\e61b";
}
.icon-file-type-fla:before {
  content: "\e61c";
}
.icon-file-type-html:before {
  content: "\e61d";
}
.icon-file-type-pdf:before {
  content: "\e61e";
}
.icon-file-type-ppt:before {
  content: "\e61f";
}
.icon-file-type-csv:before {
  content: "\e620";
}
.icon-file-type-xls:before {
  content: "\e621";
}
.icon-file-type-txt:before {
  content: "\e622";
}
.icon-file-type-rtf:before {
  content: "\e623";
}
.icon-file-type-doc:before {
  content: "\e624";
}
.icon-file-type-generic:before {
  content: "\e625";
}
.icon-vacation-timeoff:before {
  content: "\e626";
}
.icon-unscheduled-shift-location:before {
  content: "\e627";
}
.icon-unscheduled-shift:before {
  content: "\e628";
}
.icon-shift-pay:before {
  content: "\e629";
}
.icon-secondary-position:before {
  content: "\e62a";
}
.icon-part-time-employee:before {
  content: "\e62b";
}
.icon-overtime-shift:before {
  content: "\e62c";
}
.icon-on-call-shift:before {
  content: "\e62d";
}
.icon-missing-punch:before {
  content: "\e62e";
}
.icon-minor-employee:before {
  content: "\e62f";
}
.icon-mgr-note:before {
  content: "\e630";
}
.icon-mgr-edited-transaction:before {
  content: "\e631";
}
.icon-daylight-savings:before {
  content: "\e633";
}
.icon-clocked-in:before {
  content: "\e635";
}
.icon-borrowed-employee:before {
  content: "\e636";
}
.icon-note:before {
  content: "\e637";
}
.icon-approved-time-off:before {
  content: "\e638";
}
.icon-gl-translation:before {
  content: "\e639";
}
.icon-gl-select-row:before {
  content: "\e63a";
}
.icon-gl-select-column:before {
  content: "\e63b";
}
.icon-gl-named-constant:before {
  content: "\e63c";
}
.icon-gl-expression:before {
  content: "\e63d";
}
.icon-run:before {
  content: "\e63e";
}
.icon-translations-select:before {
  content: "\e63f";
}
.icon-translations:before {
  content: "\e640";
}
.icon-mapping-select:before {
  content: "\e641";
}
.icon-mapping:before {
  content: "\e642";
}
.icon-import-select:before {
  content: "\e643";
}
.icon-import:before {
  content: "\e644";
}
.icon-file-def-select:before {
  content: "\e645";
}
.icon-file-def:before {
  content: "\e646";
}
.icon-expression-select:before {
  content: "\e647";
}
.icon-expression:before {
  content: "\e648";
}
.icon-adv-details-select:before {
  content: "\e649";
}
.icon-adv-details:before {
  content: "\e64a";
}
.icon-view-pay-data:before {
  content: "\e64b";
}
.icon-verify-input:before {
  content: "\e64c";
}
.icon-start-new-cycle:before {
  content: "\e64d";
}
.icon-review-results:before {
  content: "\e64e";
}
.icon-enter-emp-changes:before {
  content: "\e64f";
}
.icon-calc-payroll:before {
  content: "\e650";
}
.icon-add-new-hire:before {
  content: "\e651";
}
.icon-portal-themes:before {
  content: "\e652";
}
.icon-portal-pages:before {
  content: "\e653";
}
.icon-portal-home:before {
  content: "\e654";
}
.icon-portal-fields:before {
  content: "\e655";
}
.icon-task-impt:before {
  content: "\e656";
}
.icon-manager:before {
  content: "\e657";
}
.icon-reset:before {
  content: "\e658";
}
.icon-minimize:before {
  content: "\e659";
}
.icon-maximize:before {
  content: "\e65a";
}
.icon-accessnone:before {
  content: "\e65b";
}
.icon-accesssome:before {
  content: "\e65c";
}
.icon-accessall:before {
  content: "\e65d";
}
.icon-status-active:before {
  content: "\e65e";
}
.icon-status-offline:before {
  content: "\e65f";
}
.icon-status-inmtg:before {
  content: "\e660";
}
.icon-status-chat:before {
  content: "\e661";
}
.icon-status-busy:before {
  content: "\e662";
}
.icon-status-away:before {
  content: "\e663";
}
.icon-shopping-cart:before {
  content: "\e664";
}
.icon-close-thin:before {
  content: "\e665";
}
.icon-powered-by-adp:before {
  content: "\e666";
}
[class^="adp-fa-"],
[class*=" adp-fa-"] {
  font-family: 'adp-font-awesome';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* ADP web fonts */
.adp-fa-icon-dashboard:before {
  content: "\e609";
}
.adp-fa-icon-pay:before {
  content: "\e601";
}
.adp-fa-icon-calendar:before {
  content: "\e600";
}
.adp-fa-icon-clock:before {
  content: "\e602";
}
.adp-fa-icon-connections:before {
  content: "\e60a";
}
.adp-fa-icon-timeoff:before {
  content: "\e603";
}
.adp-fa-icon-adp-logo:before {
  content: "\e604";
}
.adp-fa-icon-benefits:before {
  content: "\e605";
}
.adp-fa-icon-policies:before {
  content: "\e606";
}
.adp-fa-icon-close-x:before {
  content: "\e608";
}
.adp-fa-icon-coins:before {
  content: "\e60b";
}
.adp-fa-icon-donut:before {
  content: "\e60c";
}
.adp-fa-icon-graph:before {
  content: "\e60f";
}
.adp-fa-icon-child-parent:before {
  content: "\e613";
}
.adp-fa-icon-parent-child-heart:before {
  content: "\e616";
}
.adp-fa-icon-hourglass:before {
  content: "\e61a";
}
.adp-fa-icon-legal:before {
  content: "\e623";
}
.adp-fa-icon-person-running:before {
  content: "\e624";
}
.adp-fa-icon-life-preserver:before {
  content: "\e625";
}
.adp-fa-icon-commuter-train:before {
  content: "\e626";
}
.adp-fa-icon-medical-briefcase-dollar-sign:before {
  content: "\e627";
}
.adp-fa-icon-tooth:before {
  content: "\e628";
}
.adp-fa-icon-heart-with-hands:before {
  content: "\e629";
}
.adp-fa-icon-stethoscope:before {
  content: "\e62a";
}
.adp-fa-icon-handicap:before {
  content: "\e62b";
}
.adp-fa-icon-broken-arm:before {
  content: "\e62d";
}
.adp-fa-icon-marriage-rings:before {
  content: "\e62e";
}
.adp-fa-icon-person-fall:before {
  content: "\e62f";
}
.adp-fa-icon-shield:before {
  content: "\e630";
}
.adp-fa-icon-glasses:before {
  content: "\e632";
}
.adp-fa-icon-401k:before {
  content: "\e633";
}
.adp-fa-icon-parking-meter:before {
  content: "\e636";
}
.adp-fa-icon-money-bag:before {
  content: "\e637";
}
.adp-fa-icon-pill:before {
  content: "\e638";
}
.adp-fa-icon-heart-hands:before {
  content: "\e639";
}
.adp-fa-icon-wallet:before {
  content: "\e63a";
}
.adp-fa-icon-light-bulb:before {
  content: "\e63b";
}
.adp-fa-icon-atm:before {
  content: "\e63c";
}
.adp-fa-icon-broken-arm:before {
  content: "\e63d";
}
.adp-fa-icon-car-front:before {
  content: "\e63f";
}
.adp-fa-icon-bus-front:before {
  content: "\e640";
}
.adp-fa-icon-business-people:before {
  content: "\e641";
}
.adp-fa-icon-person-with-walker:before {
  content: "\e642";
}
.adp-fa-icon-medical-logo:before {
  content: "\e643";
}
.adp-fa-icon-two-people-running:before {
  content: "\e644";
}
.adp-fa-icon-family-umbrella:before {
  content: "\e646";
}
.adp-fa-icon-plane:before {
  content: "\e647";
}
.adp-fa-icon-bus-side-view:before {
  content: "\e649";
}
.adp-fa-icon-chess-knight:before {
  content: "\e64b";
}
.adp-fa-icon-helping-senior:before {
  content: "\e64c";
}
.adp-fa-icon-medical-clip-board:before {
  content: "\e64e";
}
.adp-fa-icon-child-and-parents:before {
  content: "\e64f";
}
.adp-fa-icon-island:before {
  content: "\e650";
}
.adp-fa-icon-health-food:before {
  content: "\e651";
}
.adp-fa-icon-dollar-sign-clock:before {
  content: "\e652";
}
.adp-fa-icon-hospital-bed:before {
  content: "\e653";
}
.adp-fa-icon-eye-chart:before {
  content: "\e654";
}
.adp-fa-icon-dental-tools:before {
  content: "\e655";
}
.adp-fa-icon-senior-with-cane:before {
  content: "\e657";
}
.adp-fa-icon-pills:before {
  content: "\e658";
}
.adp-fa-icon-sos:before {
  content: "\e659";
}
.adp-fa-icon-thief:before {
  content: "\e65a";
}
.adp-fa-icon-flashing-light:before {
  content: "\e65b";
}
.adp-fa-icon-map-marker:before {
  content: "\e65d";
}
.adp-fa-icon-meeting-slides:before {
  content: "\e65e";
}
.adp-fa-icon-fall-down-steps:before {
  content: "\e65f";
}
.adp-fa-icon-gavel:before {
  content: "\e660";
}
.adp-fa-icon-hurt-knee:before {
  content: "\e661";
}
.adp-fa-icon-umbrella:before {
  content: "\e662";
}
.adp-fa-icon-prescription-bottle:before {
  content: "\e663";
}
.adp-fa-icon-holding-hands:before {
  content: "\e664";
}
.adp-fa-icon-parent-child:before {
  content: "\e665";
}
.adp-fa-icon-card-in-hand:before {
  content: "\e666";
}
.adp-fa-icon-ribbon:before {
  content: "\e60d";
}
.adp-fa-icon-wellness:before {
  content: "\e60e";
}
.adp-fa-icon-admin:before {
  content: "\e610";
}
.adp-fa-icon-company:before {
  content: "\e612";
}
.adp-fa-icon-demo:before {
  content: "\e611";
}
.adp-fa-icon-plus:before {
  content: "\e614";
}
.adp-fa-icon-profile:before {
  content: "\e615";
}
/*Styles for Grid, when we're ready*/
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
/* Helper classes */
/*
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.clearfix:after {
  clear: both;
}
.right {
  float: right !important;
}
.left {
  float: left !important;
}
.uppercase {
  text-transform: uppercase;
}
.underline {
  border-bottom: 1px solid #d2d2d2;
}
.bold {
  font-weight: 100;
}
.bolder {
  font-weight: 500;
}
.italic {
  font-weight: 100;
  font-style: italic;
}
.justify {
  text-align: justify;
}
.light {
  font-weight: lighter;
}
/*
 * Hide from screenreaders and browsers
 * Credit: HTML5 Boilerplate
 *
 */
.hidden {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.visible {
  display: inline !important;
}
.no-margin {
  margin: 0 !important;
}
.collapse {
  display: none;
}
.hide {
  display: none !important;
}
.truncate {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.center,
.text-center {
  text-align: center;
}
/* Quick Defaults */
input,
textarea,
keygen,
select,
button {
  font-family: inherit;
}
/* TEXTBOX AND TEXTAREA STYLING GOES HERE */
.adp-form .fieldset-label,
.adp-inline-form .fieldset-label {
  color: #808080;
}
.adp-form .form-field,
.adp-inline-form .form-field {
  position: relative;
  text-align: left;
  margin-bottom: 15px;
}
.adp-form .form-field .field-optional,
.adp-inline-form .form-field .field-optional {
  position: absolute;
  font-size: 12px;
  right: 10px;
  text-transform: initial;
  font-style: italic;
  color: #b3b3b3;
}
.adp-form .form-field .field-optional,
.adp-inline-form .form-field .field-optional {
  top: 33px;
}
.field-error {
  color: #d40f0f;
  text-transform: initial;
}
.adp-inline-form .form-group {
  display: inline-block;
  margin-bottom: 0px;
  vertical-align: middle;
  width: 50%;
}
.form-group {
  margin-bottom: 15px;
}
.adp-inline-form .btn-container {
  display: inline-block;
  vertical-align: bottom;
  margin: 0px 0px 3px 20px;
}
::-ms-clear {
  display: none;
}
input[type=text],
input[type=password],
textarea {
  font-weight: 100;
  font-size: 14px;
  height: 40px;
}
input[type=text]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder {
  color: #808080;
  font-style: italic;
}
input[type=text]::-moz-placeholder,
input[type=password]::-moz-placeholder {
  color: #808080;
  font-style: italic;
}
input[type=text]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder {
  color: #808080;
  font-style: italic;
}
textarea {
  border: none;
}
textarea:disabled {
  background-color: #bbbbbb;
}
textarea::-webkit-input-placeholder {
  color: #808080;
  font-style: italic;
}
textarea::-moz-placeholder {
  color: #808080;
  font-style: italic;
}
textarea:-ms-input-placeholder {
  color: #808080;
  font-style: italic;
}
/* Readonly inputs */
input[readonly] {
  background: transparent;
  border: none;
}
/* optional icon on the right of a radio button or checkbox */
.adp-label-icon span {
  float: left;
  width: 80%;
}
.adp-label-icon .icon-wrapper {
  width: 20%;
}
.adp-label-icon .icon-wrapper i {
  float: right;
}
.adp-label-icon .icon-wrapper i.fa-2x {
  margin-top: -5px;
}
.adp-label-icon .icon-wrapper i.fa-3x {
  margin-top: -10px;
}
/* Overriding hover state on touch devices */
.touch input {
  -webkit-user-modify: read-write-plaintext-only;
}
/* TEXT FIELD STYLING GOES HERE */
input[type="text"],
input[type="search"],
input[type="password"] {
  padding: 10px;
  box-shadow: none;
}
input[type="text"]:focus,
input[type="search"]:focus,
input[type="password"]:focus {
  border: 1px solid #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
input[type="text"]:disabled,
input[type="password"]:disabled,
input[type="search"]:disabled {
  background-color: #bbbbbb;
}
/* Inputs on White BG */
input.on-white {
  background: #ebebeb;
  border-color: #e4e4e4;
  color: #000000;
}
input[type="textarea"] {
  border: 0 none;
  outline: 0 none;
  padding: 10px;
  box-shadow: none;
}
input[type="textarea"]:disabled {
  background-color: #bbbbbb;
}
.input-group {
  display: inline-table;
  vertical-align: middle;
  width: 100%;
}
.input-group-addon {
  background-color: #ffffff;
  color: #3ebede;
  border: none;
  border-radius: 0 !important;
}
.input-group .input-group-addon,
.input-group .input-group-btn,
.input-group .form-control {
  width: auto;
}
.input-group > .form-control {
  width: 100%;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}
.form-control {
  border: none;
  border-radius: 0 !important;
  box-shadow: none;
}
/* ADP TEXTBOX STYLES */
input.adp-textbox {
  box-shadow: none;
  border-radius: 0;
  -webkit-appearance: none;
  border: 1px solid #e4e4e4;
  height: 42px;
}
.adp-textbox[disabled] {
  background-color: #bbbbbb;
}
/* ADP DATE */
.adp-date .obfuscation-container {
  background-color: #ffffff;
  border: 1px solid #e4e4e4;
  max-width: 100%;
}
.adp-date .obfuscation-container .ui-select-match {
  border: 0;
}
.adp-date .obfuscation-container .revealed-element {
  width: 65%;
}
/*Styles for Forms */
/*
 * Form Patterns
 *
 * Required dependancies:
 * - Typography Patterns
 *
 * Optional dependancies:
 * - Tiles & Cards Patterns
 *
 */
/* Remove default fieldset styles */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/* Allow only vertical resizing of textareas */
textarea {
  resize: vertical;
}
h2.section {
  font-size: 26px;
}
/* Baseline label requirements */
label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #4d4d4d;
  margin-bottom: 5px;
  text-transform: capitalize;
}
/* Baseline input requirements */
input,
textarea {
  font-weight: 400;
  display: block;
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid #e4e4e4;
  width: 100%;
  height: auto;
}
/* Secondary colors for white backgrounds */
.form-secondary {
  background: #ebebeb;
}
/* Normalization for fieldsets */
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
/* Legeneds for accesibility to display like section headers */
legend {
  font-weight: 400;
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
/* Defaults for disabled elements */
input[type="text"]:disabled,
input[type="textarea"]:disabled,
input[type="radio"]:disabled,
input[type="checkbox"]:disabled,
input[type="text"].disabled,
input[type="textarea"].disabled,
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset:disabled input[type="text"],
fieldset:disabled input[type="textarea"],
fieldset:disabled input[type="radio"],
fieldset:disabled input[type="checkbox"] {
  cursor: not-allowed;
  background-color: #d2d2d2;
  color: #808080;
}
.bg-white input[type="text"]:disabled,
.bg-white input[type="textarea"]:disabled {
  background-color: #ebebeb;
}
/* Search specific */
input[type="search"] {
  font-size: 24px;
  font-weight: 100;
  color: #4d4d4d;
  box-sizing: border-box;
  /* Removes rounded corners on iOS */
  -webkit-appearance: none;
}
/* Setting placeholder styles, oddly you cannot coma separate these */
::-webkit-input-placeholder {
  color: #808080;
  font-style: italic;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #808080;
  font-style: italic;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #808080;
  font-style: italic;
}
:-ms-input-placeholder {
  color: #808080;
  font-style: italic;
}
/*
 * Checkboxes
 *
 */
/* Setting up browser default checkbox behind VDL checkbox */
input[type="checkbox"] {
  position: absolute;
  width: 18px;
  height: 18px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  outline: 0;
  opacity: 0;
  z-index: 1;
}
/* Moving the labels to make room for the custom checkboxes */
input[type="checkbox"] + label {
  font-weight: 400;
  position: relative;
  padding-top: 3px;
  padding-left: 25px;
  cursor: pointer;
  color: #434343;
}
/* Checkbox background */
input[type="checkbox"] + label:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  border: 1px solid transparent;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #fff;
}
/* Checkbox secondary background */
input[type="checkbox"].form-secondary + label:before {
  border-background: #ebebeb;
  background: #ebebeb;
}
/* Checkbox background hover state */
input[type="checkbox"] + label:hover:before {
  width: 18px;
  height: 18px;
}
/* Checkmark defaults, hidden */
input[type="checkbox"] + label:after {
  font-family: FontAwesome;
  content: "\f00c";
  position: absolute;
  top: 3px;
  left: 3px;
  font-size: 14px;
  color: #0e5061;
}
/* Checkmark not checked state */
input[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
}
/* Checkmark checked state */
input[type="checkbox"]:checked + label:after {
  opacity: 1;
}
/* Checkmark hover state */
input[type="checkbox"] + label:hover:after {
  /*  color: #89e3f9;
  */
}
/* Disabled checkbox button default state */
input[type="checkbox"]:disabled + label {
  cursor: not-allowed;
  color: #d2d2d2;
}
/* Disabled checkbox hover state */
input[type="checkbox"]:disabled + label:hover:before,
input[type="checkbox"]:disabled + label:before {
  border-color: #d2d2d2;
  background-color: #d2d2d2;
}
label > .bluetext {
  color: #086274;
}
/*
 * Radio Buttons
 *
 */
/* Setting up browser default radio behind VDL radio */
input[type="radio"] {
  position: absolute;
  width: 20px;
  height: 20px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  outline: 0;
  opacity: 0;
}
/* Moving the labels to make room for the custom radio buttons */
input[type="radio"] + label {
  font-weight: 400;
  position: relative;
  padding-top: 1px;
  padding-left: 25px;
  cursor: pointer;
  color: #434343;
}
/* Radio background */
input[type="radio"] + label:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  height: 18px;
  width: 18px;
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 10px;
}
/* Radio secondary background */
input[type="radio"].form-secondary + label:before {
  background: #ebebeb;
  border: 2px solid #ebebeb;
}
/* Radio checked state */
input[type="radio"]:checked + label:before {
  background: #0e5061;
}
/* Disabled radio button default state */
input[type="radio"]:disabled + label {
  cursor: not-allowed;
  color: #d2d2d2;
}
/* Disabled radio hover state */
input[type="radio"]:disabled + label:hover:before,
input[type="radio"]:disabled + label:before {
  border-color: #d2d2d2;
  background-color: #d2d2d2;
}
/* Select Boxes, Range Sliders, Number Spinner, and more coming soon... */
/*
 * Mega Menu
 *
 */
.mm-main-item {
  display: block;
  font-weight: 500;
  color: #4d4d4d;
}
.mm-section-header {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
}
.mm-list-item li {
  margin-top: 10px;
  margin-bottom: 10px;
  list-style: none;
}
/*
*
*Form Styles
*
*/
.adp-form .helptext {
  font-weight: 500;
  font-size: 10px;
  display: inline-block;
  margin-top: 10px;
}
.adp-form h5 {
  margin-bottom: 20px;
}
.adp-form hr {
  border-left: none;
  margin-bottom: 40px;
  margin-top: 40px;
  border-top: #4d4d4d 1px solid;
}
.adp-form hr:last-of-type {
  margin-bottom: 30px;
}
.adp-form .required {
  color: #d40f0f;
}
.adp-form .hide-input,
.adp-form .hide-link {
  display: none;
}
.adp-form a.edit-link {
  margin-left: 30px;
  font-family: 'Circular';
  font-weight: 400;
}
.adp-form a.save-link {
  font-family: 'Circular';
  font-weight: 400;
  margin-left: 0px;
  position: relative;
  top: 30px;
}
.adp-form .routing-number {
  display: inline-block;
  margin-bottom: 0px;
}
.adp-form .btn-secondary {
  margin-left: 90px;
}
.intl-tel-input {
  width: 100%;
}
.adp-maxlength-counter {
  display: inline;
  margin-left: 10px;
}
.adp-validation-error {
  font-size: 12px;
}
input.ng-invalid.ng-dirty,
input.adp-validation-error {
  border: 1px solid #d40f0f;
  font-size: 14px;
  color: #d40f0f;
}
input.adp-validation-error:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #d40f0f !important;
}
.adp-form .form-field .field-error,
.adp-inline-form .form-field .field-error {
  color: #d40f0f;
  text-transform: initial;
}
/*
 * Buttons
 *
 */
button:active,
button:focus,
button:active:focus .btn:active,
.btn:focus,
.btn:active:focus,
a:focus,
button.btn-link,
button.btn-link:active:focus,
button.btn-direct,
button.btn-direct:active:focus {
  outline: none !important;
  border: 0;
  box-shadow: none !important;
}
.btn-direct,
.btn-link {
  text-transform: uppercase;
  color: #086274;
  background-color: transparent;
  padding: 10px 15px 9px 15px;
  font-size: 12px;
  font-weight: 100;
  cursor: pointer;
}
.btn-direct:hover,
.btn-link:hover {
  text-decoration: underline;
  font-weight: inherit;
}
.btn-primary .fa,
.btn-secondary .fa,
.btn-direct .fa,
.btn-link .fa {
  font-size: 14px;
  line-height: .75;
  padding-right: 4px;
}
.link-action-reject,
.link-action-reject:hover,
.link-action-reject:focus,
.link-action-reject:active,
.link-action-reject:active:focus {
  color: #d40f0f;
}
.btn-secondary .fa,
.btn-direct .fa,
.btn-link .fa {
  font-size: 16px;
  padding-right: 4px;
}
.btn-label-bot {
  margin-bottom: 20px;
}
.btn-label-top {
  margin-top: 20px;
}
.btn {
  border-radius: 25px;
  border: none;
  padding: 0px 20px;
  text-transform: uppercase;
  min-width: 130px;
  height: 35px;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 1.5px;
  outline: none;
  text-align: center;
  cursor: pointer;
}
.dropdown > .btn,
.dropdown > .ui-select-match > .btn {
  letter-spacing: normal;
  text-align: left;
}
.dropdown > .ui-select-match > .btn {
  padding: 0;
}
/* Inline button styles */
.btn-inline {
  border-radius: 20px;
  border: none;
  padding: 0px 15px;
  text-transform: uppercase;
  min-height: 30px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  vertical-align: middle;
  outline: none;
  cursor: pointer;
}
/* Icon button styles */
.btn-icon {
  border-radius: 100%;
  padding: 10px 15px;
  min-height: 30px;
  vertical-align: middle;
  cursor: pointer;
  outline: none;
  margin-top: 1px;
}
a.btn {
  display: inline-block;
  padding-top: 10px;
  height: 35px;
  box-sizing: border-box;
}
a.btn:visited {
  color: #ffffff;
  text-decoration: none;
}
.btn:disabled {
  cursor: no-drop;
}
.btn-padding {
  padding-left: 0;
  padding-right: 0;
}
/* min-width fix for button inputs. */
input.btn {
  box-sizing: border-box;
  width: auto;
}
/* Primary button styles */
a.btn-primary,
.btn-primary,
.dropdown > .btn-primary,
.btn-primary:visited,
a.btn-primary:visited {
  font-weight: 400;
  background-color: #3ebede;
  text-decoration: none;
  color: #ffffff;
}
.btn-primary:hover,
a.btn-primary:hover,
.btn-primary:active,
a.btn-primary:active,
.btn-primary.active,
.btn-primary:focus {
  background-color: #89e3f9;
  font-family: 'Circular';
  font-weight: 400;
  font-size: 12px;
  text-decoration: none;
  color: #ffffff;
  outline: none;
  box-shadow: none;
}
.btn-primary:disabled {
  background-color: #bbbbbb;
}
/* Secondary button styles */
a.btn-secondary,
.btn-secondary {
  background-color: #ffffff;
  text-decoration: none;
  color: #000000;
}
/* Secondary button hover */
.btn-secondary:hover {
  color: #89e3f9;
  text-decoration: none;
}
/* Secondary button disabled */
.btn-secondary:disabled {
  background-color: #ffffff;
  color: #bbbbbb;
}
/* Secondary button styles on white */
.adp-card a.btn-secondary,
.adp-card .btn-secondary,
.adp-box a.btn-secondary,
.adp-box .btn-secondary {
  border: solid 2px #bbbbbb;
}
/* Secondary button hover for white bg */
.adp-card .btn-secondary:hover,
.adp-box .btn-secondary:hover {
  border: solid 2px #89e3f9;
  text-decoration: none;
  color: #89e3f9;
}
/* Secondary button disabled for white bg */
.adp-card .btn-secondary:disabled,
.adp-box .btn-secondary:disabled {
  border: solid 2px #bbbbbb;
  color: #808080;
}
/* inline and icon button styles on grey */
a.btn-inline,
.btn-inline,
a.btn-icon,
.btn-icon {
  background-color: #ffffff;
  text-decoration: none;
  color: #000000;
  border: none;
}
/* inline and icon button hover styles on grey */
.btn-inline:hover,
.btn-icon:hover {
  color: #89e3f9;
  text-decoration: none;
}
/* inline and icon button disabled styles on grey */
.btn-inline:disabled,
.btn-icon:disabled {
  color: #bbbbbb;
  cursor: no-drop;
}
/* inline and icon button styles on white */
.adp-card a.btn-inline,
.adp-card .btn-inline,
.adp-card a.btn-icon,
.adp-card .btn-icon,
.adp-box a.btn-inline,
.adp-box .btn-inline,
.adp-box a.btn-icon,
.adp-box .btn-icon {
  background-color: #ffffff;
  border: solid 2px #bbbbbb;
  text-decoration: none;
  color: #000000;
}
/* inline and icon button hover styles on white */
.adp-card .btn-inline:hover,
.adp-card .btn-icon:hover,
.adp-box .btn-inline:hover,
.adp-box .btn-icon:hover {
  border: solid 2px #89e3f9;
  text-decoration: none;
  color: #89e3f9;
}
/* inline and icon button disabled styles on white */
.adp-card .btn-inline:disabled,
.adp-card .btn-icon:disabled,
.adp-box .btn-inline:disabled,
.adp-box .btn-icon:disabled {
  border: solid 2px #bbbbbb;
  color: #808080;
}
/*
 * Combo Buttons
 *
 */
.combo-btn {
  border-left: solid 1px;
  padding: 5px 10px;
  margin-left: 10px;
}
.combo-btn-drop {
  display: none;
  background-color: #ffffff;
  width: 100%;
  max-width: 200px;
}
.combo-btn-drop li {
  list-style: none;
  padding: 5px 0px;
}
.combo-btn-drop li:hover {
  color: #89e3f9;
}
.combo-btn-drop a {
  color: #ffffff;
  text-decoration: none;
}
/* Toggle on button on white */
.btn-toggle-white {
  border: 2px solid #bbbbbb;
  background-color: #ffffff;
}
/* Toggle on button on white hover */
.btn-toggle-white:hover {
  border: 2px solid #89e3f9;
  color: #89e3f9;
}
/* Toggle on button on white off/disabled */
.btn-toggle-white:disabled {
  border: 2px solid #bbbbbb;
  background-color: #ffffff;
  color: #000000;
}
/* Toggle on button on grey */
.btn-toggle {
  background-color: #ffffff;
}
.btn-toggle:hover {
  color: #89e3f9;
}
.btn-toggle:disabled {
  color: #000000;
}
.border-none,
.border-none:hover,
.border-none:disabled {
  border: none;
}
.btn-direct.lg,
.btn-link.lg {
  font-size: 16px !important;
}
.btn-direct.xl,
.btn-link.xl {
  font-size: 14px !important;
}
.btn-icon-right > .fa {
  padding-right: 0;
  padding-left: 4px;
}
.padding-top-10 {
    padding-top: 10px;
}

.text-align-right {
    text-align: right;
}

.content-align-center {
    text-align: center;
    align-content: center;
    display: flex;
    justify-content: center;
}