/*
 *  Flex Layout Specifics
*/
h4{
  font-family: 'Barlow Condensed', sans-serif;
  color:white;
  font-size: 18px;
}
main{
    display:flex;
    flex-direction:row;
  }
  .round{
    display:flex;
    flex-direction:column;
    justify-content:center;
    width:200px;
    list-style:none;
    padding:0;
  }
    .round .spacer{ flex-grow:1; height: 30px;}
    .round .spacer:first-child,
    .round .spacer:last-child{ flex-grow:.5; }
  
    .round .game-spacer{
      flex-grow:1;
    }
  
  /*
   *  General Styles
  */
  #bracket-view{
    font-family:sans-serif;
    font-size:small;
    line-height:1.4em;
  }
  
  li.game{
    padding-left: 20px;
    padding-right: 26px;
    height: 40px;
    text-align: center;
    align-content: space-around;
}
  
    li.game.winner{
      font-weight:bold;
      color: black;

      color: white;
      background: #f3ff073d
    }
    li.game span{
      float:right;
      margin-right:5px;
    }
  
    li.game-top{ 
        border-bottom:1px solid #ffc107;
        color: white;
        align-items: center;
      display: block;
      justify-content: center;
    }
  
    li.game-spacer{ 
      border-right:2px solid #ffc107;
      height: 0px;
    }
  
    li.game-bottom{ 
      border-top:1px solid #ffc107;
      color: white;
      align-items: center;
      display: block;
      justify-content: center;
      border-bottom-right-radius: 8px;
      border-bottom-left-radius: 8px;
      position: relative;
      pointer-events: none;
    }


    .game-line{
        border-top: 2px solid #ffc107;

    }

    .combine{
        border-right: 2px solid #ffc107;
    }
  
    .champ{
        border:2px solid #ffc107;
    }




    .display-bracket-header{
        color: black;
        background-color: #ffc107;
        width: 100%;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        font-size: 16px;
    }
    .display-bracket-block{
        position: absolute;
        top: -26px;
        width: 100%;
        outline-style: solid;
        outline-color: #ffc107;
        height: 98px;
        border-radius: 8px;
        margin-top: 7px;
    }
    .tft-block{
        padding-top: 8px;
        overflow: hidden;
    
        border-radius: 8px;
        outline-style: solid;
        outline-color:#ffc107;
    }
    .station-header{
        margin: -8px 0px 10px 0px;
        background-color: #ffc107;
        color: black;
        font-size: 20px;
    }