.kedao-dropdown {
  position: relative;
  width: auto;
  display: block;
  float: left;
  height: 36px;
  margin: 5px 0 5px 3px;
  border-radius: 2px;
  cursor: pointer;
}
.kedao-dropdown.disabled {
  pointer-events: none;
  opacity: 0.3;
}
.kedao-dropdown.light-theme .dropdown-content {
  border: 1px solid #ccc;
}
.kedao-dropdown.light-theme .dropdown-content .dropdown-arrow {
  background-color: #fff;
  border: 1px solid #ccc;
}
.kedao-dropdown.light-theme .dropdown-content .dropdown-content-inner {
  background-color: #fff;
}
.kedao-dropdown .dropdown-content {
  box-sizing: content-box;
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 50%;
  visibility: hidden;
  float: left;
  width: auto;
  min-width: 100%;
  margin-top: 9px;
  border-radius: 2px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  cursor: default;
  transform: translate(-50%, 20px);
  transition: 0.2s;
}
.kedao-dropdown .dropdown-content ::-webkit-scrollbar-track {
  background-color: transparent;
}
.kedao-dropdown .dropdown-content ::-webkit-scrollbar {
  width: 4px;
  background-color: transparent;
  border-radius: 2px;
}
.kedao-dropdown .dropdown-content ::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}
.kedao-dropdown .dropdown-content .dropdown-arrow {
  position: absolute;
  z-index: 1;
  top: -3px;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #21242a;
  transform: translateX(-50%) rotate(45deg);
  transition: margin 0.2s;
}
.kedao-dropdown .dropdown-content .dropdown-arrow.active {
  background-color: #3498db;
}
.kedao-dropdown .dropdown-content-inner {
  position: relative;
  z-index: 2;
  overflow: auto;
  background-color: #21242a;
  border-radius: 2px;
}
.kedao-dropdown .dropdown-handler {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 36px;
  background-color: transparent;
  border: none;
  color: #6a6f7b;
  cursor: pointer;
  border-radius: 2px;
}
.kedao-dropdown .dropdown-handler:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.kedao-dropdown .dropdown-handler * {
  display: inline;
  padding: 0;
  font-size: inherit;
  font-weight: normal;
}
.kedao-dropdown .dropdown-handler > span {
  float: left;
  display: flex;
  padding: 0 10px;
  font-size: 14px;
  line-height: 36px;
  pointer-events: none;
}
.kedao-dropdown .dropdown-handler > span i {
  display: block;
  height: 36px;
  font-size: 16px;
  line-height: 36px;
  text-align: center;
}
.kedao-dropdown.active .dropdown-handler {
  background-color: rgba(0, 0, 0, 0.05);
}
.kedao-dropdown.active .dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}
.kedao-dropdown.component-wrapper {
  cursor: default;
}
.kedao-dropdown:first-child {
  margin-left: 0;
}