/* Smartbar */
  .smartBar {
    position: relative;
    background: #fff;
    cursor: text;
    text-align: left;
  }
  .smartBar .confirmed:empty {display: none}
  .smartBar .confirmed {
    display: inline-block;
    position: relative;
    margin: 3px 3px 0;
  }
  .smartBar .confirmed .id {
    display: none;
  }
  .smartBar .confirmed .item {
    display: inline-block;
    height: auto;
    line-height: 28px;
    background: #000;
    padding: 0px 8px;
    margin: 1px;
    color: #fff;
    font-size: .85em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -0.02em;

  }
  .smartBar .confirmed .item .name {
    display: inline-block;
    vertical-align: middle; 
  }
  .smartBar .confirmed .item .remove {
    position: relative;
    width: 14px;
    height: 14px;
    font-size: 0;
    margin-left: 6px;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
  }
  .smartBar .confirmed .item .remove::before, 
  .smartBar .confirmed .item .remove::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background: #fff;
    transition: all .3s linear;
  }
  .smartBar .confirmed .item .remove:hover::before, 
  .smartBar .confirmed .item .remove:hover::after {
    background: #f60; 
    transition: all .3s linear;
  }
  .smartBar .confirmed .item .remove::before {
    transform: rotate(45deg);
  }
  .smartBar .confirmed .item .remove::after {
    transform: rotate(-45deg);
  }
  .smartBar input.smartAreaSearch {
    border: none;
    outline: none;
    width: 90% !important;
    height: 46px;
    line-height: 46px;
    margin: 0;
    border: 0;
    padding: 2px 8px 0;
    box-shadow: none;
    color: #999;
    background-color: transparent;
    font-size: .9em;
    font-weight: 400;
  }
  .smartBar .popup {
    display: none;
    position: absolute;
    z-index: 101;
    width: 100%;
    max-height: 320px;
    top: 42px;
    left: 0;
    right: auto;
    margin: 0;
    padding: 0;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    list-style: none;
    border: 1px solid #fbfbfb;
    border-width: 6px 0;
    border-radius: 4px; 
  }
  .smartBar .popup > li {
    display: none;
    font-size: .9em;
    color: #808080;    
    cursor: pointer;
    padding: 7px 30px 7px 10px;
    transition: all .3s ease-in;
  }
  .smartBar .popup.visible,
  .smartBar .popup > li.visible {
    display: block;
  }
  .smartBar .popup > li:hover,
  .smartBar .popup > li.active {
    color: #333;
    background: #f5f1ed;
  }
  .smartBar .popup > li:before,
  .smartBar .popup > li i {
    display: none;
  }

  .smartBar .popup > div.active:hover {
    background: rgba(158, 125, 102, 0.88);
      color: #fff;
  }

  .smartBar .popup i {
    color: #a2a2a2;
    font-size: 0.9em;
  }
