.chat-detail {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 70%;
}

.chat-module {
  overflow-y: auto;
  display: block;
  flex: 1;
  height: 100%;
}

.cmf-feed-sidenav {
  position: relative;
  flex: 1 1 330px;
  max-height: 100%;
  border-right: 1px solid #dbdfe3;

  .app-toolbar {
    padding: 13px 15px 7px;
    border-bottom: 1px solid #dbdfe3;

    .tabs {
      display: flex;
      justify-content: space-between;
      padding: 2px 4px 6px;

      .tab-item {
        cursor: pointer;
        font-size: 14px;
        color: #999;

        &.selected {
          color: #000;
        }
      }
    }
  }

  .app-search-feed {
    display: flex;
    align-items: center;

    height: 28px;
    padding: 0 10px;

    color: #888;

    background-color: #fafafa;
    border-radius: 25px;

    .app-search-button-icon {
      cursor: pointer;
      display: flex;
      align-items: center;
    }

    #search-input-chat {
      flex-grow: 2;

      font-size: 12px;

      background-color: #fafafa;
      border: none;
      outline: none;
    }
  }

  .cmf-add-button {
    cursor: pointer;

    position: absolute;
    right: 15px;
    bottom: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    font-size: 10px;

    opacity: 0.6;
    background-color: #9cf;
    border-radius: 50%;

    &:hover {
      opacity: 1;
    }

    mat-icon {
      color: #fff;
    }
  }
}

.app-uwork-list-wrap {
  overflow: auto;
  height: calc(100% - 73px);

  .no-result,
  .feed-search-header {
    padding: 5px 10px;
  }
}
