@import "https://fonts.googleapis.com/css2?family=Poppins&display=swap";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, big, em, q, abbr, address, cite, code, del, dfn, em, img, ins, samp, small, strong, tt, var, b, u, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, figure, table, caption, tbody, tfoot, thead, tr, th, td, time, mark, audio, video, tbody, nav, section {
  vertical-align: baseline;
  box-sizing: border-box;
  border: 0;
  outline: 0;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, tr, tbody, img {
  display: block;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

:root {
  --color-main-light: #bb82f4;
  --color-main-light-rgb: 187, 130, 244;
  --color-main-dark: #27272a;
  --color-main-dark-rgb: 39, 39, 42;
  --color-danger: #ff004d;
  --pb: 24px;
  --ps: 40px;
  --pt: 50px;
  --gap: 20px;
  --row-gap: 64px;
  --small-gap: 16px;
  --pi: 104px;
  --header-height: 102px;
  --section-gap: 240px;
  --menu-height: 120px;
  --bg-light: #ececec;
  --bg-light-button: #dadada;
  --border-value: 3;
  --article-text-width: 880px;
  --teaser-margin-top: 0px;
}

@media screen and (width <= 1020px) {
  :root {
    --section-gap: 120px;
  }
}

@media screen and (width <= 768px) {
  :root {
    --header-height: 74px;
    --pi: 82px;
    --pt: 20px;
    --section-gap: 90px;
    --row-gap: 32px;
  }
}

@media screen and (width <= 520px) {
  :root {
    --ps: 20px;
  }
}

.section-hero .hero__img p, .header__nav-link span, .article__title, .section__title {
  font-family: var(--font-headers);
  text-transform: uppercase;
  font-weight: bold;
}

.voting-form__candidates label, .voting-form__category legend, .voting-form__header, .voting__info-header, .voting__info-error, .winners-teaser__winner p, .winners-teaser__title, .wideo-counter__text > p, .wideo-counter__text .wideo-counter__info, .article-teaser.teaser-sponsored:before, .category-teaser .category-teaser__title, .section-hero .hero__text .section__desc, .candidate-teaser__title, .article__subtitle {
  font-family: var(--font-headers);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 300;
}

@media screen and (width <= 768px) {
  .voting-form__candidates label, .voting-form__category legend, .voting-form__header, .voting__info-header, .voting__info-error, .winners-teaser__winner p, .winners-teaser__title, .wideo-counter__text > p, .wideo-counter__text .wideo-counter__info, .article-teaser.teaser-sponsored:before, .category-teaser .category-teaser__title, .section-hero .hero__text .section__desc, .candidate-teaser__title, .article__subtitle {
    font-size: 16px;
  }
}

@media screen and (width <= 520px) {
  .voting-form__candidates label, .voting-form__category legend, .voting-form__header, .voting__info-header, .voting__info-error, .winners-teaser__winner p, .winners-teaser__title, .wideo-counter__text > p, .wideo-counter__text .wideo-counter__info, .article-teaser.teaser-sponsored:before, .category-teaser .category-teaser__title, .section-hero .hero__text .section__desc, .candidate-teaser__title, .article__subtitle {
    font-size: 14px;
  }
}

.voting-form__candidates label:before, .voting-form__category legend:after {
  content: "";
  background-color: var(--color-main-light);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100vw;
  padding-right: 0 !important;
}

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

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--font-main);
  color: #fff;
  background-color: var(--color-main-dark);
  width: 100%;
  position: relative;
  overflow-x: hidden;
}

@media screen and (width <= 768px) {
  body {
    font-size: 16px;
  }
}

