/* Global layout styles for TFS */
/* Colors used specifically in TFS */
.new-test-plan-page {
  display: -webkit-box;
  -webkit-flex-direction: column;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  -webkit-box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  /* 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;
  padding: 20px 40px;
  max-width: 975px; }
  .new-test-plan-page .new-test-plan-page-title {
    -webkit-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 200; }
    .new-test-plan-page .new-test-plan-page-title i {
      margin-right: 20px; }
  .new-test-plan-page .test-plan-area-path {
    margin-top: 20px; }
  .new-test-plan-page .test-plan-iteration {
    margin-top: 20px; }
  .new-test-plan-page .submit-buttons-container {
    display: -webkit-box;
    -webkit-flex-direction: row;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    margin-top: 120px; }
    .new-test-plan-page .submit-buttons-container button {
      margin-left: 20px; }

.new-test-plan-view-container .vss-PivotBar .vss-PivotBar--bar-one-line {
  border-bottom: none; }

.new-test-plan-view-container .group-message {
  padding-bottom: 20px; }
