/* RESET RULES & HELPER CLASSES */
:root {
  --black-1: #0a0a0a;
  --black-2: #212121;
  --white: #fff;
  --black: #0a0a0a;
  --blue: #03a9f4;
  --lightgray: #cfcfcf;
  --overlay: rgba(0, 0, 0, 0.5);
  --purple-1:#612490;
  --purple-bg1: #401164;
  --orange: #ff6700;
	--bck-blue: #3C3EBD;
	--bck-blue-dark: #242573;
	--pinky: #e520ac;
	--yellowy:#ffcb00;
	--ciely: #0ca987;
}

*, *:before, *::after {
  box-sizing: border-box;
}

html, body {
	margin:0;
	padding:0;
	font-family: 'Manrope', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
	scroll-behavior: smooth;
	text-rendering: optimizelegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a,
button {
  color: inherit;
  
}

.no-transition {
  transition: none !important;
}

body {
  background: var(--bck-blue-dark);
  color: #FFF;
  min-height: 100vh;
}

h1,h2,h3,h4,h5,h6,h7 {
	margin-bottom:1em;
}

p {
	margin-bottom:0.5em;
}

#myBtn {display: none;position: fixed;bottom: 40px;right: 30px;z-index: 99;border: 10px double #401164;font-size: 18px;outline: none;background-color: #9748be;color: white;cursor: pointer;border-radius: 40%;opacity: 0.6;width: 60px;height: 60px;}#myBtn:hover {background-color: #9748be;opacity:1;}

.displaynone {
	display:none;
}

/* HEADER */
.page-header {
  position: relative;
  padding: 1.5rem 1rem;
  background: var(--bck-blue);
}

.page-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-header .horizontal-logo,
.page-header .search span {
  display: none;
}

.page-header .vertical-logo {
	max-width: 186px;
	position: absolute;
    top: 2px;
    left: calc(50% - 93px);
}

.logo {
	width:225px;
	height:auto;
}

.page-header .top-menu-wrapper {
  color: var(--black);
}

/*
.page-header .top-menu-wrapper::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: background 0.5s;
}
*/

.page-header .search {
  color: var(--white);
}

.page-header .panel,
.page-header .top-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.page-header .panel1 {
  width: 100%;
  background: var(--black-1);
  transition-delay: 0.3s;
}

.page-header .panel2 {
  width: calc(100% - 3rem);
  background: var(--blue);
  transition-delay: 0.1s;
}

.page-header .top-menu {
  display: flex;
  flex-direction: column;
  width: calc(100% - 1rem);
  overflow-y: auto;
  padding: 2rem;
  background: var(--bck-blue);
}

ul.top-menu a {
    color: #FFF;
}

.page-header .top-menu-wrapper.show-offcanvas::before {
  background: var(--overlay);
  z-index: 1;
}

.page-header .top-menu-wrapper.show-offcanvas .panel,
.page-header .top-menu-wrapper.show-offcanvas .top-menu {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.7s;
}

.page-header .top-menu-wrapper.show-offcanvas .panel1 {
  transition-delay: 0s;
}

.page-header .top-menu-wrapper.show-offcanvas .panel2 {
  transition-delay: 0.2s;
}

.page-header .top-menu-wrapper.show-offcanvas .top-menu {
  transition-delay: 0.4s;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 4rem 0.5rem;
}


/* FORM */
.page-header .search-form {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  padding: 1rem 0;
  background: #21212155;
  transition: all 0.2s;
}

.page-header .search-form.is-visible {
  visibility: visible;
  opacity: 1;
}

.page-header .search-form div {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.page-header .search-form input {
  width: 100%;
  font-size: 1rem;
  height: 3rem;
  padding: 0 2rem;
}

.page-header .search-form button {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--black-1);
}


/* TOP MENU */
.page-header .top-menu li + li {
  margin-top: 1.5rem;
}

.page-header .top-menu > li:last-child {
  margin-top: auto;
}

.page-header ul a {
  display: inline-block;
  font-size: 1rem;
  text-transform: uppercase;
  transition: color 0.35s ease-out;
}

.page-header ul a:hover {
  color: var(--orange);
}

.page-header .has-dropdown i {
  display: none;
}

.page-header .sub-menu {
  padding: 1.5rem 2rem 0;
}

.page-header .top-menu .mob-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.page-header .top-menu .mob-block i {
  color: var(--lightgray);
}

.page-header .socials {
  display: flex;
  margin-top: 3rem;
  /* some browsers ignore the padding-bottom: 2rem of the .top-menu because it has overflow-y:auto
  https://bugzilla.mozilla.org/show_bug.cgi?id=748518
  so we add a bottom margin to the .socials
  */
  margin-bottom: 1rem; 
}

.page-header .socials li + li {
  margin-top: 0;
}

.page-header .socials .fa-stack {
  font-size: 1.7rem;
}

.page-header .socials .fab {
  font-size: 1.2rem;
}

.butdi {
  color: rgba(255,255,255,0.9)!important;
  border-radius: 50px;
  background: linear-gradient(-45deg, #ffa63d, #ff3d77, #338aff, #3cf0c5);
  background-size: 600%;
  -webkit-animation: anime 16s linear infinite;
          animation: anime 16s linear infinite;
}

@-webkit-keyframes anime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes anime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media screen and (max-width:1160px) {
	.butdi {padding: 10px!important;}
}



/* MQ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (min-width: 550px) {
  .page-header .panel1 {
    width: 60%;
  }
  .page-header .panel2 {
    width: calc(60% - 3rem);
  }
  .page-header .top-menu {
    width: calc(60% - 2rem);
  }
}

@media screen and (min-width: 768px) {
  .page-header .top-menu {
    padding: 4rem;
  }

  .page-header ul a {
    font-size: 1.6rem;
  }

  .page-header .search-form input {
    font-size: 1.4rem;
    height: 3rem;
    line-height: 3rem;
  }
}

@media screen and (min-width: 1160px) {
	
  .page-header {
    padding: 0.25rem 1rem;
  }

  .page-header .panel,
  .page-header .open-mobile-menu,
  .page-header .vertical-logo,
  .page-header .top-menu .mob-block,
  .page-header .top-menu > li:last-child,
  .page-header .top-menu-wrapper::before {
    display: none;
  }

  .page-header .horizontal-logo {
	display: block;
	width: 160px;
	position: absolute;
	top: 2px;
    /* display: block;
	width:65px;*/
  }

  .page-header .top-menu-wrapper {
    display: flex;
    align-items: center;
    color: var(--white);
  }

  .page-header .top-menu {
    flex-direction: row;
    position: static;
    width: auto;
    background: transparent;
    transform: none;
    padding: 0;
    overflow-y: visible;
    box-shadow: none !important;
  }

  .page-header .top-menu li + li {
    margin-top: 0;
  }

  .page-header .top-menu > li:not(:nth-last-child(2)) {
    margin-right: 3rem;
  }

  .page-header .top-menu > li > a {
    padding: 1rem 0.5rem;
  }

  .page-header ul a {
    font-size: 13px;
    font-weight: 900;
  }

  .page-header .has-dropdown i {
    display: inline-block;
  }

  .page-header .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 1.5rem 2rem;
    background: var(--bck-blue);
  }

  .page-header .sub-menu li + li {
    margin-top: 1.2rem;
  }

  .page-header .sub-menu a {
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }

  .page-header .has-dropdown {
    position: relative;
  }

  .page-header .has-dropdown:hover .sub-menu {
    display: block;
  }

  .page-header .search {
    display: flex;
    align-items: center;
    margin-left: 3rem;
  }
}

