/* TSG Select2 Lite Styles */
.tsg-s2-wrap {
  position: relative;
  display: inline-block;
  width: 155px;
}
.tsg-s2-input {
  width: 100%;
  padding: 4px 24px 4px 8px;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
}
.tsg-s2-input:focus {
  outline: none;
  border-color: var(--tsg-input-focus, #039BE5);
  box-shadow: 0 0 0 2px rgba(3,155,229,.12);
}
.tsg-s2-clear {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  display: none;
}
.tsg-s2-clear:hover { color: #333; }
.tsg-s2-dd {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  z-index: 9999;
  max-height: 220px;
  overflow-y: auto;
  display: none;
}
.tsg-s2-item {
  padding: 7px 12px;
  font-size: 13px;
  cursor: pointer;
  color: #374151;
}
.tsg-s2-item:hover { background: #F0F9FF; color: #039BE5; }
.tsg-s2-none { padding: 8px 12px; font-size: 12px; color: #999; }
