.ant-dropdown-menu {
  // min-width: 160px;
  max-height: 424px;
  overflow: auto;
  border-radius: 4px;
  padding: 4px;

  &-item {
    padding: 2px 8px;
    clear: both;
    color: rgba(0, 0, 0, .65);
    font-weight: 400;
    font-size: 14px;
    line-height: 32px;
    height: 36px;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    border-radius: 4px;
    box-sizing: border-box;

    &:hover {
      background-color: rgba(14, 62, 118, 0.05);
    }
    &-disabled {
      color: rgba(0, 0, 0, .25);
      cursor: not-allowed;
    }

    &-selected {
      background-color: rgba(14, 62, 118, 0.08);
    }
  }

  &-submenu-title {
    padding: 4px 12px;
    clear: both;
    color: rgba(0, 0, 0, .65);
    font-weight: 400;
    font-size: 14px;
    line-height: 32px;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;

    &-disabled {
      color: rgba(0, 0, 0, .25);
      cursor: not-allowed;

      &:hover {}
    }

    &-selected {
      background-color: rgba(0, 0, 0, .05);
    }
  }

  &-submenu-popup {
    padding: 0;
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 12%), 0 6px 16px 0 rgba(0, 0, 0, 8%), 0 9px 28px 8px rgba(0, 0, 0, 5%);
    ul {
      margin-left: 0;
      margin-right: 0;
      min-width: 96px;
    }
  }

  &::-webkit-scrollbar {
    width: 4px;
  }

  &::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.25);
  }
}
