/**
  * multiple-select - Multiple select is a jQuery plugin to select multiple elements with checkboxes :).
  *
  * @version v1.5.2
  * @homepage http://multiple-select.wenzhixin.net.cn
  * @author wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)
  * @license MIT
  */

@charset "UTF-8";

.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-image: none;
  cursor: not-allowed;
}

.ms-choice.disabled span {
  color: #999 !important;
}

.ms-choice>span {
  position: absolute;
  top: 0;
  left: 0;
  right: 32px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  /* padding-left: 8px */
  font-size: 13px;
}

.ms-choice>span.placeholder {
  color: #999
}

.ms-choice>div.icon-close {
  position: absolute;
  top: 0;
  right: 15px;
  height: 100%;
  width: 16px
}

.ms-choice>div.icon-close:before {
  content: '×';
  color: #888;
  font-weight: bold;
  position: absolute;
  top: 50%;
  margin-top: -14px
}

.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: 6px 5px 0 5px
}

.ms-choice>div.icon-caret.open {
  border-color: transparent transparent #888 transparent;
  border-width: 0 5px 6px 5px
}

.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%;
  left: 0;
  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: 10px;
  position: relative;
  white-space: nowrap;
  width: 100%;
  z-index: 10000;
  box-sizing: border-box
}

.ms-search input {
  width: 100%;
  height: auto !important;
  min-height: 30px;
  padding: 8px 10px;
  margin: 0;
  outline: 0;
  font-family: sans-serif;
  border: 1px solid #aaa;
  border-radius: 32px;
  box-shadow: none
}

.ms-drop ul {
  overflow: auto;
  margin: 0;
  padding: 10px;
}

/* scrolbar */
.ms-drop ul::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.ms-drop ul::-webkit-scrollbar-track {
  background: #f1f1f1; 
}

/* Handle */
.ms-drop ul::-webkit-scrollbar-thumb {
  background: #6c797f; 
  border-radius: 10px;
}

/* Handle on hover */
.ms-drop ul::-webkit-scrollbar-thumb:hover {
  background: #002333; 
}

.ms-drop ul>li {
  list-style: none;
  display: list-item;
  background-image: none;
  position: static;
  padding: 0 8px;
  border-radius: 32px;
  font-size: 13px;
}

.ms-drop ul>li .disabled {
  font-weight: normal !important;
  opacity: .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: 1.25rem;
  margin-bottom: 0;
  font-weight: normal;
  display: block;
  /* white-space: nowrap; */
  cursor: pointer
}

.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: #fff;
  background-color: #1ac54f;
  border-radius: 32px;
}

.ms-drop ul>li.hide-radio label {
  margin-bottom: 0;
  /* padding: 8px 10px; */
}

.ms-drop ul>li.hide-radio input {
  display: none
}

.ms-drop ul>li.option-level-1 label {
  padding-left: 28px
}

.ms-drop input[type="radio"],
.ms-drop input[type="checkbox"] {
  position: absolute;
  margin-top: 12px;
  margin-left: -23px;
}

.ms-drop .ms-no-results {
  display: none
}

/* original */
.multiple-select {
  width: 100% !important;
  height: auto;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

.multiple-select-mobile .ms-drop.bottom {
  left: -80% !important;
}

.ms-choice>span.placeholder {
  color: #2C4251;
}

.ms-choice {
  border: 1px solid transparent;
  outline: none;
}

.ms-drop {
  margin-top: 11px;
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.ms-drop span {
  font-family: 'font-regular', sans-serif;
  font-size: 14px;
  display: block;
  padding: 8px 0px;
}

/* .multiple-select::after {
  content: "";
  position: absolute;
  top: -6px;
  right: -5px;
  bottom: 12px;
  width: 1px;
  height: 40px;
  background-color: #D8D8D8;
} */

/* diferent */
.multiple-select-content .multiple-select {
  width: 100% !important;
  height: auto;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

.multiple-select-content .ms-choice>span.placeholder {
  color: #2C4251;
}

.multiple-select-content .ms-choice>span {
  padding: 7px;
}

.multiple-select-content .ms-choice {
  padding: 19.5px;
  border: 1px solid #d8d8d8;
  outline: none;
  background: #FFFFFF;
}

.multiple-select-content .ms-drop {
  margin-top: -3px;
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: 1px solid #d8d8d8;
  padding: 15px 0;
  width: 100%;
}

/* .multiple-select-content .ms-drop span {
  font-family: 'font-regular', sans-serif;
  font-size: 12px;
} */
.multiple-select-content .multiple-select::after {
  display: none;
}

#activity {
  height: 1px !important;
}

.select-mast-success .ms-choice span {
  color: #1ac54f;
}