.right-pane-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.right-pane-container .right-pane-header {
  padding: 24px;
  padding-bottom: 5px;
}

.right-pane-container .right-pane-header .right-pane-header-title-row {
  display: -webkit-box;
  -webkit-flex-direction: row;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.right-pane-container .right-pane-header .right-pane-header-title {
  font-size: 18px;
  font-weight: 700;
  color: rgba( 0, 0, 0 ,  1 );
  color: rgba( var(--palette-neutral-100,0, 0, 0) ,  1 );
  margin-top: 0;
  margin-bottom: 0;
  -webkit-box-flex: 1 1 0%;
  -webkit-flex: 1 1 0%;
  flex: 1 1 0%;
  /* Chrome fix - Chrome incorrectly sets a min-height/width it will not go lower than
     * See: https://github.com/philipwalton/flexbugs#1-minimum-content-sizing-of-flex-items-not-honored
     * CodePen with bug: https://codepen.io/philipwalton/pen/MYbrrr
     * CodePen with min-width: https://codepen.io/anon/pen/VrKGWa
     */
  min-height: 0;
  min-width: 0;
}

.right-pane-container .right-pane-header .right-pane-header-description {
  font-size: 14px;
  font-weight: 400;
  color: rgba( 102, 102, 102 ,  1 );
  color: rgba( var(--palette-neutral-60,102, 102, 102) ,  1 );
}

.right-pane-container .right-pane-header .right-pane-header-close-button {
  color: rgba( 0, 0, 0 ,  1 );
  color: rgba( var(--palette-neutral-100,0, 0, 0) ,  1 );
  height: auto;
}

.right-pane-container .right-pane-header .right-pane-header-close-button:hover {
  color: rgba( 102, 102, 102 ,  1 );
  color: rgba( var(--palette-neutral-60,102, 102, 102) ,  1 );
}

.right-pane-container .right-pane-content-scroll-container {
  flex: 1;
  overflow-y: auto;
}

.right-pane-container .backlogs-default-tool-panel-container {
  padding: 0px 24px;
}
