.ps-tagging-dropdown {
  background: var(--COLOR--APP);
  border: 1px solid var(--divider);
  border-radius: var(--BORDER-RADIUS--MD);
  box-shadow: var(--BOX-SHADOW);
  padding-top: 2px;
  padding-bottom: 2px;
  margin-top: 2px;
  max-height: 300px;
  overflow: auto;
  font-size: 75%;

  .ps-postbox & {
    margin: 0 4px;
  }
  
  .ps-tagging-dropdown-item {
    border: none;

    > a {
      height: 46px;
      color: var(--COLOR--TEXT--LIGHT);
      transition: all 0.2s ease-in;

      @if $rtl {
        padding: 6px 50px 6px 8.5px;
        border-right: 3px solid var(--COLOR--APP);
      } @else {
        padding: 6px 8.5px 6px 50px;
        border-left: 3px solid var(--COLOR--APP);
      }      

      &:hover, 
      &:focus {
        background-color: var(--COLOR--PRIMARY--ULTRALIGHT);
        color: var(--COLOR--LINK);

        @if $rtl {
          border-right: 3px solid var(--COLOR--LINK);
        } @else {
          border-left: 3px solid var(--COLOR--LINK);
        }
      }

      .ps-avatar {
        top: 7px;

        @if $rtl {
          right: 8px;
        } @else {
          left: 8px;
        }
      }

      > span {}
    }
  }
}
