span.custom-multiselect .btn-group .dropdown-toggle {
    background: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: none;
    color: #2e2e2e;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    margin: 0;
    overflow: hidden;
    padding: 6px 12px;
    text-align: left;
    text-overflow: ellipsis;
    width: 100%;
}
span.custom-multiselect div.multiselect-wrapper {
    background-color: #fff;
    position: relative;
}
span.custom-multiselect .el-loading-mask {
    border-radius: 6px;
    max-width: 100%;
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
span.custom-multiselect .btn-group.open>.dropdown-toggle:focus,
span.custom-multiselect .btn-group.open>.dropdown-toggle:hover {
    color: #2e2e2e;
    background-color: #fff;
    border-color: #ddd;
}
span.custom-multiselect .multiselect-selected-text {
    display: inline-block;
    float: left;
    max-width: calc(100% - 16px);
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}
body span.multiselect-native-select .btn-group.open .multiselect-container .multiselect-item.multiselect-none{
     -webkit-box-ordinal-group:3;
     box-ordinal-group:3;
     text-align:center;
 }
body span.multiselect-native-select .btn-group.open .multiselect-container .multiselect-item.multiselect-none input[type="checkbox"]{display:none;}
body span.multiselect-native-select .btn-group .multiselect-container li.multiselect-none{border-top:1px solid #ddd; padding-top:4px;}
body span.multiselect-native-select .btn-group .multiselect-container li.multiselect-none label{color:#fa6969; font-weight:normal; text-align:center;}

.custom-multiselect .multiselect-selected-text {
  display: inline-block;
  max-width: calc(100% - 15px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
.custom-multiselect .scroller {
  height: 100%;
}
.custom-multiselect .skipped-input {
  cursor: pointer;
  margin-right: 5px;
}
.custom-multiselect .multiselect-wrapper label {
  cursor: pointer;
  width: 100%;
  font-weight: normal;
  padding: 3px 20px;
}
.custom-multiselect .multiselect-wrapper label .two-rows {
  display: inline-block;
  line-height: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  width: calc(100% - 40px);
}
.custom-multiselect .multiselect-selected-text .two-rows {
  display: inline !important;
  width: auto !important;
}
.custom-multiselect .multiselect-selected-text small {
  display: none;
}

.custom-multiselect-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.custom-multiselect-spinner-icon {
  width: 32px;
  height: 32px;
  border: 3px solid #e5e9f2;
  border-top-color: #1e7eee;
  border-radius: 50%;
  animation: custom-multiselect-spin 1s infinite linear;
}

@keyframes custom-multiselect-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
