.from-exist-project {
  .project {
    display: flex;
    flex-direction: column;
  }

  .ocation {
    display: flex;
    flex-direction: column;
  }

  .select {
    color: var(--color-gray-222);
  }
}

.form .table {
  grid-template-columns: 60% 40%;
  width: 100%;
}

.multiple-select {
  display: flex;
  align-items: center;

  min-height: 27px;
  padding: 5px 10px;

  color: var(--color-gray-666);

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

.radio-group-element {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: flex-start;

  margin-bottom: 5px;

  .textcontent {
    display: flex;
    flex-direction: column;
    white-space: nowrap;

    span {
      display: inline-block;
      margin-top: 5px;
      font-size: 12px;
    }
  }

  input {
    margin-top: 2px;
    margin-left: 0;
  }
}

.disabled {
  pointer-events: none;
  background-color: var(--color-gray-ddd);
}
