:host {
  display: flex;
  flex-direction: column;
  width: 400px;

  &.cross-release {
    width: 1000px;
  }

  .row.add-cross {
    .field {
      flex: 1 0 200px;

      &-disabled {
        border-color: var(--color-gray-aaa);
      }
    }
  }

  app-cmf-select-model-slice {
    width: 100%;
  }

  .cross-my-release {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

    .close-icon {
      cursor: pointer;
    }
  }

  .content {
    width: 100%;
    min-height: 300px;
    padding: 0 24px 20px;
  }

  .row {
    display: flex;
    gap: 10px;
  }

  .field-name {
    margin-bottom: 3px;
    font-size: 12px;
    color: #8c8c8c;

    &.required::after {
      content: '*';
      margin-left: 3px;
      color: var(--default-color-red);
    }
  }

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

    width: 100%;
    min-height: 36px;
    margin-bottom: 18px;
    padding: 4px 3px 4px 10px;

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

    app-cmf-select-model {
      flex: 1;
    }

    &.error {
      margin-bottom: 0;
    }
  }

  .add-release-button {
    flex: none;
    margin-bottom: 18px;
  }

  .field.date {
    display: flex;
  }

  .release-list {
    max-height: 300px;
  }

  input {
    min-width: 0;
    border: none;
    outline: none;

    &:focus {
      outline: none;
    }
  }

  .field-checkbox {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 10px;

    input {
      transform: scale(1.3);
    }
  }

  .error-message {
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--default-color-red);
  }

  .select-models-widget {
    gap: 5px;

    .chevron {
      right: 5px;
    }
  }

  app-cmf-inline-edit {
    width: 100%;
  }

  app-cmf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cmf-dialog__footer {
    gap: 10px;
  }
}

app-cmf-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
