﻿.checkedDropDown {
  position: relative;
  width: 100%; }
  .checkedDropDown .checkedDropDownText {
    padding-right: 30px;
    width: 100%; }
  .checkedDropDown a.checkedDropDownButton:before {
    font-family: 'Font Awesome 5 Free';
    font-size: 20px;
    font-weight: 500;
    content: "\f107";
    font-weight: 900; }
  .checkedDropDown a.checkedDropDownButton {
    position: absolute;
    right: 0px;
    z-index: 1;
    padding-top: 8px;
    height: 32px;
    width: 30px;
    text-align: center;
    text-decoration: none; }
  .checkedDropDown .checkedDropDownItems {
    width: 100%;
    z-index: 10;
    visibility: hidden;
    position: absolute;
    border: 1px solid #ccc;
    border-radius: 2px;
    background: white;
    max-height: 300px;
    overflow-y: auto;
    padding: 0; }
    .checkedDropDown .checkedDropDownItems .checkedDropDownItem {
      padding: 4px 5px; }
      .checkedDropDown .checkedDropDownItems .checkedDropDownItem .checkedDropDownCheckbox {
        float: none;
        width: auto;
        display: inline-block;
        margin-right: 5px; }
      .checkedDropDown .checkedDropDownItems .checkedDropDownItem label {
        display: inline-block;
        float: none;
        position: absolute;
        right: 0px;
        left: 30px;
        width: auto;
        white-space: nowrap; }
    .checkedDropDown .checkedDropDownItems .checkedDropDownItem:hover {
      background: #337ab7;
      color: #fff; }

.autoComplete {
  position: relative; }
  .autoComplete .autoCompleteResults {
    position: absolute;
    background: #fff;
    border-radius: 4px;
    z-index: 10;
    outline: 1px solid #337ab7;
    min-width: 50%;
    width: auto;
    box-shadow: 0 0 3px 3px #e2e2e2; }
    .autoComplete .autoCompleteResults .dataRow .sel {
      background: #ffd800; }
    .autoComplete .autoCompleteResults .dataRow:hover {
      background: #337ab7;
      color: #fff;
      cursor: pointer; }