@media screen and (min-width: 1200px) {
  .page-header .search {
    margin-left: 5rem;
  }

  .page-header .search i {
    margin-right: 1.5rem;
  }

  .page-header .search span {
    display: block;
    font-weight: 500;
    font-size: 1.6rem;
  }
}

.stickyhead {
	z-index: 9999999;
    position: fixed;
    width: 100%;
	top: 0;
}

.upper {
	text-transform: uppercase;
}

/* HOMEPAGE */
.responsive {
	width:100%;
	height:auto;
}
.as53 {
	aspect-ratio:5/3!important;
	object-fit:cover;
}

.section-gap {
	padding:2rem 5rem;
}

.radius8 {
	border-radius:8px;
	overflow:hidden;
}

.shadow {
	box-shadow:0 12px 12px -12px #000;
}

.shadow:hover {
	box-shadow: none;
}

.section-margin-top {
	margin-top:4rem;
}

.grid-21 {
	display:grid;
	grid-template-column:2fr 1fr;
	grid-gap:3rem;
}

.relative {
	position:relative;
}

.absolute {
	position:absolute;
}

.a-link {
	display:block;
}

.large-image {
	width:100%;
	height:auto;
	aspect-ratio:5/2;
	object-fit:cover;
	position:relative;
}

.large-image-top {
	object-position: top center;
}

.section-box {
	position:absolute;
	display:grid;
	left:0;
	bottom:0;
	width:100%;
	padding:4rem 1rem;
	background: linear-gradient(0deg, #0a0210, transparent);
}

.large-h2 {
	font-weight:900;
	font-size:2rem;
	-webkit-text-stroke-width: thin;
	max-width:60%;
	margin:0 0 0.5rem;
	text-shadow: 0 4px 6px black;
}

.section-cat {
	font-weight:400;
	font-size:12px;
	text-shadow: 0 4px 6px black;
}

.section-p {
	font-weight:500;
	font-size:14px;
	text-shadow: 0 4px 6px black;
}

.grid-3, .grid-3top {
	display:grid;
	grid-template-columns:1fr 1fr 1fr;
	grid-gap:2rem;
	
}

.grid-4 {
	display:grid;
	grid-template-columns:1fr 1fr 1fr 1fr;
	grid-gap:2rem;
	
}

.top-3-image {
	width:100%;
	height:auto;
	aspect-ratio:1/1;
	object-fit:cover;
}

.margin-2-2 {
	margin: 2rem 0;
}

.kca-image {
    width: 100%;
    height: auto;
    aspect-ratio: 5/1;
    object-fit: contain;
    position: relative;
}

.kca-back {
	background: #0478c6!important;
}

#intro {
	background: linear-gradient(180deg, var(--yellowy) 80%, var(--bck-blue-dark) 20%);
}

