.current-move-item-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  width: 100%;
  height: 100%;
  margin-right: 5px;
  padding: 0 5px;

  background-color: var(--accent-color-bg);
  border-radius: 5px;

  .move-item-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;

    color: var(--app-bg-color-l1);

    -webkit-line-clamp: 1;
  }
}

.hidden {
  visibility: hidden;
}

.parent-project-input {
  display: flex;
  align-items: center;

  height: 30px;
  min-height: 30px;
  padding-left: 10px;

  border: 1px solid var(--color-gray-aaa);
  border-radius: 5px;
}

.mat-icon-drag {
  cursor: all-scroll;
  position: relative;
  top: 3px;
}

.form {
  display: grid;
  grid-template-rows: 50px 1fr 50px;
  height: 100%;

  .body {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 0 20px;

    .title-move-dialog {
      margin: 15px 0 10px;
      color: var(--color-gray-aaa);
    }

    .move-tree {
      flex-grow: 1;
      max-height: 180px;
      margin-top: 10px;

      &.contanteble-card {
        max-height: 210px;
      }
    }

    .move-tree-item {
      display: flex;
      align-items: center;

      .move-tree-item-node {
        display: flex;
        align-items: center;

        .mat-button-icon {
          &.disabled-button {
            opacity: 0;
          }

          .mat-icon-arrow {
            display: flex;
          }
        }

        .item-name-text {
          cursor: pointer;

          overflow: hidden;
          display: -webkit-box;
          -webkit-box-orient: vertical;

          font-weight: 500;
          color: var(--color-gray-888);

          -webkit-line-clamp: 1;
        }
      }
    }
  }

  .spinner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    height: 100%;

    .spinner-title {
      font-size: 16px;
    }

    .spiner {
      width: 70%;
      margin-top: 30px;
    }
  }
}

.cdk-drag-placeholder {
  opacity: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
}
