@import url(https://fonts.googleapis.com/css2?family=Nunito:wght@300;600;900&display=swap);
a {
  text-decoration: none !important;
}

html, body {
  height: 100%;
}

.header-bg {
  background: #091e81;
  background-image: url(/images/pattern.svg?95d04b72cd275b44a85860e8e54a1cc9);
  /* fallback */
  background-image: url(/images/pattern.svg?95d04b72cd275b44a85860e8e54a1cc9), linear-gradient(150deg, #091e81, #091e7f, #081d7b, #061b75, #051a6d, #051865, #05165c, #041454, #05124c, #051146, #050f42, #050f41);
  /* W3C */
  background-repeat: repeat;
  -webkit-clip-path: polygon(0 100%, 0% 0%, 100% 0%, 100% 100%, 50% 80%);
          clip-path: polygon(0 100%, 0% 0%, 100% 0%, 100% 100%, 50% 80%);
}

.tournament-header-bg {
  background: #051246;
  min-height: 100%;
}

header {
  min-height: 220px;
  display: flex;
}
header .logo h1 {
  color: #fff;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 0;
}
header .logo small {
  color: #fff;
  font-family: "Helvetica Neue", sans-serif;
  text-transform: uppercase;
}
header nav {
  flex: 1;
}
header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header nav ul li {
  display: inline-block;
}
header nav ul li a {
  display: inline-block;
}

.page-title {
  color: #ffffff;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 17px;
  text-decoration: none;
  font-weight: bold;
}

.page-title-finished {
  color: #2e4393;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 17px;
  text-decoration: none;
  font-weight: bold;
}

.title-box {
  margin-top: -5rem !important;
  z-index: 1;
}

.card-bg {
  background-color: #2e4393;
}

.card-bg-finished {
  background-color: #ffffff;
}

.card-bg:hover, .card-bg-finished:hover {
  background-color: #E68D24;
  color: #ffffff !important;
}
.card-bg:hover .svg-profile-icon, .card-bg-finished:hover .svg-profile-icon {
  stroke: #ffffff !important;
}
.card-bg:hover .svg-profile-icon-finished, .card-bg-finished:hover .svg-profile-icon-finished {
  stroke: #ffffff !important;
}
.card-bg:hover .text-blue, .card-bg-finished:hover .text-blue {
  color: #ffffff !important;
}
.card-bg:hover .page-title, .card-bg-finished:hover .page-title {
  color: #ffffff !important;
}
.card-bg:hover .page-title-finished, .card-bg-finished:hover .page-title-finished {
  color: #ffffff !important;
}
.card-bg:hover .text-gray, .card-bg-finished:hover .text-gray {
  color: #ffffff !important;
}

.svg-profile-icon {
  stroke: #E68D24;
}

.svg-profile-icon-finished {
  stroke: #08164E;
}

.text-blue {
  color: #08164E;
}

.date-text {
  color: #08164E;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 12px;
}

.move-up {
  margin-top: -5rem !important;
  z-index: 1;
  position: relative;
}

.btn-blue {
  border: 1px solid #08164E !important;
  color: #ffffff !important;
  font-size: 16px;
  background: #08164E !important;
}

.btn-active {
  background: #E68D24 !important;
  color: #ffffff !important;
  border: none !important;
}

.btn-blue:hover {
  background: #E68D24 !important;
}

.legend-box {
  margin-left: -5px;
  color: #fff !important;
  width: 100px !important;
  font-size: 12px;
}

.waiting {
  background: #F4CC9E !important;
}

.playing {
  background: #E6A85F !important;
}

.finished {
  background: #E68D24 !important;
}

.odd-bg {
  background: #E68D24 !important;
}

.even-bg {
  background: #C66B00 !important;
}

.live {
  background-color: #18b248 !important;
}

.text-gray {
  color: #9a9a9a !important;
}

.text-bold {
  font-weight: bold;
}

.match-status {
  border: 1px solid rgba(0, 0, 0, 0.11);
  width: 100px;
  height: 25px;
}

.live-a, .live-a:visited {
  color: #ffffff;
}

.live-a:hover, .live-a:active {
  color: #C66B00;
}

.icon-1, .icon-2, .icon-3 {
  position: absolute;
  left: 25%;
  top: 50%;
  width: 32px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 5px;
  transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
}

.icon-1 {
  transform: translateY(-8px);
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
}

.icon-3 {
  transform: translateY(8px);
  -webkit-animation-delay: 250ms;
          animation-delay: 250ms;
}

.hamburger-icon {
  position: fixed;
  height: 60px;
  width: 60px;
  top: 3%;
  left: 5%;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.hamburger-icon:hover {
  transform: scale(1.2);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.icon-1.a {
  transform: rotate(40deg);
}

.icon-3.b {
  transform: rotate(-40deg);
}

.icon-2.c {
  opacity: 0;
}

.clear {
  clear: both;
}

@-webkit-keyframes slideIn {
  0% {
    width: 0%;
    opacity: 0;
  }
  100% {
    width: 50%;
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    width: 0%;
    opacity: 0;
  }
  100% {
    width: 50%;
    opacity: 1;
  }
}
nav {
  background-image: linear-gradient(150deg, #091e81, #091e7f, #081d7b, #061b75, #051a6d, #051865, #05165c, #041454, #05124c, #051146, #050f42, #050f41);
  /* W3C */
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 0;
  z-index: 10;
  opacity: 0;
  transition: all 600ms cubic-bezier(0.62, 0.04, 0.3, 1.56);
  transition-delay: 100ms;
}
nav ul {
  margin: 0;
  position: absolute;
  top: 30%;
  left: 5%;
}
nav ul li {
  list-style: none;
  font-size: 24px;
  color: #fff;
  line-height: 2.2;
  text-transform: uppercase;
  letter-spacing: 1.7px;
}
nav.show {
  width: 70vw;
  opacity: 1;
}

.dark-blue {
  position: absolute;
  top: 0;
  left: 0;
  background: #64B5F6;
  height: 100%;
  width: 0%;
  transition: all 500ms cubic-bezier(0.62, 0.04, 0.3, 1.8);
  transition-delay: 50ms;
  z-index: 5;
  opacity: 1;
}

.dark-blue.slide {
  width: 50%;
  opacity: 1;
}

@-webkit-keyframes shotup {
  0% {
    transform: translateY(300%);
    opacity: 0;
  }
  90% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

@keyframes shotup {
  0% {
    transform: translateY(300%);
    opacity: 0;
  }
  90% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.content h1 {
  font-size: 70px;
  -webkit-animation: shotup 600ms ease-in-out;
          animation: shotup 600ms ease-in-out;
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}

.round-name {
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-size: clamp(2em, 2vw, 3em);
}

.score {
  font-family: "Nunito", sans-serif;
  font-weight: 900 !important;
}

.match-live {
  background: #4EA392 !important;
  color: #ffffff;
}
.match-live .score {
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
}
