.topBar {
  height: 44px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12);
  display: flex;
  position: relative;
  padding: 0 7px 0 7px;

  .titleContainer {
    flex: 1;
    display: flex;
    justify-content: left;
    align-items: center;

    img {
      width: 32px;
      margin: 0 5px 0 17px;
    }

    p {
      font-size: 16px;
      color: #2d3040;
      letter-spacing: 0;
      font-weight: bold;
      margin: 0;
      padding: 0;
    }
  }

  .iconImg {
    width: 24px;
  }

  .btnContainer {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .iconContainer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
  }
}