/*------------------------------------------------------------------------------
---------------------------------------------------------------------------------
------------------BRACKETS  PC GAMES---------------------*/
  
  .containerg {
    width: 90%;
    min-width: 18em;
    margin: 20px auto;
  }

  
  .tournament-bracket {
    display: flex;
    flex-direction: column;
  }
  @media (min-width: 38em) {
    .tournament-bracket {
      flex-direction: row;
    }
  }
  .tournament-bracket__round {
    display: block;
    margin-left: -3px;
    flex: 1;
  }
  .tournament-bracket__round-title {
    color: #9e9e9e;
    font-size: 0.95rem;
    font-weight: 400;
    text-align: center;
    font-style: italic;
    margin-bottom: 0.5em;
  }
  .tournament-bracket__list {
    display: flex;
    flex-direction: column;
    flex-flow: row wrap;
    justify-content: center;
    height: 100%;
    min-height: 100%;
    border-bottom: 1px dashed #e5e5e5;
    padding-bottom: 2em;
    margin-bottom: 2em;
    transition: padding 0.2s ease-in-out, margin 0.2s ease-in-out;
  }
  @media (max-width: 24em) {
    .tournament-bracket__list {
      padding-bottom: 1em;
      margin-bottom: 1em;
    }
  }
  @media (min-width: 38em) {
    .tournament-bracket__list {
      margin-bottom: 0;
      padding-bottom: 0;
      border-right: 1px dashed #e5e5e5;
      border-bottom: 0;
    }
  }
  
  .tournament-bracket__round:last-child .tournament-bracket__list {
    border: 0;
  }
  .tournament-bracket__item {
    display: flex;
    flex: 0 1 auto;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 2% 0;
    width: 48%;
    transition: padding 0.2s linear;
  }
  .tournament-bracket__item:nth-child(odd) {
    margin-right: 2%;
  }
  .tournament-bracket__item:nth-child(even) {
    margin-left: 2%;
  }
  .tournament-bracket__item::after {
    transition: width 0.2s linear;
  }
  @media (max-width: 24em) {
    .tournament-bracket__item {
      width: 100%;
      padding: 0.2rem 1rem;
    }
    .tournament-bracket__item:nth-child(odd),
    .tournament-bracket__item:nth-child(even) {
      margin-left: 0;
      margin-right: 0;
    }
  }
  @media (min-width: 38em) {
    .tournament-bracket__item {
      padding: 0.2rem 1rem;
      width: 100%;
    }
    .tournament-bracket__item:nth-child(odd),
    .tournament-bracket__item:nth-child(even) {
      margin: 0;
    }
    .tournament-bracket__item::after {
      position: absolute;
      right: 0;
      content: "";
      display: block;
      width: 1em;
      height: 45%;
      border-right: 2px solid #9e9e9e;
    }
    .tournament-bracket__item:nth-child(odd)::after {
      top: 50%;
      border-top: 2px solid #9e9e9e;
      transform: translateY(-1px);
    }
    /*.tournament-bracket--rounded*/
    .tournament-bracket__item:nth-child(odd)::after {
      border-top-right-radius: 0.6em;
    }
    .tournament-bracket__item:nth-child(even)::after {
      bottom: 50%;
      border-bottom: 2px solid #9e9e9e;
      transform: translateY(1px);
    }
    .tournament-bracket--rounded
      .tournament-bracket__item:nth-child(even)::after {
      border-bottom-right-radius: 0.6em;
    }
    .tournament-bracket__round:first-child .tournament-bracket__item {
      padding-left: 0;
    }
    .tournament-bracket__round:last-child .tournament-bracket__item {
      padding-right: 0;
    }
    .tournament-bracket__round:last-child .tournament-bracket__item::after {
      display: none;
    }
    
  }
  @media (min-width: 72em) {
    .tournament-bracket__item {
      padding: 0.5em 1.5em;
    }
    .tournament-bracket__item::after {
      width: 1.5em;
    }
  }
  .tournament-bracket__match {
    display: flex;
    width: 100%;
    background-color:white;
    padding: 0.7em;
    font-size:13px;
    border: 1px solid transparent;
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

    outline: none;
    cursor: pointer;
    transition: padding 0.2s ease-in-out, border 0.2s linear;
  }
  .tournament-bracket__match:focus {
    border-color: green;
  }
  .tournament-bracket__match::before,
  .tournament-bracket__match::after {
    transition: all 0.2s linear;
  }
  @media (max-width: 38em) {
    .tournament-bracket__match {
      padding: 0.75em 0.5em;
     
    }
  }
  @media (min-width: 38em) {
    .tournament-bracket__match::before,
    .tournament-bracket__match::after {
      position: absolute;
      left: 0;
      z-index: 1;
      content: "";
      display: block;
      width: 1em;
      height: 10%;
      border-left: 2px solid #9e9e9e;
    }
    .tournament-bracket__match::before {
      bottom: 50%;
      border-bottom: 2px solid #9e9e9e;
      transform: translate(0, 1px);
    }
    .tournament-bracket--rounded .tournament-bracket__match::before {
      border-bottom-left-radius: 0.6em;
    }
    .tournament-bracket__match::after {
      top: 50%;
      border-top: 2px solid #9e9e9e;
      transform: translate(0, -1px);
    }
    .tournament-bracket--rounded .tournament-bracket__match::after {
      border-top-left-radius: 0.6em;
    }
  }
  @media (min-width: 38em) {
    .tournament-bracket__match::before,
    .tournament-bracket__match::after {
      width: 1.5em;
    }
    .tournament-bracket__match::before {
      transform: translate(0, 1px);
    }
    .tournament-bracket__match::after {
      transform: translate(0, -1px);
    }
  }
 
  .tournament-bracket__round:first-child .tournament-bracket__match::before,
  .tournament-bracket__round:first-child .tournament-bracket__match::after {
    display: none;
  }
  

.section_title h2 {
  color: #333333;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.brand_border .fa.fa-minus {
    color: #fff;
    font-size: 8px;
    height: 2px;
        background: #F8C01B none repeat scroll 0 0;
    width: 100px;
}
.brand_border .fas.fa-handshake {
    font-size: 14px;
        color:#000000;
}




/*------------------------------------------------------------------------------
---------------------------------------------------------------------------------
------------------ESPORTS POINTS TABLE FOR PC GAMES---------------------*/


.tables-page-section .table {
  text-align: center;
  margin-bottom: 40px;
}
.tables-page-section .table th {
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 20px;
  text-align: center;
}
.tables-page-section .table td {
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  background: #f1f1f1;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: #666666;
  padding: 10px 20px;
  vertical-align: middle;
}
.tables-page-section .table thead th {
  padding: 15px 20px;
  text-align: center;
  background: #ffba00 !important;
  color:#222;
  border-radius:0;
}
.tables-page-section .table thead tr:hover th { color:#fff; }
.tables-page-section .table tr th {
  background: #f1f1f1;
}




  