/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : Dec 21, 2022, 10:03:20 AM
    Author     : grey
*/
@import url("reset.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;400;700&family=Roboto+Condensed:wght@400;700&display=swap");
:root {
  --main-font: 'Roboto Condensed', sans-serif;
  --fs-l: clamp(1.75rem, 3.5vw, 2.5rem);
  /*30px-60px*/
  --hero-font: 'Roboto Condensed', sans-serif;
}

html {
  font-family: var(--main-font);
  font-size: 15px;
  background: #141414;
  color: white;
}

body, html {
  height: 100%;
}

.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

header {
  position: relative;
  z-index: 3;
}
header.scrolled:after {
  opacity: 1;
}
header h1 {
  font-size: var(--fs-l);
  display: block;
  line-height: 1;
  color: #2BEE90;
  padding: clamp(0.35rem, 1vw, 0.6rem) 1rem;
  text-align: center;
  margin-bottom: 0rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header nav {
  display: flex;
  padding: 0 .5rem;
  align-items: center;
  overflow-x: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}
header nav::-webkit-scrollbar {
  display: none !important;
  /* Safari and Chrome */
}
header nav .inner_nav {
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
header nav a {
  margin: 0 .725rem;
  padding: .5rem 0;
  white-space: nowrap;
  position: relative;
  font-weight: bold;
  cursor: pointer;
  color: white;
}
header nav a:after {
  position: absolute;
  bottom: 0;
  content: '';
  left: 0;
  height: 1px;
  width: 0;
  background: white;
}
header nav a.active {
  color: #2BEE90;
}
header nav a.active:after {
  width: 100%;
  background: #2BEE90;
}
header:after {
  top: 100%;
  left: 0;
  width: 100%;
  height: 2rem;
  content: '';
  opacity: 0;
  position: absolute;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  transition: all .15s;
}

.main_content {
  flex: 1;
  overflow: auto;
  padding: 0;
  padding-bottom: 1.5rem;
  position: relative;
  transform: translateY(-1px);
}
.main_content .each_group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  padding-top: 1rem;
}
.main_content .each_group:first-of-type {
  padding-top: .5rem;
}
.main_content .each_group .match_group_label {
  display: block;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #141414;
  position: sticky;
  top: -1px;
  z-index: 2;
}
.main_content .each_group .match_group_label span {
  max-width: 800px;
  width: 100%;
  display: block;
  padding: .5rem;
  margin-left: auto;
  margin-right: auto;
}
.main_content .each_group .matchlist {
  display: flex;
  display: grid;
  padding-left: .5rem;
  padding-right: .5rem;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: .5rem;
  max-width: 800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.main_content .each_group .each_match {
  background: #1D1D1D;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 2rem;
  position: relative;
}
.main_content .each_group .each_match.no_result {
  visibility: hidden;
  pointer-events: none;
}
.main_content .each_group .each_match.no_score .date_time {
  display: block;
}
.main_content .each_group .each_match.no_score .date_time small {
  font-size: .75rem;
  margin-top: .5rem;
  color: #ea8b2e;
}
.main_content .each_group .each_match strong {
  display: block;
  padding: .5rem 0;
}
.main_content .each_group .contestants {
  display: flex;
  flex-direction: column;
  position: relative;
}
.main_content .each_group .contestants .date_time {
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
  padding-left: 2rem;
  background: #1D1D1D;
  display: none;
  z-index: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.main_content .each_group .contestants .date_time .inner_date_time {
  align-items: center;
  flex-direction: column;
  justify-content: center;
  display: flex;
  height: 100%;
}
.main_content .each_group .contestants .date_time .inner_date_time span {
  display: block;
  text-align: center;
  padding-bottom: .25rem;
}
.main_content .each_group .contestants .date_time .inner_date_time span:last-of-type {
  padding-bottom: 0;
}
.main_content .each_group .contestants .team {
  display: flex;
  align-items: center;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.main_content .each_group .contestants .team .team_name {
  text-transform: capitalize;
  font-weight: normal;
}
.main_content .each_group .contestants .team .score {
  font-weight: bold;
  margin-left: auto;
  padding: 0 1rem;
}
.main_content .each_group .contestants .team.team_2 {
  border: none;
}
.main_content .each_group .contestants .team > img {
  width: 1.725rem;
  margin-right: 1rem;
}

@media (max-width: 1024px) {
  html {
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  html {
    font-size: 12px;
  }

  .main_content .each_group {
    padding-top: .7rem;
    margin-bottom: .7rem;
  }
  .main_content .each_group .matchlist {
    grid-gap: .3rem;
  }
  .main_content .each_group .each_match {
    padding: .4rem .7rem;
  }
  .main_content .each_group .contestants .team > img {
    width: 1.5rem;
    margin-right: .7rem;
  }
  .main_content .each_group .contestants .date_time {
    padding-left: .7rem;
  }
}

/*# sourceMappingURL=newstyle.css.map */
