.dropDownBtn .editor-btn-group {
  display: flex;
  border-radius: 6px;
}
.dropDownBtn .editor-btn-group:focus,
.dropDownBtn .editor-btn-group:hover {
  background: rgba(28, 36, 46, 0.04);
}
.dropDownBtn .editor-btn-group:focus .arrow,
.dropDownBtn .editor-btn-group:hover .arrow {
  background: rgba(28, 36, 46, 0.04);
}
.dropDownBtn .editor-dropdown-button .editor-btn + .editor-btn {
  margin-left: 0;
}
.dropDownBtn .editor-dropdown-trigger {
  width: 20px;
}
.dropDownBtn .editor-btn {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 8px;
  padding: 8px 16px 16px 8px;
  color: rgba(28, 36, 46, 0.85);
  font-size: 14px;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 6px;
}
.dropDownBtn .editor-btn .anticon-loading {
  margin-left: 0 !important;
}
.dropDownBtn .editor-btn:focus {
  box-shadow: none;
}
.dropDownBtn .editor-btn .anticon + .text,
.dropDownBtn .editor-btn img + .text {
  margin-left: 4px;
}
.dropDownBtn .editor-btn img {
  width: 16px;
  height: 16px;
}
.dropDownBtn .editor-btn .anticon {
  font-size: 14px;
}
.dropDownBtn .editor-btn .cont {
  display: flex;
  align-items: center;
}
.dropDownBtn .editor-btn .arrow {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 100%;
  border-radius: 0 6px 6px 0;
  transition: background 0.3s;
}
.dropDownBtn .editor-btn .arrow .anticon {
  color: rgba(28, 36, 46, 0.85);
  font-size: 12px;
}
.dropDownBtn .editor-btn .active {
  background: #e5eaf8 !important;
}
.dropDownBtn .editor-btn:disabled {
  color: rgba(28, 36, 46, 0.25);
  background: #fff;
}
.dropDownBtn .editor-btn:disabled .anticon,
.dropDownBtn .editor-btn:disabled img {
  filter: grayscale(100%);
}
@media screen and (max-width: 960px) {
  .dropDownBtn .editor-btn .text {
    display: none;
  }
}
