@charset "UTF-8";
.matchesinfo {
  display: none; }

.matchesinfo_v2 {
  display: none; }

.home_news .bigone {
  height: 460px;
  display: block;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px; }
  .home_news .bigone .shadow {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0);
    transition: all 1.5s ease;
    box-shadow: inset 0 0 0px 1px #111; }
  .home_news .bigone .title {
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
    transition: all 1.5s ease;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-size: 28px;
    text-shadow: 0 0 0px #fff;
    letter-spacing: 1px; }
  .home_news .bigone:hover .shadow {
    background: rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 50px 0px #111; }
  .home_news .bigone:hover .title {
    color: white;
    text-shadow: 0 0 3px #333; }
.home_news .minilist {
  margin-top: 10px;
  display: flex;
  gap: 10px; }
  .home_news .minilist .one {
    flex: 1;
    height: 120px;
    display: block;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow .25s ease, transform .25s ease;
    text-decoration: none; }
    .home_news .minilist .one .shadow {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0);
      transition: all .5s ease; }
    .home_news .minilist .one .title {
      display: none; }
    .home_news .minilist .one:hover, .home_news .minilist .one.is-active {
      box-shadow: 0 0 0 3px #d42427;
      transform: translateY(-2px); }

@media (max-width: 768px) {
  .home_news .home-news-big {
    display: none !important; }
  .home_news .minilist {
    flex-direction: column;
    gap: 12px; }
    .home_news .minilist .one {
      flex: none;
      width: 100%;
      height: 180px;
      transform: none;
      box-shadow: none; }
      .home_news .minilist .one:hover, .home_news .minilist .one.is-active {
        transform: none;
        box-shadow: none; }
      .home_news .minilist .one .shadow {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 55%); }
      .home_news .minilist .one .title {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 14px 16px;
        font-weight: bold;
        color: #fff;
        font-size: 18px;
        line-height: 1.2;
        z-index: 2; } }
.home_btn {
  display: flex;
  align-items: center;
  justify-content: center; }
  .home_btn .in {
    background: #d42427;
    padding: 5px 20px;
    transform: skewX(-15deg);
    cursor: pointer;
    display: block;
    box-shadow: 0 0 5px 0 #444;
    transition: all 1s ease; }
    .home_btn .in .in2 {
      transform: skewX(15deg);
      color: #fff;
      text-transform: uppercase;
      font-weight: bold;
      font-size: 26px;
      transition: all 1s ease; }
  .home_btn:hover .in {
    transform: skewX(0deg); }
    .home_btn:hover .in .in2 {
      transform: skewX(0deg); }

.banner {
  background-color: #222;
  background-size: cover;
  background-position: center center;
  height: 600px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box; }
  .banner.banner--linked {
    text-decoration: none;
    color: inherit;
    cursor: pointer; }
    .banner.banner--linked .home_btn .in {
      cursor: pointer; }
  .banner .line1 {
    color: #fff;
    font-weight: bold;
    font-size: 32px; }
  .banner .line2 {
    color: #eee;
    font-weight: bold;
    font-size: 36px;
    padding-top: 10px; }
  .banner .home_btn {
    padding: 30px 50px;
    justify-content: flex-start; }

.banner-home {
  position: relative; }
  .banner-home.banner-home--multi {
    height: 600px; }
    .banner-home.banner-home--multi .banner {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      z-index: 1; }
      .banner-home.banner-home--multi .banner.is-active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        z-index: 2; }
      .banner-home.banner-home--multi .banner.is-entering {
        animation: banner-home-enter .55s ease forwards; }
    .banner-home.banner-home--multi.is-shattering .banner.is-active {
      animation: none; }

.banner-shatter {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  pointer-events: none;
  overflow: hidden; }

.banner-shatter__piece {
  position: absolute;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-color: #222;
  transform: translate(0, 0) rotate(0deg);
  opacity: 1;
  animation: banner-shatter-fly .85s ease-in forwards;
  will-change: transform, opacity; }

@keyframes banner-shatter-fly {
  to {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(0.6); } }
@keyframes banner-home-enter {
  from {
    opacity: .15;
    transform: scale(1.03); }
  to {
    opacity: 1;
    transform: scale(1); } }
.banner-home-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  height: 3px;
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden; }
  .banner-home-progress__fill {
    display: block;
    height: 100%;
    width: 0;
    background: #d42427;
    animation-name: banner-home-progress;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    animation-duration: 10s; }

@keyframes banner-home-progress {
  from {
    width: 0%; }
  to {
    width: 100%; } }
