$container-width: 332px;
$container-height: 504px;
$create-dialog-container-width: 332px;
$create-dialog-container-height: 412px;

.container-invite-members {
  min-height: $container-height;
  max-height: $container-height;
  height: $container-height;
  width: var(--max-width-dialog-list);

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  .disabled {
    color: var(--secondary-text);
  }

  &--add-members-container {
    min-height: $container-height;
    max-height: $container-height;
    height: $container-height;
    width: var(--max-width-dialog-list);

    &--loader {
      align-items: center;
      justify-content: center;
      display: flex;
    }

    &--wrapper {
      min-height: 432px;
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      justify-content: flex-start;
      align-items: flex-start;

      &__inf {
        min-height: 20px;
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        display: flex;
        letter-spacing: 0.1px;
        color: var(--main-elements);
        margin-top: 24px;
      }

      &__members {
        display: flex;
        max-height: 326px;
        height: 356px;
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.1px;
        color: var(--main-elements);
        margin-top: 8px;
        width: 100%;
        align-items: center;

        &__empty-members {
          display: flex;
          flex-direction: column;
          align-items: center;
          padding: 0px;
          gap: 16px;

          width: 100%;
          height: 100px;
        }
        &__list {
          height: 290px;
          max-height: 290px;
          min-height: 290px;
        }
      }

      &__dialog-name-input {
        margin-top: 8px;

        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;

        align-items: center;
        text-align: center;
        padding: 8px;
        width: 268px;
        height: 44px;

        border: 1px solid #90979f;
        border-radius: 4px;

        background-color: var(--main-background);
        color: var(--secondary-text);

        input {
          color: var(--secondary-text);
          background-color: var(--main-background);
          margin-left: 6px;
          margin-right: 6px;

          font-style: normal;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;

          display: flex;
          align-items: center;
          letter-spacing: 0.15px;

          border: none;
          outline: none;
        }
      }
      &__icon {
        width: 24px;
        height: 24px;
        cursor: pointer;
        fill: var(--tertiary-elements);

        svg path {
          fill: var(--tertiary-elements);
        }
      }
    }
  }

  &--btn-container {
    max-height: 32px;
    height: 32px;
    width: 100%;
    min-height: 34px;
    margin-top: 24px;
    margin-bottom: 24px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-end;
  }

  &-loader {
    fill: var(--color-icon);
  }
}
.filtered-text-field{
  width: 100%;
  background-color: var(--main-background);
  color: var(--secondary-text);

  &__icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    fill: var(--tertiary-elements);

    svg path {
      fill: var(--tertiary-elements);
    }
  }

}
