@keyframes live_color {
  0% {color: red;}
  50% {color: #b90000;}
  100% {color: red;}
}

.tournaments-qualification .tournaments__stage:nth-child(2) .tournaments__stage-content-player:nth-child(n+4),
.tournaments-qualification .tournaments__stage:nth-child(3) .tournaments__stage-content-player,
.tournaments-qualification .tournaments__stage:nth-child(4) .tournaments__stage-content-player {
	filter: grayscale(1);
}

.tournaments-qualificationMatch .tournaments__stage:nth-child(1) .tournaments__stage-content .tournaments__stage-content-match:nth-child(-n+5) {
	filter: grayscale(1);
}
.tournaments-qualificationMatch .tournaments__stage:nth-child(2) .tournaments__stage-content .tournaments__stage-content-match:nth-child(-n+5) {
	filter: grayscale(1);
}
.tournaments-qualificationMatch .tournaments__stage:nth-child(3) .tournaments__stage-content .tournaments__stage-content-match:nth-child(-n+5) {
	filter: grayscale(1);
}
.tournaments-qualificationMatch .tournaments__stage:nth-child(4) .tournaments__stage-content .tournaments__stage-content-match:nth-child(-n+5) {
	filter: grayscale(1);
}

.main-navigation .menu a {
	user-select: none;
}

.main-navigation .menu-item.kval a {
	animation-name: live_color;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

.main-navigation .menu-item.kval a:before {
	content: "LIVE";
    color: white;
    background-color: #d90000;
    font-size: 10px;
    padding: 5px 8px;
    border-radius: 5px;
    vertical-align: middle;
    margin-right: 5px;
    letter-spacing: 1px;
}

.main-navigation .menu .menu-item .sub-menu {
	align-items: flex-end;
}

.post .post-title {
	text-align: center;
}

.post .post-content {
	padding: 50px 5%;
}


/* Logo Socials */
.logo {
	position: relative;
}

.logo .logo-soc {
	display: flex;
	z-index: -1;
    position: absolute;
    top: 1px;
    left: 10%;
    right: 10%;
    height: 50px;
    padding-bottom: 10px;
    background-color: #000000;
    border-radius: 20px;
    align-items: flex-end;
    justify-content: center;
    transition: top 0.5s;
}
.logo:hover .logo-soc {
	top: 70%;
}
.logo .logo-soc a {
    height: 20px;
    margin: 0 7px;
	opacity: 0.7;
}
.logo .logo-soc a:hover {
	opacity: 1;
}
.logo .logo-soc a img {
    height: 100%;
}

@media screen and (max-width: 640px) {
	.logo .logo-soc {
		display: none;
	}
}



.twitch .twitch-video {
  padding-top: 56.25%;
  position: relative;
  height: 0;
}

.twitch .twitch-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.twitch .twitch-chat {
  height: 400px;
  display: none;
}

.twitch .twitch-chat iframe {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 850px) {
  .twitch {
    position: relative;
  }

  .twitch .twitch-video {
    width: 75%;
    padding-top: 42.1875%;
  }

  .twitch .twitch-chat {
	display: block;
    width: 25%;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
  }
}

.qual-title {
	display: block;
	color: #5869bc;
	text-align: center;
	font-size: 2.4rem;
    font-weight: bold;
}