:host {
  .relations {
    &-dialog {
      display: flex;
      flex-direction: column;

      width: 74vw;
      max-width: 1660px;
      height: 80vh;
      max-height: 800px;
    }

    &-content {
      flex: 1;
      padding-top: 25px;
    }

    &-container {
      margin: 20px 0;
    }

    &-item {
      display: flex;
      justify-content: space-between;

      padding: 8px;

      border: 1px solid #3e516d;
      border-bottom: none;

      &-empty {
        font-style: italic;
        color: #8c8c8c;
      }

      input {
        cursor: pointer;
      }

      &:last-child {
        border-bottom: 1px solid #3e516d;
      }
    }
  }

  .search-field {
    display: flex;
    align-items: center;

    width: 240px;
    height: 38px;
    padding: 3px 6px;

    border: 1px solid var(--color-gray-eee);
    border-radius: 2px;

    .search-input {
      flex: 1;
      background: var(--color-gray-fff, #fff);
      border: none transparent;
    }

    .clear-icon {
      cursor: pointer;
    }
  }

  .footer button {
    margin-left: 8px;
  }
}