.tableHead {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 5px 10px 0; }
  .tableHead .tableBtn {
    padding: 3px 5px;
    background: #222;
    color: #fff;
    cursor: pointer;
    margin-left: 1px; }
    .tableHead .tableBtn:first-child {
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px; }
    .tableHead .tableBtn:last-child {
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px; }
    .tableHead .tableBtn.active {
      background: #d42427; }

.tablelist .one {
  display: flex;
  margin: 0px 0 0px 20px;
  transition: all .5s ease; }
  .tablelist .one:hover {
    margin-left: 0; }
  .tablelist .one .in {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 12px 60px 12px 16px;
    margin-bottom: 12px;
    background: #ffffff;
    position: relative;
    clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0% 100%); }
    .tablelist .one .in .no {
      border-radius: 3px;
      width: 24px;
      height: 24px;
      font-weight: bold;
      color: #fff;
      background: #222;
      display: flex;
      align-items: center;
      justify-content: center; }
    .tablelist .one .in .desc {
      flex: 1;
      padding: 0 10px;
      display: flex;
      align-items: center;
      justify-content: space-between; }
      .tablelist .one .in .desc .name {
        color: #444;
        font-weight: bold; }
      .tablelist .one .in .desc .points {
        color: #444;
        font-weight: bold; }
  .tablelist .one .end {
    height: 10px; }