body:before {
  content: "";
  transform: translateY(var(--parallax-translate-y));
  background-image: url("https://creatorsawards.wpcdn.pl/2025/img/bg/article-bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform .2s ease-out;
  display: block;
  position: absolute;
  inset: 0 0 50%;
}

@media screen and (width <= 768px) {
  body:before {
    opacity: .7;
    background-position: 0 0;
    background-size: 200%;
  }
}

body.template-sg:before {
  background-image: url("https://creatorsawards.wpcdn.pl/2025/img/bg/hero-bg-d.webp");
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (width <= 768px) {
  body.template-sg:before {
    opacity: .5;
    background-image: url("https://creatorsawards.wpcdn.pl/2025/img/bg/hero-bg.webp");
    background-position: 60% 0;
    background-size: 300%;
  }
}

body.hero--animated:before {
  animation: 5s infinite smoke;
}

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

body ::selection {
  background: var(--color-main-light);
  color: #fff;
}

img {
  display: block;
}

p {
  padding-bottom: var(--pb);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (width <= 768px) {
  p {
    font-size: 16px;
  }
}

::-webkit-scrollbar {
  background-color: var(--color-main-dark);
  width: 6px;
}

::-webkit-scrollbar-track {
  background-color: var(--color-main-dark);
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, rgba(var(--color-main-light-rgb), .6) 0%, var(--color-main-light) 41.5%, var(--color-main-light) 59%, rgba(var(--color-main-light-rgb), .6) 100%);
  border-radius: 1px;
}

.wrapper {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

@media screen and (width <= 1260px) {
  .wrapper {
    padding: 0 var(--ps);
  }
}

._js_inViewport {
  opacity: 0;
  transition: transform 2s cubic-bezier(0, 1, .3, 1) .25s, opacity .3s ease-out .25s;
  position: relative;
  transform: translateY(-70px);
}

._js_inViewport.__js_onScreen {
  opacity: 1;
  position: relative;
  transform: translateY(0);
}

.btn--main, .socials .__js_socialShare, .header__hamburger {
  all: unset;
  font-family: var(--font-headers);
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  border: 1px solid var(--color-main-light);
  box-sizing: border-box;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 50px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  transition: box-shadow .4s ease-out;
  display: flex;
  position: relative;
}

.btn--main:before, .socials .__js_socialShare:before, .header__hamburger:before {
  content: "";
  z-index: -1;
  background-color: var(--color-main-light);
  transition: opacity 1s ease-out;
  display: block;
  position: absolute;
  inset: 0;
}

.btn--main:hover, .socials .__js_socialShare:hover, .header__hamburger:hover {
  cursor: pointer;
  box-shadow: 0 0 8px 0 rgba(var(--color-main-light-rgb), 1);
}

.btn--main:hover:before, .socials .__js_socialShare:hover:before, .header__hamburger:hover:before {
  opacity: 0;
}

@keyframes smoke {
  0% {
    opacity: 1;
  }

  50% {
    opacity: .65;
  }

  100% {
    opacity: 1;
  }
}

@keyframes glowItem {
  0% {
    transform: rotate(45deg)translate(-450%);
  }

  40% {
    transform: rotate(45deg)translate(450%);
  }

  70%, 100% {
    transform: rotate(45deg)translate(-450%);
  }
}

.section__wrapper {
  padding-bottom: var(--section-gap);
  position: relative;
}

.section__wrapper:last-of-type {
  margin-bottom: -10vw;
  padding-bottom: 0;
}

@media screen and (width <= 768px) {
  .section__wrapper:last-of-type {
    margin-bottom: -150px;
  }
}

.section__wrapper .wrapper {
  max-width: 1500px;
}

@media screen and (width <= 1580px) {
  .section__wrapper .wrapper {
    padding: 0 var(--ps);
    max-width: 100%;
  }
}

.article__title, .section__title {
  font-size: 64px;
  line-height: 1.5;
  position: relative;
}

@media screen and (width <= 1180px) {
  .article__title, .section__title {
    font-size: 56px;
  }
}

@media screen and (width <= 1020px) {
  .article__title, .section__title {
    font-size: 52px;
  }
}

@media screen and (width <= 768px) {
  .article__title, .section__title {
    font-size: 38px;
  }
}

@media screen and (width <= 400px) {
  .article__title, .section__title {
    font-size: 30px;
  }
}

@media screen and (width <= 360px) {
  .article__title, .section__title {
    font-size: 28px;
  }
}

@media screen and (width <= 320px) {
  .article__title, .section__title {
    font-size: 26px;
  }
}

.section__title {
  padding-bottom: var(--pb);
}

.articles {
  position: relative;
  overflow-x: hidden;
}

.articles:after {
  content: "";
  aspect-ratio: 6;
  z-index: -1;
  background-image: url("https://creatorsawards.wpcdn.pl/2025/img/bg/bg-footer-b.webp");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  display: block;
  position: relative;
}

@media screen and (width <= 768px) {
  .articles:after {
    aspect-ratio: unset;
    height: 200px;
  }
}

.footer--animated .articles:after {
  animation: 5s infinite smoke;
}

.article__header {
  padding: calc(var(--header-height)  + var(--menu-height)  + var(--pt)) 0 0;
  row-gap: var(--row-gap);
  margin-bottom: calc(var(--pb)  + var(--pi));
  flex-direction: column;
  display: flex;
  position: relative;
}

@media screen and (width <= 1020px) {
  .article__header {
    padding: calc(var(--header-height)  + 60px + var(--pt)) 0 0;
  }
}

.article__header .article__title, .article__header .article__socials, .article__header .article__image {
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

@media screen and (width <= 1260px) {
  .article__header .article__title, .article__header .article__socials, .article__header .article__image {
    max-width: calc(100% - 2 * var(--ps));
  }
}

@media screen and (width <= 1020px) {
  .article__header .article__title, .article__header .article__socials, .article__header .article__image {
    margin: 0 auto;
  }
}

.article__header .article__title {
  font-size: 42px;
}

@media screen and (width <= 768px) {
  .article__header .article__title {
    font-size: 24px;
  }
}

.article__image {
  margin: calc(var(--header-height) * .75) auto 0;
}

.article__image img {
  filter: brightness(.5);
  aspect-ratio: 2;
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  transition: filter .4s ease-in .25s;
}

.article__image img.article__image--visible {
  filter: brightness();
}

.article__text {
  padding: 0 calc((100% - var(--article-text-width)) / 2) var(--ps);
  z-index: 0;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

@media screen and (width <= 960px) {
  .article__text {
    padding: 0 var(--ps) calc(2 * var(--gap));
    width: 100%;
    max-width: 100%;
  }
}

.article__text .player {
  aspect-ratio: 16 / 9;
}

.article__text > .section__title {
  padding-top: var(--pb);
  padding-bottom: var(--pb);
}

.article__text > * {
  box-sizing: border-box;
  width: 100%;
}

.article__text > .btn--main, .socials .article__text > .__js_socialShare, .article__text > .header__hamburger {
  margin-bottom: calc(var(--pb)  + var(--pi));
  align-self: flex-start;
  width: auto;
}

.article__text > p a, .article__text > ul li a {
  color: var(--color-main-light);
  background-image: linear-gradient(transparent calc(100% - 1px), var(--color-main-light) calc(100% - 1px));
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-weight: bold;
  transition: all .6s .2s;
  position: relative;
}

.article__text > p a:hover, .article__text > ul li a:hover {
  background-size: 0 100%;
}

.article__text > ul {
  padding-bottom: calc(var(--pb) / 2);
}

.article__text > ul li {
  padding-bottom: calc(var(--pb) / 2);
  padding-left: var(--gap);
  position: relative;
}

.article__text > ul li:before {
  content: "";
  background-color: var(--color-main-light);
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  top: .6em;
  left: 0;
}

.candidate-teasers {
  position: relative;
}

.candidate-teasers .winners-teaser {
  width: 100%;
}

.article__lead, .article__subtitle {
  padding-bottom: var(--pb);
  font-size: 20px;
}

@media screen and (width <= 768px) {
  .article__lead, .article__subtitle {
    font-size: 16px;
  }
}

.article__lead {
  font-weight: bold;
}

@media screen and (width >= 641px) {
  .article__photo {
    gap: var(--small-gap) var(--gap);
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
}

@media screen and (width <= 640px) {
  .article__photo {
    gap: var(--small-gap);
    flex-direction: column;
    display: flex;
  }
}

.article__photo img {
  object-fit: cover;
  grid-row: 1 / span 1;
  width: 100%;
}

.article__photo img:first-of-type:last-of-type {
  aspect-ratio: 2;
}

.article__photo img:first-of-type:not(:last-of-type), .article__photo img:nth-of-type(2) {
  aspect-ratio: 1;
}

.article__photo figcaption {
  grid-row: 2 / span 1;
  font-size: 14px;
}

.article__photo img:first-of-type:not(:last-of-type), .article__photo figcaption:first-of-type:not(:last-of-type) {
  grid-column: 1 / span 1;
}

.article__photo img:first-of-type:last-of-type, .article__photo figcaption:first-of-type:last-of-type {
  grid-column: 1 / span 2;
}

.article__photo img:nth-of-type(2), .article__photo figcaption:nth-of-type(2) {
  grid-column: 2 / span 1;
}

.article__photo:not(:last-child), .player:not(:last-child), .candidate-teasers:not(:last-child) {
  margin-bottom: calc(var(--pb)  + var(--pi));
  margin-top: calc(var(--pb)  + var(--pi));
}

.article__photo, .player {
  width: 1180px;
}

@media screen and (width <= 1260px) {
  .article__photo, .player {
    width: calc(100vw - 2 * var(--ps));
  }
}

@media screen and (width <= 880px) {
  .article__photo, .player {
    width: 100%;
  }
}

.fb-post {
  margin: calc(var(--pb)  + var(--pi)) auto;
  text-align: center;
  max-width: 100%;
  position: relative;
}

.fb-post > span {
  background: #fff;
}

.fb-post * {
  max-width: 100%;
}

.social-embed-wrapper {
  margin-top: calc(var(--pb)  + var(--pi));
  margin-bottom: calc(var(--pb)  + var(--pi));
  justify-content: center;
  width: 80%;
  max-width: 100%;
  display: flex;
  position: relative;
}

@media screen and (width <= 640px) {
  .social-embed-wrapper {
    width: 100%;
  }
}

.social-embed-wrapper:not(.expanded):before {
  content: "";
  background: linear-gradient(to bottom, transparent 0%, rgba(var(--color-main-dark-rgb), .8) 100%);
  display: block;
  position: absolute;
  inset: 0;
}

.social-embed-wrapper .btn--main, .social-embed-wrapper .socials .__js_socialShare, .socials .social-embed-wrapper .__js_socialShare, .social-embed-wrapper .header__hamburger {
  max-height: 43px;
  padding: 10px 20px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.social-embed-wrapper .btn--main:hover:before, .social-embed-wrapper .socials .__js_socialShare:hover:before, .socials .social-embed-wrapper .__js_socialShare:hover:before, .social-embed-wrapper .header__hamburger:hover:before {
  opacity: .75;
}

.social-embed {
  aspect-ratio: 2;
  width: 100%;
  height: 320px;
  transition: height .5s;
}

.social-embed.social-embed--default-height {
  height: 1050px;
}

@media screen and (width <= 960px) {
  .social-embed.social-embed--default-height {
    height: 110vw;
  }
}

.social-embed.expanded {
  height: var(--iframe-height);
}

.winner__header {
  font-family: var(--font-headers);
  background-color: var(--color-main-light);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: calc(-1 * var(--small-gap));
  padding: 10px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
}

.header {
  z-index: 7;
  padding-top: var(--pt);
  border: 0;
  outline: none;
  width: 100%;
  transition: transform .3s;
  position: fixed;
  transform: translate3d(0, 0, 0);
}

.header .wrapper {
  background-color: var(--color-main-dark);
  border: 1px solid var(--color-main-light);
  z-index: auto;
  height: var(--header-height);
  gap: var(--gap);
  justify-content: space-between;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  box-shadow: 0 0 40px #1717171a;
}

@media screen and (width <= 1540px) {
  .header .wrapper {
    max-width: calc(100% - 40px);
  }
}

@media screen and (width <= 980px) {
  .header .wrapper {
    padding: 0 40px;
  }
}

@media screen and (width <= 1020px) {
  .header .wrapper {
    padding: 0 15px;
  }
}

@media screen and (width <= 640px) {
  .header .wrapper {
    gap: 10px;
    padding: 0 15px;
  }
}

@media screen and (width <= 380px) {
  .header .wrapper {
    max-width: calc(100% - var(--gap));
    padding: 0 10px;
  }
}

.header.header--hidden {
  transform: translate3d(0, calc(-1 * var(--pt)), 0);
}

.header a {
  z-index: 1;
}

.header__logo img, .footer__logo img {
  max-height: 40px;
}

@media screen and (width <= 768px) {
  .header__logo img, .footer__logo img {
    max-width: 100px;
  }
}

.header__hamburger {
  all: unset;
  top: calc(var(--header-height));
  z-index: 5;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  padding: 0;
  transition: background .1s, color .3s .5s;
  display: none;
  position: absolute;
  right: 0;
}

@media screen and (width <= 1020px) {
  .header__hamburger {
    display: flex;
  }
}

.header__hamburger:before, .header__hamburger.__js_isActive:before, .header__hamburger:hover:before {
  opacity: 1;
}

.header__hamburger span {
  transform-origin: center;
  background-color: #fff;
  border-radius: 1px;
  width: 20px;
  height: 2px;
  transition: transform .2s;
}

.header__hamburger span:nth-of-type(2) {
  margin: 4px 0;
}

.header__hamburger.__js_isActive {
  background: var(--color-main-dark);
  color: #0000;
  transition: background .1s, color 50ms;
}

.header__hamburger.__js_isActive span:nth-of-type(2) {
  display: none;
}

.header__hamburger.__js_isActive span:first-of-type {
  position: absolute;
  transform: rotate(45deg);
}

.header__hamburger.__js_isActive span:nth-of-type(3) {
  position: absolute;
  transform: rotate(-45deg);
}

.header__nav {
  top: calc(var(--header-height)  + var(--pt));
  height: var(--menu-height);
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 1500px;
  margin: 0 auto;
  font-size: 0;
  transition: height .3s, top .3s;
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
}

.header__nav.header__nav--hidden {
  top: calc(var(--header-height));
}

@media screen and (width <= 1540px) {
  .header__nav {
    width: calc(100% - 40px);
  }
}

@media screen and (width >= 1021px) {
  .header__nav.header__nav--hidden {
    --menu-height: 34px;
  }
}

@media screen and (width <= 1020px) {
  .header__nav {
    transform-origin: top;
    opacity: 0;
    max-height: unset;
    border: 1px solid var(--color-main-light);
    border-top: unset;
    background-image: url("https://creatorsawards.wpcdn.pl/2025/img/bg/counter-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: auto;
    height: auto;
    transition: transform .3s, opacity .3s;
    left: auto;
    right: 65px;
    transform: translateY(-200%);
  }
}

@media screen and (width <= 380px) {
  .header__nav {
    right: 55px;
  }
}

@media screen and (width <= 1020px) {
  .header__nav.__js_isActive {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.header__nav-list {
  justify-content: center;
  gap: var(--small-gap);
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin-left: auto;
  padding: 0 40px;
  display: flex;
  position: relative;
}

@media screen and (width >= 1021px) {
  .header__nav-list:before {
    content: "";
    background-image: linear-gradient(to right, rgba(var(--color-main-dark-rgb), .2) 0%, rgba(var(--color-main-dark-rgb), .8) 10%, rgba(var(--color-main-dark-rgb), .8) 100%);
    width: 1500px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
  }
}

@media screen and (width >= 1021px) and (width <= 1540px) {
  .header__nav-list:before {
    width: calc(100vw - 40px);
  }
}

@media screen and (width <= 1120px) {
  .header__nav-list {
    padding: 0 var(--gap);
    gap: 24px;
  }
}

@media screen and (width <= 1020px) {
  .header__nav-list {
    gap: var(--small-gap);
    padding: var(--gap) 40px;
    max-height: unset;
    text-align: center;
    flex-direction: column;
    align-items: center;
    height: auto;
  }
}

@media screen and (width <= 440px) {
  .header__nav-list {
    padding: var(--gap) 30px;
  }
}

@media screen and (width <= 330px) {
  .header__nav-list {
    padding: var(--gap);
  }
}

.header__nav-item {
  margin: 0;
  display: block;
  position: relative;
}

@media screen and (width >= 1021px) {
  .header__nav-item:not(:last-of-type) span {
    padding-right: var(--small-gap);
    border-right: 1px solid #fff;
  }
}

@media screen and (width <= 660px) {
  .header__nav-item:last-of-type {
    margin-bottom: 0;
  }
}

.header__nav-link {
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.header__nav-link span {
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  line-height: 1;
  transition: color .2s;
  display: flex;
  position: relative;
}

@media screen and (width <= 1020px) {
  .header__nav-link span {
    padding: 5px 10px;
  }
}

@media screen and (width <= 440px) {
  .header__nav-link span {
    font-size: 16px;
  }
}

.header__nav-link.__active span, .header__nav-link:hover span {
  color: var(--color-main-light);
  background-clip: text;
}

.footer {
  color: #fff;
  padding: var(--gap) 60px;
  background-image: url("https://creatorsawards.wpcdn.pl/2025/img/bg/counter-bg.jpg");
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  display: flex;
  position: relative;
}

@media screen and (width <= 768px) {
  .footer {
    gap: var(--pb);
    padding: 53px var(--gap) 31px;
    flex-direction: column;
  }
}

.footer:before {
  content: "";
  background-color: rgba(var(--color-main-dark-rgb), .3);
  display: block;
  position: absolute;
  inset: 0;
}

.footer .sponsor-list__wrapper {
  margin-left: auto;
  position: relative;
}

.footer .sponsor-list__wrapper:before, .footer .sponsor-list__wrapper:after {
  display: none;
}

@media screen and (width <= 920px) {
  .footer .sponsor-list__wrapper {
    width: fit-content;
    max-width: 50%;
  }
}

@media screen and (width <= 768px) {
  .footer .sponsor-list__wrapper {
    width: 100%;
    max-width: 100%;
  }
}

.footer__logo {
  position: relative;
}

.footer__text {
  justify-content: space-between;
  width: 100%;
  display: flex;
  position: relative;
}

@media screen and (width <= 768px) {
  .footer__text {
    gap: var(--pb);
    flex-direction: column;
    margin: 0 auto;
  }
}

.footer__text p, .footer__text a {
  max-width: 50%;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
}

@media screen and (width <= 768px) {
  .footer__text p, .footer__text a {
    width: 100%;
    max-width: 100%;
  }
}

.footer__text a {
  text-transform: uppercase;
  text-decoration: underline;
}

.footer__text p {
  text-align: right;
}

@media screen and (width <= 768px) {
  .footer__text p {
    text-align: left;
  }
}

.article__socials {
  padding: 10px 0 var(--gap);
  margin: 0 auto var(--gap);
  border-top: 1px solid var(--color-main-light);
  flex-wrap: wrap;
  align-items: center;
  row-gap: 10px;
  max-width: 100%;
  display: flex;
  position: relative;
}

.socials {
  gap: var(--small-gap);
  margin: 10px 0 0 auto;
  display: flex;
  position: relative;
}

.socials .__js_socialShare {
  width: 43px;
  height: 43px;
  padding: 0;
  position: relative;
}

.socials .__js_socialShare:after {
  content: "";
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.socials .__js_socialShare[data-id="facebook"]:after {
  background-image: url("https://creatorsawards.wpcdn.pl/2025/img/logos/fb.svg");
  width: 11px;
  height: 20px;
}

.socials .__js_socialShare[data-id="instagram"]:after {
  background-image: url("https://creatorsawards.wpcdn.pl/2025/img/logos/ig.svg");
  width: 20px;
  height: 20px;
}

.socials .__js_socialShare[data-id="youtube"]:after {
  background-image: url("https://creatorsawards.wpcdn.pl/2025/img/logos/yt.svg");
  width: 20px;
  height: 14px;
}

.socials .__js_socialShare[data-id="twitter"]:after {
  background-image: url("https://creatorsawards.wpcdn.pl/2025/img/logos/tw.svg");
  width: 20px;
  height: 20px;
}

.article__author {
  letter-spacing: .8px;
  margin-right: 24px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}

@media screen and (width <= 768px) {
  .article__author {
    font-size: 16px;
  }
}

.article__text > .btn--main, .article__text > .header__hamburger, .socials .article__text > .__js_socialShare, .candidate-teasers .btn--main, .candidate-teasers .header__hamburger, .candidate-teasers .socials .__js_socialShare, .socials .candidate-teasers .__js_socialShare {
  white-space: wrap;
  text-align: center;
  max-width: 100%;
}

@media screen and (width <= 420px) {
  .article__text > .btn--main, .article__text > .header__hamburger, .socials .article__text > .__js_socialShare, .candidate-teasers .btn--main, .candidate-teasers .header__hamburger, .candidate-teasers .socials .__js_socialShare, .socials .candidate-teasers .__js_socialShare {
    padding: 0 10px;
  }
}

@media screen and (width <= 340px) {
  .article__text > .btn--main, .article__text > .header__hamburger, .socials .article__text > .__js_socialShare, .candidate-teasers .btn--main, .candidate-teasers .header__hamburger, .candidate-teasers .socials .__js_socialShare, .socials .candidate-teasers .__js_socialShare {
    padding: 0 4px;
  }
}

.candidate-teasers {
  gap: var(--small-gap);
  flex-direction: column;
  display: flex;
}

.candidate-teasers .btn--main, .candidate-teasers .header__hamburger, .candidate-teasers .socials .__js_socialShare, .socials .candidate-teasers .__js_socialShare {
  margin-top: var(--gap);
  align-self: flex-start;
}

.candidate-teasers .winners-teasers {
  gap: 36px;
}

@media screen and (width <= 640px) {
  .candidate-teasers .winners-teasers {
    gap: var(--small-gap);
  }
}

.candidate-teaser {
  background-color: var(--color-main-dark);
  padding: var(--pb);
  column-gap: var(--gap);
  row-gap: var(--small-gap);
  border: 1px solid var(--color-main-light);
  background-image: url("https://creatorsawards.wpcdn.pl/2025/img/bg/counter-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  grid-template-columns: .4fr .6fr;
  transition: box-shadow .4s ease-out;
  display: grid;
}

@media screen and (width <= 640px) {
  .candidate-teaser {
    padding: var(--small-gap);
    flex-direction: column;
    display: flex;
  }
}

.candidate-teaser:hover {
  box-shadow: 0 0 8px 0 rgba(var(--color-main-light-rgb), 1);
}

.candidate-teaser img {
  aspect-ratio: 1.26;
  object-fit: cover;
  max-width: 100%;
}

@media screen and (width <= 640px) {
  .candidate-teaser img {
    width: 50%;
    min-width: 180px;
  }
}

.candidate-teaser__title {
  grid-area: 2 / 1 / span 1 / span 1;
}

.candidate-teaser__description {
  grid-area: 1 / 2 / span 2 / span 1;
  display: block;
  position: relative;
  overflow-y: auto;
}

.candidate-teaser__description p {
  width: 100%;
}

@media screen and (width >= 641px) {
  .candidate-teaser__description p {
    position: absolute;
  }
}

@media screen and (width <= 640px) {
  .candidate-teaser__description p {
    max-height: 40vw;
  }
}

.section-hero {
  z-index: 1;
  padding-top: calc(var(--pt)  + var(--header-height)  + var(--menu-height));
  position: relative;
}

@media screen and (width <= 1020px) {
  .section-hero {
    padding: calc(var(--header-height)  + 60px + var(--pt)) 0 0;
  }
}

.section-hero .wrapper {
  z-index: 1;
  align-self: center;
  max-width: 100%;
  padding-left: calc(50vw - 750px);
  display: flex;
}

@media screen and (width <= 1580px) {
  .section-hero .wrapper {
    padding-left: var(--ps);
  }
}

@media screen and (width <= 1020px) {
  .section-hero .wrapper {
    flex-direction: column;
  }
}

.section-hero.section-hero--animate .hero__img--glow:after {
  animation: 3s infinite glowItem;
}

.section-hero .hero__text {
  justify-content: center;
  row-gap: var(--pb);
  color: #fff;
  flex-direction: column;
  display: flex;
}

@media screen and (width >= 1021px) {
  .section-hero .hero__text {
    width: 530px;
    min-width: 530px;
    max-width: 530px;
  }
}

@media screen and (width >= 1181px) {
  .section-hero .hero__text {
    width: 610px;
    min-width: 610px;
    max-width: 610px;
  }
}

.section-hero .hero__text .section__title {
  text-align: left;
  padding-bottom: 0;
  line-height: 1.2;
  display: block;
}

.section-hero .hero__text .section__lead {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (width <= 768px) {
  .section-hero .hero__text .section__lead {
    font-size: 16px;
  }
}

.section-hero .hero__text p, .section-hero .hero__text .section__lead {
  padding: 0;
  font-size: 20px;
}

@media screen and (width <= 768px) {
  .section-hero .hero__text p, .section-hero .hero__text .section__lead {
    font-size: 16px;
  }
}

.section-hero .hero__text .btn--main, .section-hero .hero__text .header__hamburger, .section-hero .hero__text .socials .__js_socialShare, .socials .section-hero .hero__text .__js_socialShare {
  margin-top: var(--pb);
  align-self: flex-start;
}

.section-hero .hero__img {
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  display: flex;
  position: relative;
}

@media screen and (width >= 1021px) {
  .section-hero .hero__img {
    margin: 0 calc(-1 * var(--ps)) 0 auto;
    max-width: 55%;
  }
}

@media screen and (width <= 1020px) {
  .section-hero .hero__img {
    margin: 0 auto var(--section-gap) calc(-1 * var(--ps));
    width: 100vw;
    max-width: 100vw;
  }
}

.section-hero .hero__img .hero__img--glow {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  overflow: hidden;
  mask-image: url("https://creatorsawards.wpcdn.pl/2025/img/photos/statuetka-mask.webp");
  mask-size: contain;
  mask-repeat: no-repeat;
}

.section-hero .hero__img .hero__img--glow:after {
  content: "";
  filter: blur(5px);
  background: #fff3;
  width: 80%;
  height: 200%;
  display: block;
  position: absolute;
  top: 0;
  transform: rotate(45deg)translate(-450%);
}

.section-hero .hero__img img {
  object-fit: contain;
  width: 100%;
  max-width: 100%;
}

.section-hero .hero__img p {
  text-align: center;
  padding: 0;
  font-size: 32px;
  line-height: 1.1;
  position: absolute;
  bottom: 0;
  left: 40%;
  transform: translateX(-50%);
}

@media screen and (width <= 1280px) {
  .section-hero .hero__img p {
    bottom: unset;
    font-size: 2.5vw;
    top: 30.5vw;
  }
}

@media screen and (width <= 1020px) {
  .section-hero .hero__img p {
    top: unset;
    font-size: 4vw;
    bottom: 0;
    left: 45%;
    transform: translate(-50%, 10%);
  }
}

.category-teasers, .winners-teasers {
  justify-content: center;
  gap: var(--pb) var(--gap);
  z-index: 1;
  counter-reset: counter;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  position: relative;
}

@media screen and (width <= 520px) {
  .category-teasers, .winners-teasers {
    gap: var(--small-gap);
  }
}

.category-teaser {
  aspect-ratio: 2;
  padding: var(--gap) 30px;
  background-image: url("https://creatorsawards.wpcdn.pl/2025/img/bg/counter-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  align-items: flex-end;
  width: calc(50% - 10px);
  transition: box-shadow .3s, transform .3s;
  display: flex;
  position: relative;
}

@media screen and (width <= 768px) {
  .category-teaser {
    width: 100%;
  }
}

@media screen and (width <= 520px) {
  .category-teaser {
    padding: var(--small-gap);
  }
}

.category-teaser img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.category-teaser .category-teaser__title {
  text-align: center;
  -webkit-user-select: none;
  user-select: none;
  counter-increment: counter;
  align-items: center;
  gap: 1em;
  line-height: 1;
  display: flex;
  position: relative;
}

.category-teaser .category-teaser__title:before {
  content: "0" counter(counter);
  font-size: 3em;
  font-weight: bold;
}

.category-teaser:hover {
  box-shadow: 0 4px 24px 0 rgba(var(--color-main-light-rgb), .6);
  transform: translateY(-2px);
}

.category-teaser:nth-of-type(10) .category-teaser__title:before, .category-teaser:nth-of-type(11) .category-teaser__title:before {
  content: counter(counter);
}

.section-articles {
  position: relative;
}

.article-teasers {
  z-index: 1;
  gap: var(--gap);
  row-gap: var(--row-gap);
  position: relative;
}

@media screen and (width >= 769px) {
  .article-teasers {
    --small-gap: 42px;
  }
}

@media screen and (width >= 1021px) {
  .article-teasers {
    grid-template-columns: 1fr 1.4fr 1fr;
    grid-auto-rows: auto;
    display: grid;
  }
}

@media screen and (width <= 1020px) {
  .article-teasers {
    flex-wrap: wrap;
    display: flex;
  }
}

.article-teaser {
  gap: var(--small-gap);
  flex-direction: column;
  display: flex;
}

.article-teaser:before {
  transition: box-shadow .2s, margin-top .2s;
}

.article-teaser:hover:before {
  box-shadow: 0 0 16px 12px #00000026;
}

.article-teaser:hover .article-teaser__image img {
  filter: brightness();
}

@media screen and (width >= 1021px) {
  .article-teaser {
    margin-top: var(--teaser-margin-top);
  }
}

@media screen and (width <= 1020px) {
  .article-teaser {
    width: calc(50% - var(--gap) / 2);
  }
}

@media screen and (width <= 640px) {
  .article-teaser {
    width: 85%;
  }
}

@media screen and (width <= 1020px) {
  .article-teaser:nth-of-type(3n+2) {
    width: 100%;
  }
}

.article-teaser.teaser-sponsored:before {
  content: "mat. sponsorowany";
  z-index: 1;
  background-color: var(--color-main-dark);
  border-bottom: 2px solid var(--color-main-light);
  padding: 2px 10px;
  font-size: 12px;
  line-height: 1.2;
  display: block;
  position: absolute;
}

.article-teaser__image {
  position: relative;
}

.article-teaser__image img {
  aspect-ratio: 1.55;
  object-fit: cover;
  filter: brightness(.75);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  transition: filter .3s ease-in;
}

.article-teaser__content {
  z-index: 1;
  align-items: flex-start;
  gap: var(--small-gap);
  flex-direction: column;
  display: flex;
  position: relative;
}

.article-teaser__title {
  font-size: 20px;
  font-weight: bold;
}

.article-teaser__lead {
  padding: 0;
}

.article-teaser__button {
  margin: 0 auto 0 0;
}

.btn--load {
  grid-column: 2 / span 1;
}

@media screen and (width >= 1021px) {
  .btn--load {
    margin-top: var(--row-gap);
  }
}

@media screen and (width <= 1020px) {
  .btn--load {
    grid-column: 1 / span 2;
    width: 40%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (width <= 640px) {
  .btn--load {
    width: auto;
  }
}

@media screen and (width <= 440px) {
  .btn--load {
    padding: 0 var(--gap);
  }
}

@media screen and (width <= 340px) {
  .btn--load {
    padding: 0 10px;
  }
}

.error-message {
  color: var(--color-danger);
  font-size: 18px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 150%);
}

.section-wideo {
  position: relative;
}

.wideo-container {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

@media screen and (width <= 768px) {
  .wideo-container {
    width: calc(100% + 2 * var(--ps));
    transform: translateX(calc(-1 * var(--ps)));
  }
}

.wideo-counter {
  width: 100%;
  height: 100%;
}

.wideo-counter img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.counter--hidden .wideo-counter {
  display: none;
}

.wideo-counter__text {
  padding: calc(.35 * var(--section-gap)) var(--gap);
  z-index: 1;
  text-transform: uppercase;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: clamp(14px, 5vw, 40px);
  line-height: 1;
  display: flex;
  position: relative;
}

@media screen and (width <= 768px) {
  .wideo-counter__text {
    inset: 0;
  }
}

.wideo-counter__text > p, .wideo-counter__text .wideo-counter__info {
  text-align: center;
  max-width: 80%;
  padding: 0;
}

@media screen and (width <= 1020px) {
  .wideo-counter__text > p, .wideo-counter__text .wideo-counter__info {
    font-size: 18px;
  }
}

@media screen and (width <= 768px) {
  .wideo-counter__text > p, .wideo-counter__text .wideo-counter__info {
    font-size: 16px;
  }
}

@media screen and (width <= 640px) {
  .wideo-counter__text > p, .wideo-counter__text .wideo-counter__info {
    max-width: 100%;
  }
}

@media screen and (width <= 520px) {
  .wideo-counter__text > p, .wideo-counter__text .wideo-counter__info {
    font-size: 14px;
  }
}

.counter--hidden .wideo-counter__text {
  opacity: 0;
  z-index: -1;
}

.wideo-counter__text .wideo-counter__num {
  text-transform: uppercase;
  font-family: var(--font-headers);
  color: var(--color-main-light);
  justify-content: center;
  align-items: center;
  gap: .25em;
  padding: .25em 0;
  font-size: clamp(48px, 15vw, 200px);
  font-weight: bold;
  line-height: 1;
  display: flex;
}

.wideo-counter__text .wideo-counter__num.font--small {
  font-size: clamp(44px, 13vw, 200px);
}

.wideo-counter__text .btn--main, .wideo-counter__text .header__hamburger, .wideo-counter__text .socials .__js_socialShare, .socials .wideo-counter__text .__js_socialShare {
  padding: 0 var(--gap);
  margin-bottom: var(--pb);
  height: 43px;
  min-height: 43px;
}

.wideo-counter__num {
  position: relative;
}

.wideo-player {
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  inset: 0;
}

.counter--hidden .wideo-player {
  z-index: 1;
  width: 100%;
  display: flex;
  position: relative;
}

.wideo-player .player {
  aspect-ratio: 16 / 9;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.wideo-player .wp-player {
  width: 100% !important;
  height: 100% !important;
}

.wp-player .npp-container.skinDefault .top .topcont, .wp-player .npp-container.skinDefault.nohover:hover .top .topcont {
  top: 0 !important;
}

.wp-player .npp-container.skinDefault .bottom, .wp-player .npp-container.skinDefault.nohover:hover .bottom {
  bottom: 0 !important;
}

.wp-player .npp-container.skinDefault.paused .wp-player__video-container, .wp-player .npp-container.skinMobile.paused .wp-player__video-container {
  position: absolute;
  top: 0;
}

.player {
  position: relative;
}

.winners-teaser {
  width: calc(50% - 10px);
  padding-left: 96px;
  transition: transform .3s;
  position: relative;
}

@media screen and (width <= 1280px) {
  .winners-teaser {
    padding-left: 78px;
  }
}

@media screen and (width <= 1180px) {
  .winners-teaser {
    padding-left: 62px;
  }
}

@media screen and (width <= 1020px) {
  .winners-teaser {
    padding-left: 0;
  }
}

@media screen and (width <= 768px) {
  .winners-teaser {
    width: 100%;
  }
}

.winners-teaser:nth-of-type(10) .winners-teaser__title:before, .winners-teaser:nth-of-type(11) .winners-teaser__title:before {
  content: counter(counter);
}

.winners-teaser:hover {
  transform: translateY(-2px);
}

.winners-teaser:hover .winners-teaser__winner {
  box-shadow: 0 4px 24px 0 rgba(var(--color-main-light-rgb), .6);
}

.winners-teaser__title {
  color: var(--color-main-light);
  counter-increment: counter;
  align-items: center;
  gap: 1em;
  display: flex;
}

@media screen and (width >= 1021px) {
  .winners-teaser__title {
    transform-origin: 0 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: rotate(-90deg)translateY(100%);
  }
}

.winners-teaser__title:before {
  content: "0" counter(counter);
  font-size: 3em;
  font-weight: bold;
}

@media screen and (width <= 1280px) {
  .winners-teaser__title:before {
    font-size: 2.5em;
  }
}

@media screen and (width <= 1180px) {
  .winners-teaser__title:before {
    font-size: 2em;
  }
}

@media screen and (width <= 768px) {
  .winners-teaser__title:before {
    font-size: 3em;
  }
}

.winners-teaser__winner {
  width: 100%;
  transition: box-shadow .3s;
  position: relative;
}

.winners-teaser__winner img {
  width: 100%;
}

.winners-teaser__winner p {
  padding: 10px var(--gap);
  background-image: url("https://creatorsawards.wpcdn.pl/2025/img/bg/counter-bg.jpg");
  background-position: 50% 60%;
  background-size: 500px;
  position: absolute;
  bottom: 0;
  left: 0;
}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

.sponsor-list__wrapper {
  height: calc(var(--header-height)  - 2px);
  white-space: nowrap;
  width: 60%;
  max-width: fit-content;
  position: relative;
  overflow: hidden;
}

.sponsor-list__wrapper:before, .sponsor-list__wrapper:after {
  content: "";
  z-index: 2;
  width: 10%;
  height: 100%;
  position: absolute;
  top: 0;
}

.sponsor-list__wrapper:before {
  background: linear-gradient(to left, rgba(var(--color-main-dark-rgb), 0), var(--color-main-dark));
  left: 0;
}

.sponsor-list__wrapper:after {
  background: linear-gradient(to right, rgba(var(--color-main-dark-rgb), 0), var(--color-main-dark));
  right: 0;
}

.section-form .sponsor-list__wrapper, .section-sponsor .sponsor-list__wrapper {
  width: 100%;
}

.sponsor-list__wrapper.slider--animated .sponsor-list {
  animation: 20s linear .5s infinite alternate slide;
}

.sponsor-list__wrapper.slider--animated .sponsor-list:has(a:first-of-type:last-of-type) {
  animation-play-state: paused;
}

.sponsor-list__wrapper.slider--animated .sponsor-list:has(a:first-of-type:last-of-type):last-of-type, .sponsor-list__wrapper.slider--animated:has(.sponsor-list a:first-of-type:last-of-type):before, .sponsor-list__wrapper.slider--animated:has(.sponsor-list a:first-of-type:last-of-type):after {
  display: none;
}

.sponsor-list__wrapper.slider--animated:hover .sponsor-list {
  animation-play-state: paused;
}

.sponsor-list {
  height: 100%;
  display: inline-block;
}

.sponsor-logo {
  align-items: center;
  height: 100%;
  margin: 0 0 0 50px;
  display: flex;
  position: relative;
}

@media screen and (width <= 768px) {
  .sponsor-logo {
    margin-left: 30px;
  }
}

.sponsor-logo span {
  white-space: break-spaces;
  width: min-content;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  display: inline-block;
  top: 0;
  left: 0;
}

.sponsor-logo img {
  margin-left: var(--gap);
  max-height: 60px;
  position: relative;
}

@media screen and (width <= 768px) {
  .sponsor-logo img {
    max-height: calc(.5 * var(--header-height));
    max-width: 45vw;
  }
}

.previous_edition_link {
  padding-top: var(--section-gap);
}

.previous_edition_link a {
  width: fit-content;
  max-width: 100%;
  margin: auto;
  display: block;
}

.previous_edition_link img {
  max-width: 100%;
  margin: auto;
  display: block;
}

.voting-form {
  justify-content: center;
  align-items: center;
  gap: var(--gap);
  flex-direction: column;
  display: flex;
}

.voting-form .btn--main, .voting-form .header__hamburger, .voting-form .socials .__js_socialShare, .socials .voting-form .__js_socialShare {
  text-align: center;
  white-space: wrap;
  height: 66px;
  padding: 0;
}

.voting-form .voting__info, .voting-form .btn--main, .voting-form .header__hamburger, .voting-form .socials .__js_socialShare, .socials .voting-form .__js_socialShare {
  width: 313px;
  min-width: 313px;
  max-width: 100%;
}

.voting__info-header, .voting__info-error {
  font-weight: bold;
}

.voting__info-error {
  color: var(--color-danger);
}

.voting__info-header {
  color: var(--color-main-light);
}

.voting__info-header:empty {
  display: none;
}

.voting__info-header + .voting__info {
  width: auto;
}

.voting-form__buttons, .voting-form__message {
  justify-content: center;
  gap: var(--gap);
  flex-direction: column;
}

.voting-form__buttons {
  align-items: center;
  display: none;
}

.voting-form__buttons.voting-form__buttons--visible {
  display: flex;
}

.voting-form__message {
  margin-bottom: var(--pb);
  align-items: flex-start;
  display: flex;
}

.voting-form__message img {
  max-width: 100%;
}

.voting-form__message .btn--main, .voting-form__message .header__hamburger, .voting-form__message .socials .__js_socialShare, .socials .voting-form__message .__js_socialShare {
  margin-top: var(--pb);
}

.voting-form__header, .voting-form__checkbox {
  padding-bottom: var(--gap);
  width: 100%;
}

.voting-form__checkbox {
  margin: var(--pt) 0 0;
  align-items: flex-start;
  column-gap: 10px;
  max-width: 880px;
  max-height: 170px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  overflow-y: auto;
}

.voting-form__checkbox input:hover, .voting-form__checkbox label:hover {
  cursor: pointer;
}

.voting-form__checkbox input {
  all: unset;
  background: var(--color-main-dark);
  border: 2px solid #fff;
  border-radius: 0;
  width: 36px;
  min-width: 36px;
  height: 36px;
  position: relative;
}

.voting-form__checkbox input:before, .voting-form__checkbox input:after {
  opacity: 0;
  content: "";
  background-color: var(--color-main-light);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)rotate(45deg);
}

.voting-form__checkbox input:before {
  width: 3px;
  height: 80%;
}

.voting-form__checkbox input:after {
  width: 80%;
  height: 3px;
}

.voting-form__checkbox input:checked:before, .voting-form__checkbox input:checked:after {
  opacity: 1;
}

.voting-form__header {
  text-align: center;
}

.voting-form__wrapper {
  counter-reset: counter;
  width: 100%;
}

.voting-form__wrapper > p:first-child {
  padding-bottom: var(--row-gap);
}

.voting-form__category {
  --title-height: 100px;
  counter-increment: counter;
  max-height: var(--title-height);
  width: 100%;
  transition: max-height .4s;
  position: relative;
}

@media screen and (width <= 768px) {
  .voting-form__category {
    --title-height: 83px;
  }
}

.voting-form__category .btn--main, .voting-form__category .header__hamburger, .voting-form__category .socials .__js_socialShare, .socials .voting-form__category .__js_socialShare {
  margin-bottom: var(--row-gap);
  padding: 10px var(--gap);
  min-width: unset;
  visibility: hidden;
  opacity: 0;
  width: auto;
  max-width: max-content;
  height: auto;
  transition: visibility .2s, opacity .25s ease-in .1s;
  display: flex;
}

.voting-form__category legend {
  border: 1px solid var(--color-main-light);
  height: var(--title-height);
  margin-bottom: var(--gap);
  white-space: break-spaces;
  hyphens: auto;
  background-image: url("https://creatorsawards.wpcdn.pl/2025/img/bg/counter-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  column-gap: 3em;
  width: 100%;
  padding: 0 2em;
  font-weight: 300;
  display: flex;
  position: relative;
}

@media screen and (width <= 640px) {
  .voting-form__category legend {
    padding: 0 var(--title-height) 0 1em;
    column-gap: 1.5em;
  }
}

@media screen and (width <= 380px) {
  .voting-form__category legend {
    padding: 0 var(--title-height) 0 1em;
    column-gap: 1em;
  }
}

.voting-form__category legend:hover {
  cursor: pointer;
}

.voting-form__category legend:before {
  content: "0" counter(counter);
  min-width: 1.9em;
  font-size: 3.2em;
  font-weight: bold;
}

@media screen and (width <= 640px) {
  .voting-form__category legend:before {
    font-size: 2em;
  }
}

@media screen and (width <= 380px) {
  .voting-form__category legend:before {
    font-size: 1.5em;
  }
}

.voting-form__category legend:after {
  opacity: 0;
  inset: 0;
}

.voting-form__category legend span {
  background-color: var(--color-main-light);
  width: calc(var(--title-height)  - 2px);
  height: calc(var(--title-height)  - 2px);
  position: absolute;
  top: 0;
  right: 0;
}

.voting-form__category legend span:after {
  content: "";
  width: calc(var(--title-height) * .4);
  height: calc(var(--title-height) * .4);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: transform .2s;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-70%, 50%)rotate(45deg);
}

.voting-form__category:nth-of-type(10) legend:before, .voting-form__category:nth-of-type(11) legend:before {
  content: counter(counter);
}

.voting-form__category.category--open {
  max-height: 200vh;
}

.voting-form__category.category--open .voting-form__candidates, .voting-form__category.category--open .btn--main, .voting-form__category.category--open .header__hamburger, .voting-form__category.category--open .socials .__js_socialShare, .socials .voting-form__category.category--open .__js_socialShare {
  opacity: 1;
  visibility: visible;
  transition: opacity .35s ease-in .2s;
}

.voting-form__category.category--open legend {
  font-weight: bold;
}

.voting-form__category.category--open legend span:after {
  transform: translate(-70%, 100%)rotate(-135deg);
}

.voting-form__category.category--selected legend {
  font-weight: bold;
}

.voting-form__category.category--selected legend:after {
  opacity: .25;
}

.voting-form__candidates {
  margin-bottom: var(--gap);
  gap: var(--gap);
  visibility: hidden;
  opacity: 0;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  transition: visibility .2s, opacity .25s ease-in .1s;
  display: grid;
}

@media screen and (width <= 1180px) {
  .voting-form__candidates {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (width <= 520px) {
  .voting-form__candidates {
    grid-template-columns: repeat(2, 1fr);
  }
}

.voting-form__candidates label {
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
  flex-direction: column;
  display: flex;
  position: relative;
}

.voting-form__candidates label:hover {
  cursor: pointer;
  color: var(--color-main-light);
}

.voting-form__candidates label:hover:before {
  opacity: .35;
}

.voting-form__candidates label:hover img {
  border: 1px solid var(--color-main-light);
}

.voting-form__candidates label:before, .voting-form__candidates label:after, .voting-form__candidates label img {
  aspect-ratio: 1.26;
  width: 100%;
  max-width: 100%;
}

.voting-form__candidates label:before {
  opacity: 0;
}

.voting-form__candidates label img {
  object-fit: cover;
  border: 1px solid #0000;
}

.voting-form__candidates input {
  z-index: -1;
  opacity: 0;
  position: absolute;
}

.voting-form__candidates input:checked + label {
  color: var(--color-main-light);
}

.voting-form__candidates input:checked + label:before {
  opacity: .35;
}

.voting-form__candidates input:checked + label:after {
  content: "";
  background-image: url("https://creatorsawards.wpcdn.pl/2025/img/bg/checked.svg");
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 35%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.voting-form__candidates input:checked + label img {
  border: 1px solid var(--color-main-light);
}

.element--hidden {
  display: none;
}
/*# sourceMappingURL=styles-creatorsawards.min.css.map */
