.EllipsisButton {
  position: relative;
  padding: 0 0 3px 0;
  width: 30px;
  float: right;

  &:hover .Button {
    background: #efefef;
  }

  .Button {
    border: none;
    border-radius: 50%;
    background: none;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-size: 13px;
    font-weight: normal;
    padding: 0;
    cursor: pointer;
  }

  .items {
    text-align: left;
    display: none;
    background: white;
    position: absolute;
    border: 1px solid #888;
    z-index: 200;
    right: 0;
    top: 30px;
    border-radius: 3px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);

    .item {
      display: block;
      height: 30px;
      line-height: 30px;
      padding: 0 10px;
      cursor: pointer;
      white-space: nowrap;

      &::first-letter {
        text-transform: uppercase;
      }

      &:hover {
        background: rgba(0, 0, 0, 0.1);
      }
    }

    &.active {
      display: block;
    }
  }
}
