/** dropdown **/

.dropdown_select_dropdown_ul {
  padding: 6px 0;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.13);
  border-radius: 4px;
  max-height: 397px;
  max-width: 500px;
  overflow: auto;
  margin: 5px 0;
}

.dropdown_select_dropdown_item {
  font-size: 14px;
  padding: 10px 8px;
  position: relative;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
  line-height: 18px;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 3px;
}

.dropdown_select_dropdown_item:not(:last-child) {
  margin-bottom: 6px;
}

.dropdown_select_dropdown_item:hover,
.dropdown_select_dropdown_item.active {
  background-color: rgba(10, 93, 231, 0.05);
}