/* TOURNAMENT HEADER ON 1V1, LEADERBOARD, FULL LEADERBOARD ETC */


.tournament-wrapper{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    background: var(--deep-steel);
    background-size:cover;
    background-repeat: no-repeat;

    min-width: 500px;
    box-sizing: border-box;
    padding:14px;
    border-radius: 8px;
    margin: 0 20px 0 20px;
    outline: 1px solid #2c2f3b;
}



.tournament{
    display:flex;
    justify-content: flex-start;
    margin:0;
    width: 100%;
    gap:20px;
    text-shadow: 0px 0px 13px rgba(0, 0, 0, 0.6);
    min-width: 420px;
  }

  .tournament h1{
    color:var(--cloudy-white);
    font-size: 32px;
    font-weight:650;
    font-family: Montserrat;
    margin:0;
    text-align: start;
  }


  .tournament h1>a{
    color:var(--cloudy-white);
    text-decoration: none;
    text-align: start;
  }

  .tournament h2{
    color:rgb(218, 218, 218);
    font-family: Montserrat;
    margin:0;
    font-size:16px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:5px;
  }

  .tournament h2>a{
    color:white;
    text-decoration: none;
    font-weight: 600;
  }

  .tournament h2 img{
    height: 13px;
  }

  .tournament-txt{
    display:flex;
    width: 100%;
    justify-content: space-around;
    align-items: flex-start;
    flex-direction: column;
    gap:5px;
  }

  .tournament-txt span{
    color: #a2a2a2;
    font-weight: 500;
    border-bottom: 2px dashed var(--slate-steel);
    font-family: 'Montserrat';
    width: 100%;
    padding-bottom: 5px;
    font-size:14px;
    text-align: start;
  }


  .iwfa{
    position: absolute;
    bottom:50px;
    left:22px;
    color:rgb(187, 187, 187);
    text-shadow: 4px 4px 6px rgb(49, 49, 49);
    font-family: Montserrat;
    font-weight: 600;
    font-size:12px;
    text-align: center;
    width: 90px;
    opacity:0;
    transition:opacity 150ms ease-in-out;
    cursor:default;
}

.thumbnail:hover .iwfa {
    opacity: 1;
}

.thumbnail img{
    -webkit-box-shadow: 0px 0px 8px 0px rgba(44, 44, 44);
    -moz-box-shadow: 0px 0px 8px 0px rgba(44, 44, 44);
    box-shadow: 0px 0px 8px 0px rgb(44, 44, 44);
    -webkit-user-drag: none;
    height: 120px;
    width: 120px;
    border-radius: 6px;
}

.thumbnail{
    overflow: hidden;
    height: 120px;
    min-width: 120px;
    border-radius: 6px;
    position: relative;
    border: 1px solid var(--slate-steel);
}

@media only screen and (max-width: 500px) {
  .tournament-wrapper{
    min-width: unset;
    margin:8px;
  }
  .tournament{
    min-width: unset;
    width: 100%;
  }
  .thumbnail, .thumbnail img{
    width: 90px;
    min-width: 90px;
    height: 90px;
  }

  .tournament-txt span{
    font-size:12px;
    padding-bottom: 2px;
    border-bottom: 1px dashed var(--slate-steel);
  }

  .tournament h1{
    font-size:18px;
    line-height: 24px;
  }
  .tournament h1>a{
    font-size:24px;
  }
  .tournament h2{
    white-space: nowrap;
    font-size:12px;
  }
}

/* TOURNAMENT HEADER ON 1V1, LEADERBOARD, FULL LEADERBOARD ETC - END */