@charset "UTF-8";
/**
 * @author zhixin wen <wenzhixin2010@gmail.com>
 */
.ms-offscreen {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: auto !important;
  top: auto !important;
}

.ms-parent {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.ms-choice {
  display: block;
  width: 100%;
  height: 26px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #aaa;
  text-align: left;
  white-space: nowrap;
  line-height: 26px;
  color: #444;
  text-decoration: none;
  border-radius: 4px;
  background-color: #fff;
}
.ms-choice.disabled {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}
.ms-choice > span {
  position: absolute;
  top: 0;
  left: 0;
  right: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding-left: 8px;
}
.ms-choice > span.ms-placeholder {
  color: #999;
}
.ms-choice > div.icon-close {
  position: absolute;
  top: 0px;
  right: 16px;
  height: 100%;
  width: 16px;
}
.ms-choice > div.icon-close:before {
  content: "×";
  color: #888;
  font-weight: bold;
}
.ms-choice > div.icon-close:hover:before {
  color: #333;
}
.ms-choice > div.icon-caret {
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  right: 8px;
  margin-top: -2px;
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
}
.ms-choice > div.icon-caret.open {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.ms-drop {
  width: auto;
  min-width: 100%;
  overflow: hidden;
  display: none;
  margin-top: -1px;
  padding: 0;
  position: absolute;
  z-index: 1000;
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.ms-drop.bottom {
  top: 100%;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}
.ms-drop.top {
  bottom: 100%;
  box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
}

.ms-search {
  display: inline-block;
  margin: 0;
  min-height: 26px;
  padding: 2px;
  position: relative;
  white-space: nowrap;
  width: 100%;
  z-index: 10000;
  padding: 10px 10px 12px;
}
.ms-search input {
  box-sizing: border-box;
  width: 100%;
  height: auto !important;
  min-height: 36px;
  padding: 8px 10px 8px 36px;
  margin: 0;
  outline: 0;
  font-family: sans-serif;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 16px 16px;
}
.ms-search input::placeholder {
  color: #999;
}
.ms-search {
  box-sizing: border-box;
}

.ms-filter-options {
  display: flex;
  padding: 4px 4px;
  border-bottom: 1px solid #eee;
  background-color: #f9f9f9;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.ms-filter-options::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.ms-filter-option {
  line-height: 20px;
  padding: 4px 6px;
  margin-right: 4px;
  cursor: pointer;
  border-radius: 3px;
  color: #666;
  background-color: #fff;
  border: 1px solid #ddd;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.ms-filter-option:hover {
  background-color: #e9ecef;
  border-color: #ccc;
}
.ms-filter-option.active {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}
.ms-filter-option:last-child {
  margin-right: 0;
}

.ms-drop ul {
  overflow: auto;
  margin: 0;
  padding: 0;
}
.ms-drop ul > li {
  list-style: none;
  display: list-item;
  background-image: none;
  position: static;
  padding: 8px 12px;
}
.ms-drop ul > li .disabled {
  font-weight: normal !important;
  opacity: 0.35;
  filter: Alpha(Opacity=35);
  cursor: default;
}
.ms-drop ul > li.multiple {
  display: block;
  float: left;
}
.ms-drop ul > li.group {
  clear: both;
}
.ms-drop ul > li.multiple label {
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ms-drop ul > li label {
  position: relative;
  padding-left: 28px;
  margin-bottom: 0;
  font-weight: normal;
  display: block;
  white-space: nowrap;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}
.ms-drop ul > li label.optgroup {
  font-weight: bold;
}
.ms-drop ul > li.hide-radio {
  padding: 0;
}
.ms-drop ul > li.hide-radio:focus, .ms-drop ul > li.hide-radio:hover {
  background-color: #f8f9fa;
}
.ms-drop ul > li.hide-radio.selected {
  color: #002f5e !important;
  background-color: transparent !important;
}
.ms-drop ul > li.hide-radio label {
  margin-bottom: 0;
  padding: 5px 8px;
}
.ms-drop ul > li.hide-radio input {
  display: none;
}
.ms-drop ul > li.option-level-1 label {
  padding-left: 28px;
}
.ms-drop ul > li.group ~ li.option-level-1:not(.hide-radio) > label {
  padding-left: 40px;
}
.ms-drop ul > li.option-divider {
  padding: 0;
  margin: 10px 0;
  border-top: 1px solid #e9ecef;
}
.ms-drop input[type=radio], .ms-drop input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  border-radius: 3px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.2s ease;
}
.ms-drop input[type=checkbox]:checked {
  background-color: #002f5e;
  border-color: #002f5e;
}
.ms-drop input[type=checkbox]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.ms-drop .ms-no-results {
  display: none;
}

/* Clear All link style */
.ms-clear-all {
  display: block;
  padding: 12px 15px;
  color: #002f5e;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  border-top: 1px solid #e9ecef;
  margin-top: 0;
  text-align: left;
}
.ms-clear-all:hover {
  color: #004080;
}
.ms-drop .selected {
  background: transparent !important;
  color: #002f5e !important;
}
.ms-drop .selected span {
    color: #002f5e !important;
}

/* Multiple select tag styles */
.ms-choice .ms-tag {
  display: inline-flex;
  align-items: center;
  background-color: #EFF3F7;
  border-radius: 16px;
  padding: 4px 8px 4px 12px;
  margin: 2px 4px 2px 0;
  font-size: 14px;
  color: #002f5e;
  line-height: 1;
  max-width: 80px;
}

.ms-choice .ms-tag-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.ms-choice .ms-tag .ms-tag-close {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 6px;
  background-image: url('/static/images/desktop/new_sg_starr/icon_close.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  flex-shrink: 0;
}

.ms-choice .ms-tag .ms-tag-close:hover {
  opacity: 0.8;
}

/* Custom tooltip styles */
.ms-tooltip {
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.4;
  max-width: 300px;
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  word-wrap: break-word;
}

.ms-tooltip::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.ms-tooltip.show {
  opacity: 1;
  visibility: visible;
}

.ms-tooltip::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.ms-tooltip.bottom::before {
  bottom: auto;
  top: -6px;
  border-width: 0 6px 6px;
  border-color: transparent transparent #333 transparent;
}

/*# sourceMappingURL=multiple-select.css.map */