#videos, #games, #contest, #series, #newsroom, #books-in {
	background:var(--bck-blue-dark);
}

.section-gap-x {
	padding:4rem 0;
}

.series-h2 {
	color:#87e1ed;
	text-align:center;
	font-size:1.8rem;
	font-weight:900;
	text-transform: uppercase;
    -webkit-text-stroke-width: thin;
    letter-spacing: 0.5px;
	text-shadow: 0 4px 4px #000;
}

.img-res {
    max-width: 100%;
    aspect-ratio: 1/1.5!important;
    object-fit: cover!important;
}

.glider-slide {
    min-width: 150px;
    margin: 0 10px!important;
}

.grid-post-a {
	display:flex;
	flex-direction: column;
    background: var(--pinky);
	box-shadow: 0 8px 16px -17px #000;
    margin-bottom: 1rem;
}

.series-h3 {
	font-size:13px;
	font-weight:800;
	color:#FFF!important;
	padding: 2rem 1rem 1rem;;
    text-align: center;
	-webkit-text-stroke-width: thin;
    letter-spacing: 0.5px;
	margin: auto;
}

.carousel-text {
	font-size: 13px;
    color: #FFF!important;
    padding: 1rem 1rem 0rem;
    text-align: center;
    letter-spacing: 0.5px;
    margin: 0 auto 1rem;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    text-rendering: optimizespeed;
	overflow: hidden;
    -webkit-box-orient: vertical;
}


.glider-next, .glider-prev {

}

.button-1 {
	display:block;
	margin:2rem auto;
	text-align:center;
	font-size:14px;
	font-weight:800;
	color:#FFF!important;
	background:var(--bck-blue);
	border-radius:8px;
	text-transform: uppercase;
    padding: 10px 26px;
    width: fit-content;
	-webkit-text-stroke-width: thin;
    letter-spacing: 0.5px;	
}

.linkpost, .homepost {
	position:relative;
	display:block;
	background:var(--pinky);
	color:#FFF;
}

.postcat {
    margin: -32px auto 2px;
    border-radius: 50%;
    z-index: 1;
    background: var(--pinky);
    position: relative;
    border: 10px solid var(--pinky);
    image-rendering: -webkit-optimize-contrast;
    width: 64px;
    height: 64px;
}

.postcatspan {
	text-align: center;
    color: var(--yellowy);
    font-size: 12px;
	font-weight:800;
    display: block;
    margin-bottom: 1rem;
}

.homepost-h3 {
	padding:0 1rem 1rem;
	font-weight:800;
	font-size:1.2rem;
	color:#FFF;
}

.bookpost-h3 {
	padding:1rem;
	font-weight:800;
	font-size:1.2rem;
	color:#FFF;
	text-align: center;
}

#about {
	background:var(--pinky);
	color:#FFF;
	text-align: center;
}

.about-h2 {
    font-weight: 900;
    font-size: 1.25rem;
    -webkit-text-stroke-width: thin;
    letter-spacing: 0.75px;
}

.about-p {
	font-weight: 500;
    font-size: 14px;
    width: 70%;
    margin: 0 auto;
}

.posab {
    position: absolute;
    top: 0;
    left: 0%;
    display: block;
    background: var(--ciely);
    padding: 1rem;
    font-weight: 900;
    -webkit-text-stroke-width: thin;
    letter-spacing: 1.5px;
    width: 100%;
    box-shadow: 0 10px 20px -12px #000;
    text-align: center;
}

.notop-gap {
	    padding: 0 5rem 2rem;
}


@media screen and (max-width:1024px) {
	.section-gap {
		padding: 2rem 1rem;
	}
	
	.notop-gap {
		padding: 0 2rem 1rem;
	}
}

@media screen and (max-width:768px) {
	.large-image {
		min-height: 70vh;
	}
	.grid-3, .grid-3top {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 2rem;
	}
	.grid-3top a:last-of-type {
		grid-column: 1/3;
		grid-row: 2;
	}
	.eximg-3 {
		aspect-ratio:2/1;
	}
}

@media screen and (max-width:574px) {
	.grid-3, .grid-3top {
		grid-template-columns: 1fr;
	}
	.grid-3top a:last-of-type {
		grid-column: inherit;
		grid-row: inherit;
	}
	.eximg-1, .eximg-2, .eximg-3 {
		aspect-ratio:2/1;
	}
	.large-image {
		min-height: 50vh;
	}	
	.section-box {
		position: relative;
		padding: 2rem 1rem;
	}
	.about-p {
		width: 90%;	
	}
	.notop-gap {
		padding: 0 0.5rem 1rem;
	}	
}

/* ADVERTISMENTS */
	aside>div:first-child::before {
	content: "Advertisment";
	font-size: 13px;
	display: block;
	color: #90a4ae;
	line-height: 1;
	padding: 6px 3px 5px;
	text-align: center;
	width: max-content;
	margin: auto;
	border-radius: 14px;
}

