.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 #7F9DB9;
  text-align: left;
  white-space: nowrap;
  line-height: 26px;
  color: #333;
  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 {
  padding-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;
	right: 0;
  z-index: 1000;
  background: #fff;
  color: #333;
  border: 1px solid #7F9DB9;
  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-drop ul {
  overflow: hidden;
  padding: 5px;
}
.ms-drop ul > li {
  list-style: none;
}
.ms-drop ul > li ~ li {
	margin-top: 5px;
}
.ms-drop ul > li label {
	display: flex;
	align-items: center;
	gap: 5px;
  white-space: nowrap;
  cursor: pointer;
}
.ms-drop .ms-no-results {
  display: none;
}

/* sp */
._sp .ms-drop ul {
	padding: 10px;
}
._sp .ms-drop ul > li ~ li {
	margin-top: 10px;
}
