.bee-tooltip {
  opacity: 1;
  position: absolute;
  border-radius: 2px;
  display: block;
  top: 0;
  left: 0;
  transition: left 0.5s ease 0s, top 0.5s ease 0s, opacity 0.3s ease 0s;
  z-index: 100;

  &-hidden {
    display: none;
  }


  &__body {
    background: white;
    display: flex;
    place-content: center flex-start;
    -webkit-box-pack: start;
    z-index: 1001;
    right: 9px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: rgba(90, 109, 122, 0.4) 0px 1px 16px;
    flex-wrap: wrap;
    padding: 4px;
    position: relative;
    border-radius: 5px;
    top: 0;

    .bee-link-input {
      height: 130px;
      width: 271px;
      padding-top: 14px;
      box-sizing: border-box;

      &__row {
        margin: 6px 3px;
        display: flex;
        align-items: center;

        &-label {
          font-size: 12px;
          color: rgb(51, 51, 51);
          margin: 0px 10px;
        }

        &-input {
          width: 178px;
          height: 30px;
          border-radius: 4px;
          border: 1px solid transparent;
          color: rgb(121, 121, 121);
          outline: none;
          font-size: 12px;
          background: rgb(250, 250, 252);
          padding: 0px 10px;
          box-sizing: border-box;

          &-error {
            border: 1px solid red;
          }
        }

        &-visit {
          color: rgb(153, 153, 153);
          font-size: 12px;
          margin-left: 4px;
          cursor: pointer;
        }
      }

      &__apply {
        width: 44px;
        height: 22px;
        line-height: 22px;
        border-radius: 2px;
        background-color: rgb(64, 159, 255);
        cursor: pointer;
        float: right;
        margin: 7px 12px 0px;

        &-btn {
          font-size: 12px;
          color: rgb(255, 255, 255);
          display: block;
          text-align: center;
        }
      }
    }

    .bee-link-hover {
      height: 40px;
      line-height: 40px;
      width: 271px;
      align-items: center;
      display: flex;
      background: rgb(255, 255, 255);

      &-link {
        text-decoration: none;
        font-size: 12px;
        color: rgb(64, 159, 255);
        margin-left: 16px;
        margin-right: 19px;
        display: block;
        height: 100%;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        flex: 1 1 0%;
        font-weight: 500;
        text-align: left;
      }

      .bee-action {
        display: inline-flex;
        font-size: 12px;
        color: rgb(102, 102, 102);
        height: 100%;
        margin-right: 14px;

        &-edit-btn {
          cursor: pointer;
          font-size: 12px;
        }

        &-divider {
          margin-left: 8px;
          margin-right: 8px;
          color: rgba(0, 0, 0, 0.14);
        }

        &-remove-btn {
          cursor: pointer;
          font-size: 12px;
          margin-right: 8px;
        }
      }
    }
  }
}