.pospromo {
	position:relative;
	text-align: center;
	background: #561786;
	display: flex;
    justify-content: center;
	padding: 2rem 0;
}

.pospromo:before {
    content: 'Advertisment';
    color: #aaa;
    font-size: 12px;
    margin: 0 auto;
    position: absolute;
    top: 0;
}

.qc-cmp2-persistent-link {
    background-color: #ff5500;
}

@media screen and (min-width:900px) {
.incontentad {
	display:none;
}
}

@media screen and (max-width:900px) {
.incontentad {
    margin-bottom: 1.5em;
    width: 100%;
    position: relative;
    z-index: 0;
}

	.incons {
		    margin-top: 2rem;
	}
	
.incontentad .banner {
    margin: 0 auto;
    max-width: 768px;
	text-align: center;
}

.padsticky {
	position:relative;
}
	
.padsticky::before {
	content: "Advertisment";
	font-size: 13px;
	display: block;
	color: #90a4ae;
	line-height: 1;
	padding: 6px 3px 5px;
	text-align: center;
	width: max-content;
	margin: auto;
	border-radius: 14px;
	background: #561786;
	}

	.grid-1fix, .grid-2fix {
		margin: 2rem auto;
		grid-column: 1/3;
	}	
	
}

@media screen and (max-width:768px) {
.incontentad {
    min-height: 600px;
    margin-bottom: 0.5em;
    width: 100%;
    position: relative;
    z-index: 0;
}
.incontentad .banner {
    margin: 0 auto;
    max-width: 336px;
	text-align: center;
}

.padsticky {
    position: sticky;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    top: 90px;
}	
}
@media screen and (max-width:574px) {
	.grid-1fix, .grid-2fix {
		grid-column: 1/2;
	}	
}
/* SIDEBAR */
.sidebar {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-gap: 2em;
    height: 100%;
}

.diafi {
    position: relative;
    display: block;
    height: 100%;
	margin: 0 auto;
}
/*
.pos-sticky:before {
    content: 'Advertisment';
    color: #aaa;
    font-size: 12px;
    margin: 0 auto;
}
*/

.pos-sticky {
    position: sticky;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    top: 75px;
}

@media screen and (min-width: 900px) {
	.a-desktop {
		display: block;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
		
	}
	.a-mobile {
		display:none;
	}
}

@media screen and (max-width: 900px) {
	.a-mobile {
		display: block;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
		
	}
	.a-desktop {
		display:none;
	}
}

/* PAGE */
.page-content {
	color:#FFF;
}

.page-image {
	position:relative;
	width:100%;
	height:300px;
	object-fit:cover;
	background:#401164;
}

.page-h1 {
	position:absolute;
	padding: 0 5rem;
	top:50%;
	color:#FFF;
	font-size: 36px;
    text-transform: uppercase;
}

.page-content {
	padding: 3rem 0;
}

/* SPECIAL ARCHIVE */
.fig-back {
	position:relative;
	margin:0;
	padding:0;
}

.sparch-image {
	margin-top: 57px;
	width:100%;
	height:auto;
	max-height:calc( 100vh - 57px);
	min-height:calc( 100vh - 57px);
	object-fit:cover;
	object-position: top center;
}

.sparch-headbox {
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	padding:5rem 2rem 2rem;
	background:linear-gradient(0deg, black, transparent);
}

.sparch-logo {
    width: auto;
    height: auto;
    max-height: 130px;
	margin-bottom:1rem;
}

.sparch-h1 {
	font-size:12px;
	color:#FFF;
	margin:0;
}

.sparch-text {
	font-weight:500;
	font-size:14px;
	color:#FFF;
	width:60vw;
}

.sparch-nologo-h1 {
	font-size:3rem;
	font-weight:800;
	-webkit-text-stroke-width: thin;
    margin: 0 0 0.5rem;
    text-shadow: 0 4px 6px black;	
}

.sparch-grid {
	display:grid;
	grid-template-columns:1fr 380px;
	grid-gap:2rem;
}

.sparch-ul {
	display:flex;
    align-items: center;
	justify-content: space-around;
    border: 1px solid;	
	width: 100%;
    overflow-x: auto;
	align-items: flex-start;
	flex-wrap: nowrap;
    flex-direction: row;
}

.sparch-li {
	text-align:center;
	padding:5px 10px;
	border: 1px solid;
}

#timetable, #allabout {
	background: var(--bck-blue-dark);
}
#timetable {
	padding-bottom:4rem;
}

.grid-2arch {
	display:grid;
	grid-template-columns:1fr 1fr;
	grid-gap:2rem;	
}

.tstart {
	text-align: start!important;
}

.katallilo {
    display: block;
    width: 40px;
    font-weight: 900;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #0a0a0a;
    font-size: 28px;
    left: 2px;
    text-align: center;
    text-shadow: none;
    -webkit-text-stroke-width: thin;
    position: relative;
    margin-bottom: 1.5rem;
    zoom: 1.25;
}