.newsection {
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
  background-color: #fff;
  background-image: url("/img/new/white_bg.jpg");
  padding: 0 20px; }
  .newsection .listmatches {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    margin: 0 -20px;
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch; }
    .newsection .listmatches.is-dragging .list .one {
      pointer-events: none; }
    .newsection .listmatches .prev, .newsection .listmatches .next {
      position: absolute;
      z-index: 10;
      top: 0;
      bottom: 0;
      width: 100px;
      background: transparent;
      cursor: default;
      opacity: 0; }
    .newsection .listmatches .prev {
      left: 0; }
    .newsection .listmatches .next {
      right: 0; }
    .newsection .listmatches .list {
      position: absolute;
      top: 200px;
      bottom: 50px;
      left: 0;
      background: rgba(255, 255, 255, 0.5);
      width: max-content;
      display: flex;
      will-change: left; }
      .newsection .listmatches .list .one {
        width: 380px;
        margin: 0 20px;
        transform: translateY(-180px); }
        .newsection .listmatches .list .one .top {
          background-repeat: no-repeat;
          background-size: cover;
          background-position: center center;
          background-color: #fff;
          background-image: url("/img/new/onebg.png");
          border: 2px solid rgba(255, 255, 255, 0.7);
          border-bottom: 0;
          box-sizing: border-box;
          transform: translateX(4px) skewX(-3deg);
          height: 150px;
          position: relative; }
          .newsection .listmatches .list .one .top .match-youtube-icon {
            position: absolute;
            top: 8px;
            right: 10px;
            z-index: 15;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.92);
            color: #c00;
            font-size: 20px;
            line-height: 1;
            cursor: pointer;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
            transform: skewX(3deg);
            transition: background .2s ease, transform .2s ease; }
            .newsection .listmatches .list .one .top .match-youtube-icon:hover {
              background: #fff;
              color: #f00;
              transform: skewX(3deg) scale(1.08); }
          .newsection .listmatches .list .one .top .logo, .newsection .listmatches .list .one .top .logo2 {
            position: absolute;
            top: 2px;
            bottom: 2px;
            left: 5px;
            right: 5px;
            transform: skewX(3deg);
            background-size: contain;
            background-position: center center;
            background-repeat: no-repeat;
            transition: all 1.5s ease;
            opacity: 1; }
          .newsection .listmatches .list .one .top .logo2 {
            opacity: 0; }
        .newsection .listmatches .list .one .mid {
          height: 160px;
          background: #eee;
          border: 1px solid #ccc;
          box-shadow: 0 0 5px 0 #222; }
          .newsection .listmatches .list .one .mid .teams {
            border-bottom: 1px solid #ccc;
            padding: 3px;
            min-height: 60px;
            text-align: center;
            line-height: 1;
            font-weight: bold;
            color: #444;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center; }
            .newsection .listmatches .list .one .mid .teams .team1 {
              transform: scale(1.1);
              transition: all .5s ease;
              display: block; }
            .newsection .listmatches .list .one .mid .teams .vs {
              color: #aaa;
              transition: all 1.5s ease; }
            .newsection .listmatches .list .one .mid .teams .team2 {
              transform: scale(0.9);
              opacity: .8;
              transition: all .5s ease;
              display: block; }
          .newsection .listmatches .list .one .mid .dates {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 5px; }
            .newsection .listmatches .list .one .mid .dates .oneDate {
              font-size: 12px;
              color: #444; }
          .newsection .listmatches .list .one .mid .score {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 10px; }
            .newsection .listmatches .list .one .mid .score .sbox {
              width: 36px;
              height: 36px;
              background: #ccc;
              color: #444;
              display: flex;
              align-items: center;
              justify-content: center;
              border-radius: 5px;
              font-weight: bold;
              font-size: 20px;
              box-shadow: 0 0 0 2px #ccc;
              border: 1px dashed rgba(255, 255, 255, 0.5); }
              .newsection .listmatches .list .one .mid .score .sbox.win {
                background: #176a17;
                box-shadow: 0 0 0 2px #176a17;
                color: #fff; }
              .newsection .listmatches .list .one .mid .score .sbox.lose {
                background: #d42427;
                box-shadow: 0 0 0 1px #d42427;
                color: #fff; }
        .newsection .listmatches .list .one:hover .top .logo {
          opacity: 0; }
        .newsection .listmatches .list .one:hover .top .logo2 {
          opacity: 1; }
        .newsection .listmatches .list .one:hover .mid .teams .team1 {
          transform: scale(0.9);
          opacity: .8; }
        .newsection .listmatches .list .one:hover .mid .teams .vs {
          color: #d42427; }
        .newsection .listmatches .list .one:hover .mid .teams .team2 {
          transform: scale(1.1);
          opacity: 1; }
  .newsection .bar {
    margin: 0 -20px;
    padding-top: 35px;
    min-height: 100px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center bottom;
    background-image: url("/img/new/bar.png"); }
  .newsection.two_box {
    display: flex;
    gap: 10px;
    flex: 1; }
    .newsection.two_box .one {
      flex: 1; }
  .newsection .sectionHead {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative; }
    .newsection .sectionHead:not(.secend)::before {
      content: '';
      position: absolute;
      top: calc(50% - 1px);
      left: -20px;
      width: 20px;
      height: 1px;
      background: #d42427; }
    .newsection .sectionHead h3 {
      text-transform: uppercase;
      color: #444;
      font-size: 26px; }
    .newsection .sectionHead .line {
      height: 1px;
      background: #222;
      flex: 1; }
    .newsection .sectionHead a {
      text-transform: uppercase;
      color: #444;
      font-size: 12px;
      letter-spacing: 2px; }
      .newsection .sectionHead a i {
        color: #d42427; }
  .newsection.dark {
    background-color: #000;
    background-image: url("/img/new/dark_bg.jpg"); }
    .newsection.dark .sectionHead h3 {
      color: #fff; }
    .newsection.dark .sectionHead .line {
      background: #fff; }
    .newsection.dark .sectionHead a {
      color: #fff; }
  .newsection .box {
    padding: 10px; }

.marquee-wrapper {
  background: #222;
  overflow: hidden;
  width: 100%; }
  .marquee-wrapper.marquee-static .marquee {
    justify-content: center;
    width: 100%; }

.marquee {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding: 15px 0;
  margin: 0;
  white-space: nowrap;
  color: #fff;
  font-size: 18px;
  width: max-content; }
  .marquee li {
    flex-shrink: 0;
    font-size: 16px;
    letter-spacing: 2px; }
    .marquee li a {
      color: inherit;
      text-decoration: none; }
      .marquee li a:hover {
        text-decoration: underline; }
  .marquee .dot::before {
    content: "•";
    color: #fff; }
  .marquee .red {
    color: #ff0000;
    font-weight: 700; }
  .marquee .orange {
    color: #ffaa00;
    font-weight: 700; }

.teamsBox {
  display: flex;
  justify-content: space-around; }
  .teamsBox a {
    display: block;
    height: 220px;
    border: 5px solid #fff;
    box-shadow: 0 0 3px 1px #aaa;
    border-radius: 15px;
    margin-bottom: 20px;
    flex: 0 0 30%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-color: #fff; }
  .teamsBox + .home_btn {
    margin-bottom: 20px; }

.ytIframe {
  max-width: 1200px;
  margin: 0 auto; }

@media (max-width: 768px) {
  .newsection .listmatches .list .one {
    width: calc(100vw - 60px);
    max-width: 380px;
    margin-left: 15px;
    margin-right: 15px; }

  .newsection .listmatches .list .one.is-logo-swap .top .logo {
    opacity: 0; }
  .newsection .listmatches .list .one.is-logo-swap .top .logo2 {
    opacity: 1; }
  .newsection .listmatches .list .one.is-logo-swap .mid .teams .team1 {
    transform: scale(0.9);
    opacity: .8; }
  .newsection .listmatches .list .one.is-logo-swap .mid .teams .vs {
    color: #d42427; }
  .newsection .listmatches .list .one.is-logo-swap .mid .teams .team2 {
    transform: scale(1.1);
    opacity: 1; } }
/* Strona główna index_new — tylko sekcje nad „Nasi partnerzy” */
.index-new-top .newsection.dark.two_box {
  background-size: cover;
  background-position: center center;
  padding-bottom: 30px;
  overflow: hidden; }
.index-new-top .newsection.dark.two_box .one:last-child {
  padding-top: 16px; }
  .index-new-top .newsection.dark.two_box .one:last-child .box {
    padding-top: 8px; }
.index-new-top .newssection {
  margin: 0; }
  .index-new-top .newssection .inside .switchcontent {
    min-height: 380px;
    padding: 40px 0 70px; }
    .index-new-top .newssection .inside .switchcontent .list {
      margin: 10px 0;
      min-height: 360px;
      padding-top: 12px; }
    .index-new-top .newssection .inside .switchcontent .list .one .name {
      height: 340px; }
@media (max-width: 1024px) {
  .index-new-top .newsection.dark.two_box {
    padding-bottom: 40px; }
    .index-new-top .newsection.dark.two_box .one + .one {
      padding-top: 40px;
      margin-top: 16px; }
  .index-new-top .newssection .inside .switchcontent {
    min-height: 300px;
    padding: 32px 0 90px !important; }
    .index-new-top .newssection .inside .switchcontent .list {
      min-height: 300px; }
    .index-new-top .newssection .inside .switchcontent .list .one .name {
      height: 280px; }
  .index-new-top .newsection.two_box {
    flex-direction: column;
    gap: 0; }
    .index-new-top .newsection.two_box .one {
      flex: none;
      width: 100%;
      min-width: 0; }
  .index-new-top .teamsBox {
    flex-direction: column;
    align-items: center;
    gap: 16px; }
    .index-new-top .teamsBox a {
      flex: none;
      width: 100%;
      max-width: 340px;
      height: 200px; }
  .index-new-top .banner-home--multi {
    height: 420px; }
  .index-new-top .banner-home:not(.banner-home--multi) > .banner {
    height: 420px;
    padding: 16px; }
  .index-new-top .banner-home--multi > .banner {
    padding: 16px; }
    .index-new-top .banner-home--multi > .banner .line1 {
      font-size: 24px; }
    .index-new-top .banner-home--multi > .banner .line2 {
      font-size: 26px; }
    .index-new-top .banner-home--multi > .banner .home_btn {
      padding: 20px 0; }
  .index-new-top .tableHead {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px; }
  .index-new-top .tablelist .one .in {
    padding-right: 24px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 100%, 0 100%); } }
@media (max-width: 768px) {
  .index-new-top .newsection {
    padding: 0 12px; }
    .index-new-top .newsection .listmatches {
      margin: 0 -12px; }
    .index-new-top .newsection .bar {
      margin: 0 -12px; }
  .index-new-top .banner-home--multi {
    height: 360px; }
  .index-new-top .banner-home:not(.banner-home--multi) > .banner {
    height: 360px; }
  .index-new-top .banner-home--multi > .banner .line1 {
    font-size: 20px; }
  .index-new-top .banner-home--multi > .banner .line2 {
    font-size: 22px; }
  .index-new-top .banner-home--multi > .banner .home_btn {
    padding: 16px 0; }
    .index-new-top .banner-home--multi > .banner .home_btn .in .in2 {
      font-size: 20px; }
  .index-new-top .sectionHead {
    flex-wrap: wrap;
    gap: 8px; }
    .index-new-top .sectionHead h3 {
      font-size: 20px; }
  .index-new-top .marquee {
    font-size: 15px;
    gap: 20px; }
    .index-new-top .marquee li {
      font-size: 14px; }
  .index-new-top .newssection .inside .switchcontent {
    min-height: 260px;
    padding: 24px 0 110px !important; }
    .index-new-top .newssection .inside .switchcontent .list {
      min-height: 260px;
      margin: 8px 0; }
    .index-new-top .newssection .inside .switchcontent .list .one .name {
      height: 240px; } }

/*# sourceMappingURL=strona_2026.css.map */
