/*------------------------------------*\ 
    #PAGES:PREQUAL (Prequalification)
\*------------------------------------*/
/*.btn*/
.prequal-option {
  color: #444444;
  background-color: transparent;
  border-color: #444444;
  border: none;
  line-height: normal;
  overflow: hidden;
}
.prequal-option:focus, .prequal-option.focus {
  color: #444444;
  background-color: rgba(0, 0, 0, 0);
  border-color: #040404;
}
.prequal-option:hover {
  color: #444444;
  background-color: rgba(0, 0, 0, 0);
  border-color: #252525;
}
.prequal-option:active, .prequal-option.active, .open > .prequal-option.dropdown-toggle {
  color: #444444;
  background-color: rgba(0, 0, 0, 0);
  border-color: #252525;
}
.prequal-option:active:hover, .prequal-option:active:focus, .prequal-option:active.focus, .prequal-option.active:hover, .prequal-option.active:focus, .prequal-option.active.focus, .open > .prequal-option.dropdown-toggle:hover, .open > .prequal-option.dropdown-toggle:focus, .open > .prequal-option.dropdown-toggle.focus {
  color: #444444;
  background-color: rgba(0, 0, 0, 0);
  border-color: #040404;
}
.prequal-option:active, .prequal-option.active, .open > .prequal-option.dropdown-toggle {
  background-image: none;
}
.prequal-option.disabled:hover, .prequal-option.disabled:focus, .prequal-option.disabled.focus, .prequal-option[disabled]:hover, .prequal-option[disabled]:focus, .prequal-option[disabled].focus, fieldset[disabled] .prequal-option:hover, fieldset[disabled] .prequal-option:focus, fieldset[disabled] .prequal-option.focus {
  background-color: transparent;
  border-color: #444444;
}
.prequal-option .badge {
  color: transparent;
  background-color: #444444;
}
.prequal-option .option-display {
  display: inline-block;
  overflow: hidden;
  text-align: center;
  vertical-align: middle;
  width: 70px;
  height: 70px;
  border: 1px solid #444444;
}
.prequal-option .option-display .display-inner {
  position: relative;
  top: 50%;
  display: block;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .prequal-option .option-display {
    width: 90px;
    height: 90px;
  }
}
@media (min-width: 1200px) {
  .prequal-option .option-display {
    width: 120px;
    height: 120px;
  }
}
.prequal-option .option-display-textual {
  font-size: 14px;
}
@media (min-width: 768px) {
  .prequal-option .option-display-textual {
    font-size: 18px;
  }
}
.prequal-option .option-display-symbolic {
  font-size: 30px;
}
@media (min-width: 1200px) {
  .prequal-option .option-display-symbolic {
    font-size: 40px;
  }
}
.prequal-option:hover .option-display, .prequal-option:focus .option-display, .prequal-option.focus .option-display {
  background-color: rgba(68, 68, 68, 0.1);
}
.prequal-option:active .option-display, .prequal-option.active .option-display, .open > .prequal-option.dropdown-toggle .option-display {
  color: #fff;
  background-color: #444444;
}

/*
    The client requested that content not move around when any validation
    errors occur, so I guess this is how we're making that happen:

    1.  Absolutely position .help-block (which is what error text is supposed
        to be wrapped with) so it's taken out of the document flow, i.e. it
        basically no longer has a height as far as other elements around it are
        concerned.
        a.  Because of [1], we're using left: 0 and right: 0 to maintain a
            centered appearance.
        b.  We're also using top: 100% to make sure it's positioned at the
            bottom of its parent.
    2.  Setting top and bottom margins for .help-block to 0 just because in
        some places the help block appers between fields, and things looks
        better when there isn't such a big empty white space when there isn't
        an error.
    3.  Reduce .help-block's font size on mobile sizes to help ensure it
        doesn't run on multiple lines since this solution can't really
        accommodate for multiple lines.
    4.  Use .help-spacing to provide some placeholder space for an error,
        assuming it's only one line long. The margin here is just an
        approximation.
*/
.help-spacing {
  position: relative;
  margin-bottom: 23px;
  /* [4] */
}
.help-spacing .help-block {
  position: absolute;
  /* [1] */
  top: 100%;
  /* [1b] */
  left: 0;
  /* [1a] */
  right: 0;
  /* [1a] */
  margin-top: 0;
  /* [2] */
  margin-bottom: 0;
  /* [2] */
}
@media (max-width: 767px) {
  .help-spacing .help-block {
    font-size: 12px;
    /* [3] */
  }
}

[id=AgentName-list] .k-list *, [id=MLOName-list] .k-list * {
  box-sizing: border-box;
}
[id=AgentName-list] .k-list .k-item, [id=MLOName-list] .k-list .k-item {
  float: left;
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
  line-height: normal;
}
[id=AgentName-list] .k-list .k-item:last-child, [id=MLOName-list] .k-list .k-item:last-child {
  border-bottom: none;
}
/*# sourceMappingURL=prequal.css.map */