.katallilo:before {
    width: 44px;
    height: 44px;
    content: ' ';
    background: #212121;
    position: absolute;
    top: -2px;
    left: -2px;
    mix-blend-mode: overlay;
}

.bro-box {
	padding:0.5rem;
	margin:0.5rem;
}

.bro-day {
	display:block;
	font-weight:900;
	font-size:1.2rem;
	color:#FFF;
}

.bro-time{
	display:block;
	font-weight:400;
	font-size:0.9rem;
	color:#DDD;
	text-align: center;
}

.sparch-video-iframe {
	width:100%;
	height:auto;
	aspect-ratio:560/315;
	object-fit:contain;
	/* box-shadow: 0 20px 40px -12px #000; */
    border-radius: 8px;
}

.video-content .incontentad {
    display: none;
}
.videogapad {
	margin-top:2rem;
}
.mb-4 {
	margin-bottom:4rem;
}

ol {
  list-style: none;
}

/* FILTERS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.filters {
  text-align: center;
  margin-bottom: 2rem;
}

.filters * {
  display: inline-block;
}

.filters label {
  padding: 0.5rem 1rem;
  margin-bottom: 0.25rem;
  border-radius: 2rem;
  min-width: 50px;
  line-height: normal;
  cursor: pointer;
  transition: all 0.1s;
}

.filters label:hover {
  background: #ff6600;
  color: #FFF;
}


/* FILTERED ELEMENTS (POSTS)
–––––––––––––––––––––––––––––––––––––––––––––––––– */


input[type="radio"] {
  position: absolute;
  left: -9999px;
}


/* FILTERING RULES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
[value="All"]:checked ~ .filters [for="All"],
[value="contests"]:checked ~ .filters [for="contests"],
[value="games"]:checked ~ .filters [for="games"],
[value="video"]:checked ~ .filters [for="video"],
[value="news"]:checked ~ .filters [for="news"],
[value="episodia"]:checked ~ .filters [for="episodia"],
 {
  background: #ff6600;
  color: #FFF;
}

[value="All"]:checked ~ .posts [data-category] {
  display: block;
}

[value="contests"]:checked ~ .posts .post:not([data-category~="contests"]),
[value="games"]:checked ~ .posts .post:not([data-category~="games"]),
[value="video"]:checked ~ .posts .post:not([data-category~="video"]),
[value="news"]:checked ~ .posts .post:not([data-category~="news"]),
[value="episodia"]:checked ~ .posts .post:not([data-category~="episodia"]) {
  display: none!important;
}

/* PAGINATION */
.paginate-box {
	margin:2rem 0;
}
ul.pagination {
    display: flex;
    justify-content: center;
	flex-wrap: wrap;
}

.page-numbers {
    display: block;
    margin: 1rem;
    border-radius: 8px;
    border: 2px solid #FFF;
    width: 44px;
    height: 44px;
    padding: 10px;
    text-align: center;
    font-weight: 800;
    line-height: 22px;
}

.current {
    background: #0005;
}

.dots {
    border: 0;
}

@media screen and (max-width:1204px) {
	.sparch-grid {
		grid-template-columns: 1fr 320px;
	}
}

@media screen and (max-width:900px) {
	.sparch-grid {
		grid-template-columns: 1fr;
	}
	
	.main-sidebar {
		display:none;
	}
}

@media screen and (max-width:574px) {
	.grid-2arch {
		display: grid;
		grid-template-columns: 1fr;
	}
	.sparch-text {
		width:80vw;
		display: -webkit-box;
		-webkit-line-clamp: 8;
		text-rendering: optimizespeed;
		overflow: hidden;
		-webkit-box-orient: vertical;
	}
.page-h1 {
    padding: 0 1rem;
    color: #FFF;
}
}


/* SINGLE VIDEO */
.grid-video {
	display:grid;
	grid-template-columns:2.2fr 1fr;
	grid-gap:2rem;
}

.video-iframe {
	width:100%;
	height:auto;
	aspect-ratio:560/315;
	object-fit:contain;
}

.video-cat {
	font-size:12px;
	display:block;
	color: #87e1ed;
	font-weight:900;
}

.video-h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFF;
    -webkit-text-stroke-width: thin;
    text-transform: uppercase;
	margin-bottom:0.5rem;
}

.video-meta {
	color:#c4afd4;
	font-size:12px;
	display:block;
	font-weight:900;
	display:block;
	margin-bottom:0.5rem;
}

.video-content {
	font-size:13px;
	font-weight:600;
	color:#FFF;
}

.video-content p {
	margin-bottom:0.5rem;
}

.video-carousel {
	background:#561786;
	color:#FFF;
}

.video-carousel {
	padding:3rem 0;
}

.video-left-h2 {
	padding-left:0.5rem;
}

/* SINGLE VIDEO */
.grid-video {
	display:grid;
	grid-template-columns:2.2fr 1fr;
	grid-gap:2rem;
}

.video-iframe {
	width:100%;
	height:auto;
	aspect-ratio:560/315;
	object-fit:contain;
}

