@charset "utf-8";
/* CSS Document */

/*-------------multiselect-------------*/

li {
  list-style-type: none;
}
.newSelect {
  display: inline-block;
  line-height: 30px;
  vertical-align: middle;
  position: absolute;
  left: 78px;
  width: 130px !important;
}

.newSelect * {
  font-size: 14px;
  padding: 0px;
  margin: 0px;
}

.newSelect:hover {
  cursor: pointer;
}

.newSelect .newSelectTitle {
  display: block;
  padding: 0px 0px 0px 20px;
  border: 1px solid #ccc;
  border-radius: 3px;
  height: 30px;
  background: #fff;
  text-align: left;
}

.newSelect .newSelectTitle:hover {
  border-color: #525777;
}

.newSelect .newSelectTitle span {
  display: inline-block;
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
line-height: 28px;
  
  font-size: 14px;
}

.newSelect .arrow {
  float: right;
  margin: 8px 10px 0px 0px;

  transition: transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
}

.newSelect .arrow_turn {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
}

.newOptions {
  text-indent: 20px;
  margin: 5px 0 5px 0;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  z-index: 1000;
  display: none;
}

.newOptions::-webkit-scrollbar-track {
  background-color: #e0e0e0;
}

.newOptions::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

.newOptions::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 10px;
}

.newOptions::-webkit-scrollbar-thumb:hover {
  background-color: #525777;
}

.newOptions li {
  
  font-size: 14px;
  text-align: left;
}

.newOptions li:hover {
  background: #525777;
  color: #fff;
}

.newOptions li.sArea {
  border-top: 1px solid #525777;
  padding: 5px 0px !important;
  text-align: center;
}

.newOptions li.sArea:hover {
  background: #fff;
  cursor: auto;
}

.newOptions li.sArea button {
  padding: 4px 20px;
  color: #4f4f4f;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: linear-gradient(to bottom, #fff 0%, #fff 50%, #f3f3f3 70%, #f8f8f8 90%);
}

.newOptions li.sArea button:hover {
  background: linear-gradient(to bottom, #f8f8f8 0%, #f8f8f8 50%, #f3f3f3 70%, #fafafa 90%);
}

.newOptions li.sArea button:hover {
  border-color: #aaa;
  cursor: pointer;
}

.newOptions li[data-select="true"] {
  /* background: #525777; */
  /* color: #fafafa; */
}