.video-cat {
	font-size:12px;
	display:block;
	color: #87e1ed;
	font-weight:900;
}

.video-h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFF;
    -webkit-text-stroke-width: thin;
    text-transform: uppercase;
	margin-bottom:0.5rem;
}

.video-meta {
	color:#c4afd4;
	font-size:12px;
	display:block;
	font-weight:900;
	display:block;
	margin-bottom:0.5rem;
}

.video-content {
	font-size:13px;
	font-weight:600;
	color:#FFF;
}

.video-content p {
	margin-bottom:0.5rem;
}

.video-carousel {
	background:#561786;
	color:#FFF;
}

.video-carousel {
	padding:3rem 0;
}

.video-left-h2 {
	padding-left:0.5rem;
}

@media screen and (max-width:768px) {
	.grid-video {
		grid-template-columns:1fr;
	}
}

/* SINGLE VIDEO */
.game-article {
	padding-top:8rem;
	background: linear-gradient(180deg, #401164 600px, #561786 400px);
} 

.game-title-h1 {
	font-size:2rem;
	text-align:center;
}
.game-maincat {
	margin: 0 auto;
    width: max-content;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.game-cat {
	width:100%;
	height:auto;
	object-fit:cover;
	aspect-ratio:1/1;
	max-width:44px;
	margin-bottom: 0.5rem;
}

.games-h2 {
		font-size:0.8rem;
}

.gameframe {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.gameframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
border: none;
}

.h_iframe {position:relative; overflow: hidden; padding-bottom: 75%; width: 1000px;}
.h_iframe .ratio {display:block;width:100%;height:auto;}

.present-age {
	position: absolute;
    bottom: -18px;
    left: calc( 100% - 50px);	
}

.tag-list {
    margin: 3rem 0;
}

ul.tag-ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
	row-gap: 3rem;
}

a.article-tag {
    padding: 10px;
    border-radius: 8px;
    margin: 1rem;
    border: 2px solid#FFF;
    font-size: 0.8rem;
    font-weight: 800;
	background:#401164;
}

.game-content {
	color:#FFF;
	margin:2rem 0;
	padding:0 1rem;
}

@media screen and (max-width:768px) {
	.game-article {
		background: linear-gradient(180deg, #401164 380px, #561786 380px);
	}
}

/* SINGLE CONTEST */
/* CONTEST POST */

.contest-back {
	background: linear-gradient(180deg, #401164 300px, #561786 1px);
	padding-top:6rem;
	    overflow-wrap: anywhere;
}



.contest-figure {
	position:relative;
}

.pos-conend {
    position: absolute;
    font-weight: 900;
    font-size: 3rem;
    padding: 10px;
    background: #ff5500;
    color: #FFF;
    top: 42%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: -webkit-fill-available;
	box-shadow: 0 26px 30px -30px #000;
}

@media screen and (max-width:574px) {
	.pos-conend {
		font-size: 1.5rem;
	}
}

#contest-article {
	margin:4rem 0 2rem;
}

#contest-article p {
	font-size:1.15rem;
	margin-bottom:1.2rem;
}

#contest-article a {
	font-size:1.15rem;
	color: #46eaff;
	text-decoration: underline;
}

#contest-article img {
	width:100%;
	height:auto;
	margin:1rem 0;
}

.size-large {
	max-width:1024px;
}

.size-medium {
	max-width:300px;
}
.size-thumbnail {
	max-width:150px;
}
.aligncenter {
	margin:1rem auto!important;
}

.alignleft {
	margin:1rem auto!important;
}

.alignright {
	margin:1rem auto 1rem 0!important;
}

.contest-code-box {
	background:#FFF;
	padding:2rem 1rem;
}

.contest-code-box {color:#000;}

.contest-code-box h2 {color:#000}

.klazyiframe {
	width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 560/315;
	border-radius:8px;
}

.wp-caption, caption {
    max-width: 100%!important;
	width: 100%!important;
}

.wp-caption-text {
    font-size: 12px!important;
    color: #ccc;
    font-style: italic;
}

.wp-caption>img{width:100%;height:auto}

.contest-title-h1 {
    font-size: 2.2rem;
    margin: 3rem 0 2rem;
    text-shadow: 0 2px 8px black;
}

.single-metatags {
	display:flex;
    justify-content: space-between;
    align-items: center;
	border:1px solid #FF5500;
	background: #FF5500;	
	font-size:14px;
	font-weight:600;
	padding:4px 8px;
	border-radius:8px;
	width: max-content;	
}

.single-metacat, .single-metatime {
	font-size:14px;
	font-weight:600;
	color:#FFF;
	padding:2px 10px;
}

.contest-grid {
	display: grid;
    grid-template-columns: 1fr 380px;
    grid-gap: 5rem;
}

@media screen and (max-width:1280px) {
	.contest-grid {
		grid-template-columns: 1fr 320px;
	}
}

@media screen and (max-width:118px) {
	.contest-grid {
		grid-gap: 2rem;
	}
}

@media screen and (max-width:900px) {
	.contest-grid {
		grid-template-columns: 1fr;
	}
}

/* PRSENTATION */

.mb4 {
	margin-top:4rem;
}

.present-box {
	display:grid;
	grid-template-columns: 300px 1fr 200px;
	grid-gap:2rem;
	max-height:80vh;
}
.grid-post-div {
    background: #561786 ;
}

.gameframe {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}

.gameframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.present-iframe {
	background:#561786;
}

.present-h2 {
	padding:0;
	margin:4rem 0 1rem;
}

.absolu {
	position:absolute;
	bottom:3%;
	left:3%;
	max-height:100px;
	width:auto;
	height:auto;
}

.right-part {
	display:grid;
	grid-template-rows:1fr 1fr;
	grid-gap:2rem;
}

.present-boys, .present-girls {
	background: #561786 ;
}


.single-chart {
  /* width: 100%;
  justify-content: space-around ; */
	width: 80%;
	margin: auto;
}

.circular-chart {
  display: block;
  margin: 10px auto;
  max-width: 80%;
  max-height: 250px;
}

.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 3.8;
}

.circle {
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  animation: progress 1s ease-out forwards;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.circular-chart.orange .circle {
  stroke: #ff9f00;
}

.circular-chart.green .circle {
  stroke: #4CC790;
}

.circular-chart.blue .circle {
  stroke: #1ea0ff;
}

.circular-chart.pink .circle {
  stroke: #ff00b1;
}

.percentage {
    fill: #ccc;
    font-family: sans-serif;
    font-size: 0.5em;
    text-anchor: middle;
    text-shadow: 0 2px 7px #263238;
}

.right-part h3 {
	padding: 6px;
    text-align: center;
    -webkit-text-stroke-width: thin;
    letter-spacing: 1.75px;
    font-weight: 300;
    text-shadow: 0 4px 4px #000;
}

.gameframe img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
	object-fit: cover;
	background: #561786;
}

.precent-ul {
	margin-top: 2rem!important;
    border-radius: 8px!important;
    background: #561786!important;
    border: 0!important;	
}

.order-1 {
	order:1;
}

.order-2 {
	order:2;
}

.order-3 {
	order:3;
}

@media screen and (max-width:1204px) {

.present-box {
	grid-template-columns: 1fr 1fr;
	max-height:none;
}
	
.order-1 {
	order:1;
}

.order-2 {
	order:3;
	grid-column: 1/3;
    grid-row: 2;
}

.order-3 {
	order:2;
}

}

@media screen and (max-width:830px) {
.sparch-ul {
    justify-content: flex-start;
}
}

@media screen and (max-width:580px) {
	
.order-1 {	
	order: 1;
    grid-column: 1/3;
    grid-row: 1;
}

.order-2 {
	order:2;
	grid-column: 1/3;
    grid-row: 2;
}

.order-3 {
	order:3;
	grid-column: 1/3;
    grid-row: 3;	
}

.right-part {
    grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr;
}
}

/* MOBILE SOCIAL */
.fa-facebook:before, .fa-twitter:before, .fa-instagram:before, .fa-youtube:before  {
    color: var(--ciely);
}

/* FOOTER */

footer {
	background:var(--bck-blue-dark);
} 

.copyright {
	font-size:1rem;
	text-align: center;
    font-variant: all-small-caps;
}

.footer-links {
	padding: 3rem 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.footer-link {
	margin:0 1rem;
	display:block;
	color:#FFF;
	font-size:0.9rem!important;
	font-weight:600;
	opacity: 0.8;
}

.footer-link:hover {
	opacity: 1;
}

.foot-social {
    display: flex;
    margin: 3rem auto 1rem;
    align-items: center;
    justify-content: center;
}

.footer-dev {
	font-size: 12px;
    text-align: center;
    margin: 0 auto;
    display: block;
	color: #f1f1f1;
    text-transform: capitalize;
	font-weight: 300;
}

@media screen and (max-width:768px) {
.footer-links {	
    padding: 3rem 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 3;	
	}
}

/* PROGRAMME */ 
.program-main {
	margin-top:5rem;
}	


.progr-table {
	display:flex;
	flex-direction: column;
}

.grid-2p {
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-gap: 3rem;
	padding: 3rem 3rem 3rem;
}

.deta:nth-child(2n+1) {
	background:#561786;
	
}

.program-h2 {
	padding: 4rem 3rem 4rem;
	font-weight:800;
	-webkit-text-stroke-width: thin;
	letter-spacing:1.5px;
	text-transform: uppercase;	
	
}

.program-tim {
	font-weight:800;
	display:block;
	font-size: 1.2rem;
}

.program-tit {
	position:relative;
	text-transform: uppercase;
    font-weight:800;
    letter-spacing: 0.5px;
    font-size: 1rem;
    color: #c4afd4;
	display:block;
	cursor: pointer;
}

.program-tit:after {
    content: "+";
    color: #FFF;
    font-size: 2rem;
    position: absolute;
    top: -11px;
    right: 0;
}

details[open] .program-tit:after {
    transform: rotate(45deg);
    transition: .555s;
}

.indetails {
	transition-timing-function: ease-in;
	padding:1rem 3rem;
}

.program-logo {
	width:auto;
	height:100%;
	max-height:100px;
	float: right;
	aspect-ratio:5/3;
	object-fit:contain;
}

.tomorrow {
	background: #612490;
    text-transform: uppercase;
	margin: 0;
}

.program-more {
	display: flex;
    margin: 1rem 0;
    text-decoration-line: underline;
    font-weight: 500;
    color: #c4afd4;
}

.program-more:hover {
    color: #FFF!important;
	text-decoration-line: none!important;
}

.program-onnow {
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #ff5500;
    background: #ff5500;
    text-align: center;
    width: max-content;
    padding: 1px 6px;
    margin: 0.5rem 0;
    border-radius: 8px;
}

.program-on {
	display:block!important;
}

.program-off {
	display:none!important;
}

@media screen and (max-width:768px) {
	.grid-2p {
		grid-template-columns: auto 1fr;
		grid-gap: 2rem;
		padding: 3rem 1rem;
	}
	.indetails {
		transition-timing-function: ease-in;
		padding: 1rem 2rem;
	}
	.grid-4 {
	grid-template-columns:1fr 1fr;
	}
}

@media screen and (max-width:574px) {
	.indetails {
		transition-timing-function: ease-in;
		padding: 1rem 0rem;
	}
	.program-logo {
		float:none;
	}
	.program-onnow {
		font-size: 12px;
    	width: min-content;
	}
	.grid-4 {
	grid-template-columns:1fr;
	}	
}

/* SEARCH */
.link-search {
	display:block;	
	padding:2rem 3rem;
}

.link-search:nth-child(2n) {
	background:#612490;
}

.results-search {
	padding:2rem 3rem;
}

/* SEIRES PAGE */
.series-grid {
	display:grid;
	grid-template-columns:1fr 1fr 1fr 1fr;
	grid-gap:1rem;
}

@media screen and (max-width:1140px) {
	.series-grid {
		grid-template-columns:1fr 1fr 1fr;
	}
}

@media screen and (max-width:574px) {
	.series-grid {
		grid-template-columns:1fr 1fr;
	}
}

/* CONTACT FORM */
.forminator-checkbox__label p {
    color: #FFF!important;
}

.forminator-checkbox__label a {
    color: #84f1ff!important;
}

/* 404 */
.p404 {
	margin-top: 4rem;
}
.p404box {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.p404image{
	width:auto;
	height:100%;
	max-height:45vh;
	margin-bottom:2rem;
}
.p404h1 {
	color:#FFF;
	font-size: 2.5rem;
}

/* GAMES FULL */
.button {
	display: inline-block;
	vertical-align: baseline;
	margin: 0 2px 12px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: 700 14px/100% Arial, Helvetica, sans-serif;
	padding: .5em 2em .55em;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	color: #d9eef7;
	border: solid 1px #0076a3;
	background: #0095cd;
	background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
	background: -moz-linear-gradient(top,  #00adee,  #0078a5);
	-webkit-border-radius: .5em; 
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.button:hover, .button:active {
	background: #007ead;
	background: -webkit-gradient(linear, left top, left bottom, from(#0095cc), to(#00678e));
	background: -moz-linear-gradient(top,  #0095cc,  #00678e);
}
.button:active {
	position: relative;
	top: 1px;
	color: #80bed6;
	background: -webkit-gradient(linear, left top, left bottom, from(#0078a5), to(#00adee));
	background: -moz-linear-gradient(top,  #0078a5,  #00adee);
}

   .result {
      font-weight: 500;
      font-size: 18px;
      color: blueviolet;
   }
   .fullScreen {
      width: 100vw;
      height: 100vh;
   }
	.proper {
		display:grid;
		grid-template-columns:1fr 1fr 1fr;
		grid-gap:3rem;
	}
	.proper h3 {
		font-size:16px;
		text-align: center;
		margin: 0.5rem 0;
		text-transform: uppercase;
	}
	.proper-present {
		border-radius: 8px;
    	overflow: hidden;
		background: #401164;
		border: 1px solid #fff;
		background: #401164;
		box-shadow: 0 8px 8px -8px #000;
	}
	
.green {
    stroke: #8BC34A;
}
	
.yellow {
    stroke: #ffc107;
}

.mov {
    stroke: #ff5722;
}	

.percentage-game {
    stroke: none!important;
}

	@media screen and (max-width:580px) {
	.proper {
		grid-gap:1rem;
	}
	.proper h3 {
		font-size:11px;
	}
	}

#contant-links a {
	text-decoration-line: underline;
}

.advertisment {display: flex;align-items: center;justify-content: center;padding: 1rem 0;background: var(--bck-blue-dark);}

#contest-post, .feel-grid {
	display:grid;
	grid-template-columns:1fr 360px;
	grid-gap:5rem;
}
.right-sidebar {
	position:relative;
}

@media screen and (max-width:992px) {
	#contest-post, .feel-grid {
		display:block;
	}
	.right-sidebar {
		display:none;
	}
}