﻿@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote,
dl, dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  background-color: #fff;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture {
  max-width: 100%;
  display: inline-block;
  width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid blue;
  outline-offset: 2px;
}

article,
aside,
footer,
header,
nav,
section,
main,
figure {
  display: block;
  width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3 {
  word-break: break-word;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

h4, h5, li, span, a {
  word-wrap: hyphenate;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ededed;
  padding: 0;
  margin: 0;
}
hr:last-child {
  margin-bottom: 0;
}

@font-face {
  font-family: "ALigaDisplay";
  src: url("/fonts/ALigaDisplay-Regular.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
.display-font {
  font-family: "ALigaDisplay", sans-serif;
  text-transform: uppercase;
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  width: 100%;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: scroll;
}

.module-header {
  font-size: 32px;
  font-weight: bold;
  width: fit-content;
}
@media only screen and (max-width: 1023px) {
  .module-header {
    font-size: 16px;
  }
}

.cookie-consent-btn {
  position: fixed;
  bottom: 10px;
  left: 10px;
  background-color: var(--color-primary);
  border-radius: 24px;
  height: 48px;
  width: 48px;
  transition: ease-in-out all 200ms;
  cursor: pointer;
  /*color: $color--white;*/
  font-size: 14px;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 30;
}
.cookie-consent-btn img {
  height: 24px;
}
.cookie-consent-btn:hover {
  background-color: var(--color-primary-light);
}

.consent-placeholder {
  border: 2px solid var(--color-primary);
  padding: 30px;
  margin-top: 30px;
  cursor: pointer;
  display: none;
}
.consent-placeholder.show {
  display: block;
}

.didomi-popup-notice-logo {
  display: inline-block;
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

.logo-fixed {
  margin-left: 65px;
  opacity: 1;
  transition: all 0.3s ease;
  height: 80px;
  display: flex;
  background-color: var(--color-primary);
  padding: 5px;
}
.logo-fixed a {
  display: flex;
}
.logo-fixed img {
  transition: height 0.3s ease;
  height: 100%;
}
@media only screen and (max-width: 1023px) {
  .logo-fixed {
    margin-left: 0;
    height: 44px;
    width: 107px;
    padding: 3px;
    flex-grow: 0;
    flex-shrink: 0;
  }
}

._homepage .logo-fixed {
  transform: translateY(-100%);
}
._homepage .logo-fixed.fixed {
  transform: translateY(0%);
}

header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
header .header-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
header .header-inner .logo-fixed img {
  width: 208px;
  height: 70px;
}
@media only screen and (max-width: 1023px) {
  header .header-inner .logo-fixed img {
    height: 38px;
    width: 101px;
  }
}
header .header-inner .header-inner-right {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding-top: 20px;
  padding-right: 20px;
}
header .header-inner .header-inner-right .main-nav-toggle {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-top: -20px;
  margin-right: -20px;
}
header .header-inner .header-inner-right .main-nav-toggle svg {
  height: 38px;
}

.club-list, .club-list-mobile {
  display: flex;
  gap: 18px;
}
.club-list .club, .club-list-mobile .club {
  position: relative;
  cursor: pointer;
  height: 38px;
  flex-grow: 0;
  flex-shrink: 0;
  width: 38px;
}
.club-list .club img, .club-list-mobile .club img {
  height: 38px;
}
.club-list .club .tooltip, .club-list-mobile .club .tooltip {
  display: none;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  padding: 10px;
  color: #ffffff;
  width: fit-content;
  white-space: nowrap;
}
.club-list .club .tooltip::after, .club-list-mobile .club .tooltip::after {
  position: absolute;
  top: -16px;
  height: 0;
  width: 0;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: var(--color-primary);
  content: "";
}
.club-list .club:hover .tooltip, .club-list-mobile .club:hover .tooltip {
  display: block;
}

@media only screen and (max-width: 1023px) {
  .club-list {
    display: none;
  }
}

.club-list-mobile {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  gap: 1rem; /* optional spacing between items */
  padding: 0.5rem; /* optional padding */
  scrollbar-width: thin; /* for Firefox */
  background-color: var(--color-primary);
  display: none;
}
@media only screen and (max-width: 1023px) {
  .club-list-mobile {
    display: flex;
  }
}
@media only screen and (min-width: 1024px) {
  .club-list-mobile {
    display: none;
  }
}
.club-list-mobile .club a {
  height: 100%;
  display: block;
}
.club-list-mobile .club:hover .tooltip {
  display: none;
}

.club-list-mobile::-webkit-scrollbar {
  height: 6px;
}

.club-list-mobile::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.club-list-mobile > * {
  flex: 0 0 auto; /* prevent items from shrinking */
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

footer {
  position: relative;
  background-color: #000000;
}
footer .bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
footer .footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  color: #ffffff;
  padding: 60px 0;
}
footer .footer-inner .footer-content {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
footer .footer-inner .footer-content .footer-logo {
  width: 250px;
  text-align: center;
  background-color: var(--color-primary);
  padding: 5px;
}
footer .footer-inner .footer-content .footer-socials {
  display: flex;
  gap: 20px;
}
footer .footer-inner .footer-content .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
footer .footer-inner .footer-content .footer-contact > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
footer .footer-inner .footer-content .footer-contact > div label {
  font-size: 15px;
  color: #C4C4C8;
  text-transform: uppercase;
}

.partners {
  background-color: #ffffff;
  color: #C4C4C8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
.partners .partners-wrap {
  display: flex;
  gap: 30px;
  width: 80%;
  justify-content: center;
  border-top: 2px solid #C4C4C8;
  border-bottom: 2px solid #C4C4C8;
  padding: 30px;
  margin: 30px 0;
}
/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

.grid-wrap {
  display: flex;
}
.grid-wrap .grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.grid-wrap .grid.main {
  padding-bottom: 60px;
}
.grid-wrap .row {
  display: flex;
  max-width: 1280px;
  width: 100%;
  justify-content: center;
  /*&.padding-inside + .no-space-above{
      margin-top:-60px;
  }*/
}
.grid-wrap .row.full {
  max-width: 100%;
}
.grid-wrap .row.padding-inside .col-wrap {
  padding: 120px 0;
}
@media only screen and (max-width: 1024px) {
  .grid-wrap .row.padding-inside .col-wrap {
    padding: 30px;
  }
}
.grid-wrap .row.no-padding-top .col-wrap {
  padding: 0 40px 30px 40px;
}
.grid-wrap .row.no-space-above {
  margin-top: -30px;
}
.grid-wrap .row .col-wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 1024px) {
  .grid-wrap .row .col-wrap {
    flex-direction: column;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.grid-wrap .col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.grid-wrap .col.col-8 {
  /*max-width: (100 / 3) * 2%;*/
}
.grid-wrap .col.col-6 {
  /*max-width: 50%;*/
}
.grid-wrap .col.col-4 {
  /*  max-width: (100 / 3) * 1%;
    width: (100 / 3) * 1%;*/
}
.grid-wrap .col.col-3 {
  /*   max-width: 25%;
     width: 25%;*/
}
.grid-wrap.hasRight .grid {
  padding-right: 30px;
}

@media only screen and (max-width: 1023px) {
  .grid-wrap {
    display: block;
  }
  .grid-wrap .grid,
  .grid-wrap .right-grid {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    margin-bottom: 60px;
  }
  .grid-wrap .row {
    display: flex;
    flex-direction: column;
  }
  .grid-wrap .row .col {
    padding: 0;
    width: 100%;
  }
  .grid-wrap .row .col.col-4, .grid-wrap .row .col.col-6, .grid-wrap .row .col.col-8 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .grid-wrap.hasRight .grid {
    padding-right: 0;
  }
}
.row {
  background-size: cover;
  background-position: center;
}
.row[data-bg=bgcol_p] {
  background-color: var(--color-primary);
}
.row[data-bg=bgcol_b] {
  background-color: #000000;
}
.row[data-bg=bgcol_w] {
  background-color: #ffffff;
}
.row[data-bg=bgcol_g] {
  background-color: #C4C4C8;
}
.row[data-headlinecolor=p] .color-by-container {
  color: var(--color-primary);
}
.row[data-headlinecolor=b] .color-by-container {
  color: #000000;
}
.row[data-headlinecolor=w] .color-by-container {
  color: #ffffff;
}
.row[data-headlinecolor=g] .color-by-container {
  color: #C4C4C8;
}

.test-element {
  background-color: chocolate;
  height: 300px;
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
._homepage .row .col-wrap .col {
  align-items: center;
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

._contentpage {
  background-color: #000000;
}
._contentpage .blockgrid {
  max-width: 1280px;
  background-color: #ffffff;
  margin: 0 auto;
  margin-top: 180px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 1023px) {
  ._contentpage .blockgrid {
    margin-top: 0;
    max-width: 100%;
  }
}
._contentpage .blockgrid .grid-wrap {
  padding: 0 80px;
  padding-top: 80px;
}
@media only screen and (max-width: 1023px) {
  ._contentpage .blockgrid .grid-wrap {
    padding: 80px 30px 0 30px;
  }
}
@media only screen and (max-width: 1023px) {
  ._contentpage .blockgrid .grid-wrap .grid .row .col-wrap {
    padding: 0;
  }
}
._contentpage .blockgrid .grid-wrap .grid .row.padding-inside .col-wrap {
  padding: 60px 60px;
}
@media only screen and (max-width: 1023px) {
  ._contentpage .blockgrid .grid-wrap .grid .row.padding-inside .col-wrap {
    padding: 30px 0;
  }
}
._contentpage .contentpage-header {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 60px 80px;
}
@media only screen and (max-width: 1023px) {
  ._contentpage .contentpage-header {
    padding: 90px 30px 60px 30px;
  }
}
._contentpage .contentpage-header h1 {
  font-size: 48px;
}
@media only screen and (max-width: 1023px) {
  ._contentpage .contentpage-header h1 {
    font-size: 24px;
  }
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

._matchpage .matchpage {
  background-color: #000000;
}
._matchpage .matchpage .match-info {
  position: relative;
  overflow: hidden;
  /*height: calc(100vh - 100px);*/
  width: 100%;
  aspect-ratio: 16/7;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  ._matchpage .matchpage .match-info {
    aspect-ratio: unset;
    padding-top: 100px;
    flex-direction: column;
    border-bottom: 30px solid var(--color-primary);
  }
}
._matchpage .matchpage .match-info .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
}
._matchpage .matchpage .match-info .result {
  width: 1220px;
  max-width: 100%;
  display: grid;
  grid-template-columns: 3fr 2fr 3fr;
  gap: 30px;
  align-items: start;
  justify-content: center;
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  ._matchpage .matchpage .match-info .result {
    grid-template-columns: 4fr 1fr 4fr;
    gap: 20px;
  }
}
._matchpage .matchpage .match-info .result .team {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  position: relative;
  cursor: pointer;
}
._matchpage .matchpage .match-info .result .team a {
  height: 0;
  position: absolute;
}
._matchpage .matchpage .match-info .result .team .logo {
  height: 200px;
  width: 200px;
}
@media only screen and (max-width: 1023px) {
  ._matchpage .matchpage .match-info .result .team .logo {
    height: 48px;
    width: 48px;
  }
}
._matchpage .matchpage .match-info .result .team .position {
  font-size: 24px;
}
@media only screen and (max-width: 1023px) {
  ._matchpage .matchpage .match-info .result .team .position {
    font-size: 10px;
  }
}
._matchpage .matchpage .match-info .result .team .team-name {
  font-size: 32px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  ._matchpage .matchpage .match-info .result .team .team-name {
    font-size: 12px;
  }
}
._matchpage .matchpage .match-info .result .score {
  font-size: 66px;
  padding-top: 64px;
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
@media only screen and (max-width: 1023px) {
  ._matchpage .matchpage .match-info .result .score {
    font-size: 20px;
  }
}
._matchpage .matchpage .match-info .time-place {
  position: absolute;
  bottom: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  ._matchpage .matchpage .match-info .time-place {
    position: relative;
    bottom: unset;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    padding: 30px;
    text-align: center;
    font-size: 10px;
  }
}
._matchpage .matchpage .match-info .time-place .stadium {
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  ._matchpage .matchpage .match-info .time-place .stadium {
    text-align: center;
  }
}
._matchpage .matchpage .match-info .time-place .datetime {
  text-align: right;
}
@media only screen and (max-width: 1023px) {
  ._matchpage .matchpage .match-info .time-place .datetime {
    text-align: center;
  }
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

._clubpage .clubpage {
  background-color: #000000;
  background-color: #000000;
  /*.clubpage {
      .club-wrap {
          padding: 2rem;
          background-color: $color-black;
          margin-top: 80px;

          img {
              max-width: 300px;
          }
      }

      .pool-score-wrap {
          background-color: $color-white;
          padding: 2rem;
          color: $color-black;
      }

      .news-module {
          background-color: $color-black;
          padding: 2rem;
          color: $color-black;
      }

      .squad-wrap {
          padding: 2rem;
          width: 100%;
          display: flex;
          flex-direction: column;
          gap: 80px;
          background-color: $color-black;
          color: $color-white;

          .players {
              .player {
                  display: grid;
                  grid-template-columns: 2fr 4fr 2fr 2fr;
                  align-items: center;
                  padding: 12px 10px;

                  img {
                      max-width: 150px;
                  }

                  .player-name,
                  .player-position,
                  .player-number {
                  }
              }
          }
      }

  }*/
}
._clubpage .clubpage .club-info {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/7;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1023px) {
  ._clubpage .clubpage .club-info {
    aspect-ratio: unset;
    flex-direction: column;
    justify-content: center;
  }
}
._clubpage .clubpage .club-info .bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  z-index: 0;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: top right;
}
._clubpage .clubpage .club-info .club-img {
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  ._clubpage .clubpage .club-info .club-img {
    display: none;
  }
}
._clubpage .clubpage .club-info .logo-name {
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  bottom: 50px;
  left: 50px;
  align-items: center;
  gap: 30px;
  margin-bottom: -40px;
  flex-shrink: 0;
  flex-grow: 0;
}
@media only screen and (max-width: 1023px) {
  ._clubpage .clubpage .club-info .logo-name {
    position: relative;
    margin: 0;
    padding: 0;
    bottom: unset;
    flex-direction: column;
    left: unset;
    padding-top: 100px;
  }
}
._clubpage .clubpage .club-info .logo-name .name {
  font-size: 100px;
  margin-top: 16px;
  font-size: clamp(3.75rem, 4vw, 6.25rem);
}
@media only screen and (max-width: 1023px) {
  ._clubpage .clubpage .club-info .logo-name .name {
    font-size: 24px;
    margin-top: 0;
    padding: 0 30px;
    text-align: center;
  }
}
._clubpage .clubpage .club-info .logo-name .clublogo {
  height: 100px;
  flex: 0 0 100px;
  display: flex;
}
._clubpage .clubpage .club-info .logo-name .clublogo img {
  height: 100px;
  width: 100px;
}
._clubpage .clubpage .club-info .stadium-position {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  position: absolute;
  bottom: 50px;
  right: 50px;
  align-items: flex-end;
  gap: 20px;
  justify-items: flex-end;
  margin-bottom: -40px;
}
@media only screen and (max-width: 1023px) {
  ._clubpage .clubpage .club-info .stadium-position {
    position: relative;
    margin: 0;
    padding: 0;
    bottom: unset;
    right: unset;
    padding-top: 60px;
    width: 100%;
    padding-right: 30px;
  }
}
._clubpage .clubpage .club-info .stadium-position .stadium {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  max-width: 500px;
  text-align: right;
  font-size: 20px;
}
._clubpage .clubpage .club-info .stadium-position .stadium label {
  font-size: 14px;
}
@media only screen and (max-width: 1023px) {
  ._clubpage .clubpage .club-info .stadium-position .stadium {
    max-width: 80%;
  }
}
._clubpage .clubpage .club-info .stadium-position .position {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  font-size: 100px;
}
._clubpage .clubpage .club-info .stadium-position .position label {
  font-size: 14px;
}
@media only screen and (max-width: 1023px) {
  ._clubpage .clubpage .club-info .stadium-position .position {
    font-size: 60px;
  }
}
._clubpage .clubpage .instagram-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

._playerpage {
  background-color: #000000;
}
._playerpage .playerpage {
  display: flex;
  flex-direction: column;
}
._playerpage .playerpage .player-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/7;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media only screen and (max-width: 1023px) {
  ._playerpage .playerpage .player-hero {
    aspect-ratio: unset;
    flex-direction: column;
    align-items: flex-start;
  }
}
._playerpage .playerpage .player-hero .bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  z-index: -1;
  background-size: 60vw;
  background-position: top right;
  background-repeat: no-repeat;
}
._playerpage .playerpage .player-hero .player-img {
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-left: none;
  cursor: pointer;
}
@media only screen and (max-width: 1023px) {
  ._playerpage .playerpage .player-hero .player-img {
    width: 100%;
  }
}
._playerpage .playerpage .player-hero .player-img .img-wrap {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 375px;
  aspect-ratio: 3/4;
  background-color: #000000;
}
@media only screen and (max-width: 1023px) {
  ._playerpage .playerpage .player-hero .player-img .img-wrap {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
._playerpage .playerpage .player-hero .logo-name-wrap {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  ._playerpage .playerpage .player-hero .logo-name-wrap {
    background-color: var(--color-primary);
  }
}
._playerpage .playerpage .player-hero .logo-name-wrap .clublogo {
  width: 120px;
  margin-left: 30px;
  margin-bottom: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 1023px) {
  ._playerpage .playerpage .player-hero .logo-name-wrap .clublogo {
    margin-top: 20px;
  }
}
._playerpage .playerpage .player-hero .logo-name-wrap .name-number {
  background-color: var(--color-primary);
  height: fit-content;
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  gap: 10px;
}
@media only screen and (max-width: 1023px) {
  ._playerpage .playerpage .player-hero .logo-name-wrap .name-number {
    padding-bottom: 15px;
  }
}
._playerpage .playerpage .player-hero .logo-name-wrap .name-number .name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 30px;
}
._playerpage .playerpage .player-hero .logo-name-wrap .name-number .name .firstname {
  font-size: 32px;
}
._playerpage .playerpage .player-hero .logo-name-wrap .name-number .name .lastname {
  font-size: 40px;
}
@media only screen and (max-width: 1023px) {
  ._playerpage .playerpage .player-hero .logo-name-wrap .name-number .name .firstname {
    font-size: 24px;
  }
  ._playerpage .playerpage .player-hero .logo-name-wrap .name-number .name .lastname {
    font-size: 32px;
  }
}
._playerpage .playerpage .player-hero .logo-name-wrap .name-number .number {
  display: flex;
  align-items: center;
  font-size: 120px;
  margin-right: 30px;
}
@media only screen and (max-width: 1023px) {
  ._playerpage .playerpage .player-hero .logo-name-wrap .name-number .number {
    font-size: 40px;
  }
}
._playerpage .playerpage .player-info {
  display: flex;
}
@media only screen and (max-width: 1023px) {
  ._playerpage .playerpage .player-info {
    flex-direction: column;
  }
}
._playerpage .playerpage .player-info .player-info-item {
  height: 500px;
  flex: 0 0 20%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
@media only screen and (max-width: 1023px) {
  ._playerpage .playerpage .player-info .player-info-item {
    gap: 0px;
    padding: 30px;
  }
}
._playerpage .playerpage .player-info .player-info-item:nth-of-type(even) {
  background: #ffffff;
  color: #000000;
}
._playerpage .playerpage .player-info .player-info-item:nth-of-type(odd) {
  background: #000000;
  color: #ffffff;
}
._playerpage .playerpage .player-info .player-info-item:nth-child(3) {
  background-color: var(--color-primary);
  color: #ffffff;
}
._playerpage .playerpage .player-info .player-info-item .info {
  font-size: 32px;
  text-align: center;
}
._playerpage .playerpage .player-info .player-info-item .info.smaller {
  font-size: 24px;
}
._playerpage .playerpage .player-info .player-info-item .info.bigger {
  font-size: 48px;
}
._playerpage .playerpage .player-info .player-info-item .label {
  text-transform: uppercase;
  font-size: 24px;
  text-align: center;
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

._newsFolder .newsfolder .newsfolder-header {
  padding-top: 100px;
  background-color: #000000;
  color: #ffffff;
  width: 100%;
  aspect-ratio: 16/7;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
._newsFolder .newsfolder .newsfolder-header .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
}
._newsFolder .newsfolder .newsfolder-header .logo {
  margin-left: 60px;
  width: 200px;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  ._newsFolder .newsfolder .newsfolder-header .logo {
    margin-left: 20px;
  }
}
._newsFolder .newsfolder .newsfolder-header h1 {
  font-size: clamp(3.75rem, 4vw, 6.25rem);
  z-index: 1;
  position: relative;
  margin-left: 60px;
}
@media only screen and (max-width: 1023px) {
  ._newsFolder .newsfolder .newsfolder-header h1 {
    font-size: 24px;
    margin-left: 20px;
  }
}
._newsFolder .newsfolder .newsfolder-header .year-month {
  display: flex;
  flex-direction: column;
  z-index: 2;
  position: relative;
}
._newsFolder .newsfolder .newsfolder-header .year-month .year-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background-color: var(--color-primary);
  padding: 10px 200px;
}
@media only screen and (max-width: 1023px) {
  ._newsFolder .newsfolder .newsfolder-header .year-month .year-list {
    padding: 10px 30px;
  }
}
._newsFolder .newsfolder .newsfolder-header .year-month .year-list .year {
  font-size: 32px;
}
@media only screen and (max-width: 1023px) {
  ._newsFolder .newsfolder .newsfolder-header .year-month .year-list .year {
    font-size: 18px;
  }
}
._newsFolder .newsfolder .newsfolder-header .year-month .year-list .year.selected {
  text-decoration: underline;
}
._newsFolder .newsfolder .newsfolder-header .year-month .month-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #ffffff;
  color: #000000;
  justify-content: center;
  padding: 10px 200px;
}
@media only screen and (max-width: 1023px) {
  ._newsFolder .newsfolder .newsfolder-header .year-month .month-list {
    padding: 10px 30px;
  }
}
._newsFolder .newsfolder .newsfolder-header .year-month .month-list .month {
  font-size: 24px;
}
@media only screen and (max-width: 1023px) {
  ._newsFolder .newsfolder .newsfolder-header .year-month .month-list .month {
    font-size: 16px;
  }
}
._newsFolder .newsfolder .newsfolder-header .year-month .month-list .month.selected {
  text-decoration: underline;
}
._newsFolder .newsfolder .newsitem-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}
._newsFolder .newsfolder .newsitem-list h2 {
  color: #ffffff;
}
._newsFolder .newsfolder .newsitem-list .news-item a {
  background-color: #ffffff;
  display: flex;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 1023px) {
  ._newsFolder .newsfolder .newsitem-list .news-item a {
    flex-direction: column;
  }
}
._newsFolder .newsfolder .newsitem-list .news-item a .img-wrap {
  width: 360px;
  aspect-ratio: 16/10;
  max-width: 100%;
}
._newsFolder .newsfolder .newsitem-list .news-item a .news-item-inner {
  flex: 1 1 calc(100% - 360px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}
._newsFolder .newsfolder .newsitem-list .news-item a .news-item-inner .datetime {
  color: #888888;
  font-size: 12px;
  padding-bottom: 10px;
}
._newsFolder .newsfolder .newsitem-list .news-item a .news-item-inner .headline {
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  padding-bottom: 10px;
}
._newsFolder .newsfolder .newsitem-list .news-item a .news-item-inner .subheader {
  font-size: 12px;
  padding-bottom: 10px;
}
._newsFolder .newsfolder .newsitem-list .news-item a .news-item-inner .button-wrap {
  padding: 10px;
  padding-right: 30px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 1023px) {
  ._newsFolder .newsfolder .newsitem-list .news-item a .news-item-inner .button-wrap {
    position: relative;
    bottom: unset;
    right: unset;
    padding: 0;
    padding-top: 20px;
  }
}
._newsFolder .newsfolder .newsitem-list .news-item a .news-item-inner .button-wrap .read-more {
  font-family: "ALigaDisplay";
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
._newsFolder .newsfolder .newsitem-list .news-item a .news-item-inner .button-wrap .read-more .arrow {
  font-size: 24px;
  line-height: 16px;
  -webkit-text-stroke-width: 1px;
  /*-webkit-text-stroke-color: black;*/
}
._newsFolder .newsfolder .no-news {
  color: #C4C4C8;
  text-align: center;
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

._newsItem .newsitem .img-title-wrap {
  position: relative;
}
._newsItem .newsitem .img-wrap {
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  ._newsItem .newsitem .img-wrap {
    height: unset;
    aspect-ratio: 16/9;
  }
}
._newsItem .newsitem .title {
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 32px;
  padding: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  hyphens: auto;
}
@media only screen and (max-width: 1280px) {
  ._newsItem .newsitem .title {
    font-size: 24px;
    padding: 20px;
  }
}
@media only screen and (max-width: 1023px) {
  ._newsItem .newsitem .title {
    font-size: 18px;
    padding: 20px;
    position: relative;
  }
}
._newsItem .newsitem .news-item-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  max-width: 1080px;
  padding: 80px 40px;
}
@media only screen and (max-width: 1023px) {
  ._newsItem .newsitem .news-item-content {
    padding: 60px 0px;
  }
}
._newsItem .newsitem .news-item-content .datetime {
  color: #C4C4C8;
  font-size: 20px;
  text-transform: uppercase;
  padding-bottom: 60px;
}
._newsItem .newsitem .news-item-content .subheader {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 30px;
}
@media only screen and (max-width: 1023px) {
  ._newsItem .newsitem .news-item-content .subheader, ._newsItem .newsitem .news-item-content .datetime {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
  }
}
._newsItem .newsitem .some-links {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
._newsItem .newsitem .some-links .some-link {
  cursor: pointer;
}
._newsItem .newsitem .some-links .some-link.copylink {
  position: relative;
}
._newsItem .newsitem .some-links .some-link.copylink .copied {
  padding: 8px;
  background-color: var(--color-primary);
  color: #ffffff;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  /*display: none;*/
  font-size: 10px;
  display: flex;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none; /* optional: prevents interaction when hidden */
  width: fit-content;
  white-space: nowrap;
}
._newsItem .newsitem .some-links .some-link.copylink .copied.show {
  opacity: 1;
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

._matchprogram .match-program .match-program-header {
  padding-top: 100px;
  background-color: #000000;
  color: #ffffff;
  width: 100%;
  aspect-ratio: 16/7;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-header {
    aspect-ratio: unset;
    flex-direction: column;
    align-items: flex-start;
  }
}
._matchprogram .match-program .match-program-header .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-header .bg {
    /*background-size:100px;*/
  }
}
._matchprogram .match-program .match-program-header .logo {
  margin-left: 60px;
  width: 200px;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-header .logo {
    width: 100px;
    margin-left: 20px;
  }
}
._matchprogram .match-program .match-program-header h1 {
  font-size: clamp(3.75rem, 4vw, 6.25rem);
  z-index: 1;
  position: relative;
  margin-left: 60px;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-header h1 {
    font-size: 24px;
    margin-left: 20px;
  }
}
._matchprogram .match-program .split {
  height: 50px;
  width: 100%;
  background-color: var(--color-primary);
}
._matchprogram .match-program .match-program-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 90px;
  max-width: 100%;
  padding: 0 60px;
  width: 100%;
  margin: 0 auto;
  color: #ffffff;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-content-wrap {
    padding: 0;
    gap: 30px;
  }
}
._matchprogram .match-program .match-program-content-wrap .filters {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-content-wrap .filters {
    flex-direction: column;
  }
}
._matchprogram .match-program .match-program-content-wrap .filters .btn a {
  height: 44px;
}
._matchprogram .match-program .match-program-content-wrap .filters .dropdown {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  border: 2px solid #8000ff;
  /*padding: 0.5rem 2rem 0.5rem 0.75rem;*/
  background-color: #fff;
  color: #000;
  font-size: 1rem;
  cursor: pointer;
  width: fit-content;
  font-family: "ALigaDisplay";
}
._matchprogram .match-program .match-program-content-wrap .filters .dropdown::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  width: 18px;
  height: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%238000ff' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'><path d='M0 0l5 6 5-6z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
._matchprogram .match-program .match-program-content-wrap .filters .dropdown select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  text-transform: inherit;
  /*padding: 0;*/
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  margin: 0;
  cursor: pointer;
  width: 100%;
  color: inherit;
}
._matchprogram .match-program .match-program-content-wrap .filters .dropdown select:focus {
  outline: none;
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap {
    gap: 30px;
  }
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list {
  display: flex;
  flex-direction: column;
  gap: 0px;
  justify-content: center;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list {
    gap: 30px;
  }
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list.hide-program {
  display: none;
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list h3 {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  font-size: 36px;
  color: var(--color-primary);
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list h3 {
    font-size: 12px;
    padding: 0;
    margin: 0;
  }
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list h3:nth-child(1) {
  padding-top: 0;
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list h3.current-round {
  background-color: var(--color-primary);
  color: #ffffff;
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match {
  display: grid;
  grid-template-columns: 2fr 1fr 48px 200px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #ffffff;
  gap: 30px;
  justify-content: center;
  padding-right: 60px;
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .tvlogowrap {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #ffffff;
  padding: 4px;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match {
    grid-template-columns: 1fr;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    padding-right: 0;
    padding: 30px 30px;
    border-bottom: none;
    justify-items: center;
  }
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match:has(+ h3) {
  border-bottom: none;
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match:has(+ .hidden) {
  border-bottom: none;
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match:last-child {
  border-bottom: none;
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match.hidden {
  display: none;
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .teams-score {
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  align-items: center;
  gap: 30px;
  justify-self: flex-start;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .teams-score {
    grid-template-columns: 1fr;
    justify-content: flex-start;
    width: 100%;
  }
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .teams-score .team {
  display: grid;
  grid-template-columns: 280px 50px;
  align-items: center;
  gap: 30px;
  position: relative;
  justify-items: end;
  justify-self: flex-end;
  cursor: pointer;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .teams-score .team {
    grid-template-columns: 32px auto 30px;
    justify-items: unset;
    width: 100%;
  }
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .teams-score .team a {
  position: absolute;
  height: 0;
  width: 0;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .teams-score .team a {
    order: 4;
  }
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .teams-score .team .teamname {
  text-align: right;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .teams-score .team .teamname {
    order: 2;
    text-align: left;
    font-size: 12px;
  }
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .teams-score .team img {
  width: 50px;
  height: 50px;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .teams-score .team img {
    order: 1;
    width: 32px;
    height: 32px;
  }
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .teams-score .team.away {
  grid-template-columns: 50px 280px;
  justify-items: start;
  justify-self: flex-start;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .teams-score .team.away {
    grid-template-columns: 32px auto 30px;
  }
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .teams-score .team.away .teamname {
  text-align: left;
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .teams-score .score {
  display: flex;
  white-space: nowrap;
  width: 140px;
  justify-content: center;
  justify-self: center;
  font-size: 24px;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .teams-score .score {
    display: none;
  }
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .teams-score .score-mobile {
  display: none;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .teams-score .score-mobile {
    display: flex;
    order: 3;
  }
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .stadium-datetime {
  font-size: 14px;
  justify-self: flex-start;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .stadium-datetime {
    justify-items: center;
    text-align: center;
    width: 100%;
    opacity: 0.8;
    padding: 0 30px;
  }
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .matchinfo {
  justify-self: flex-end;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .matchinfo a {
  position: absolute;
}
._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .matchinfo .arrow {
  font-size: 24px;
  line-height: 16px;
  -webkit-text-stroke-width: 1px;
}
@media only screen and (max-width: 1023px) {
  ._matchprogram .match-program .match-program-content-wrap .match-program-list-wrap .match-program-list .match .matchinfo {
    justify-self: center;
  }
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

.main-nav {
  position: fixed;
  top: 0;
  right: -375px; /* Hidden by default */
  width: 375px;
  height: 100vh;
  font-family: "ALigaDisplay";
  background: var(--color-primary);
  color: white;
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 2rem;
  padding-top: 80px;
}
.main-nav .nav-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.main-nav .nav-logo img {
  height: 64px;
}
.main-nav .nav-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.main-nav .nav-items div {
  text-transform: uppercase;
  font-size: 24px;
}
.main-nav .nav-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.main-nav .nav-close svg {
  height: 42px;
  width: 42px;
}

.main-nav.active {
  right: 0;
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
[data-aos][data-aos][data-aos-duration="50"],
body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"],
body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate,
body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"],
body[data-aos-duration="100"] [data-aos] {
  transition-duration: 0.1s;
}

[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-duration="150"],
body[data-aos-duration="150"] [data-aos] {
  transition-duration: 0.15s;
}

[data-aos][data-aos][data-aos-delay="150"],
body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate,
body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: 0.15s;
}

[data-aos][data-aos][data-aos-duration="200"],
body[data-aos-duration="200"] [data-aos] {
  transition-duration: 0.2s;
}

[data-aos][data-aos][data-aos-delay="200"],
body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate,
body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-duration="250"],
body[data-aos-duration="250"] [data-aos] {
  transition-duration: 0.25s;
}

[data-aos][data-aos][data-aos-delay="250"],
body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate,
body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: 0.25s;
}

[data-aos][data-aos][data-aos-duration="300"],
body[data-aos-duration="300"] [data-aos] {
  transition-duration: 0.3s;
}

[data-aos][data-aos][data-aos-delay="300"],
body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate,
body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: 0.3s;
}

[data-aos][data-aos][data-aos-duration="350"],
body[data-aos-duration="350"] [data-aos] {
  transition-duration: 0.35s;
}

[data-aos][data-aos][data-aos-delay="350"],
body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate,
body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: 0.35s;
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="400"],
body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate,
body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 0.4s;
}

[data-aos][data-aos][data-aos-duration="450"],
body[data-aos-duration="450"] [data-aos] {
  transition-duration: 0.45s;
}

[data-aos][data-aos][data-aos-delay="450"],
body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate,
body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: 0.45s;
}

[data-aos][data-aos][data-aos-duration="500"],
body[data-aos-duration="500"] [data-aos] {
  transition-duration: 0.5s;
}

[data-aos][data-aos][data-aos-delay="500"],
body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate,
body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: 0.5s;
}

[data-aos][data-aos][data-aos-duration="550"],
body[data-aos-duration="550"] [data-aos] {
  transition-duration: 0.55s;
}

[data-aos][data-aos][data-aos-delay="550"],
body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate,
body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: 0.55s;
}

[data-aos][data-aos][data-aos-duration="600"],
body[data-aos-duration="600"] [data-aos] {
  transition-duration: 0.6s;
}

[data-aos][data-aos][data-aos-delay="600"],
body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate,
body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: 0.6s;
}

[data-aos][data-aos][data-aos-duration="650"],
body[data-aos-duration="650"] [data-aos] {
  transition-duration: 0.65s;
}

[data-aos][data-aos][data-aos-delay="650"],
body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate,
body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: 0.65s;
}

[data-aos][data-aos][data-aos-duration="700"],
body[data-aos-duration="700"] [data-aos] {
  transition-duration: 0.7s;
}

[data-aos][data-aos][data-aos-delay="700"],
body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate,
body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: 0.7s;
}

[data-aos][data-aos][data-aos-duration="750"],
body[data-aos-duration="750"] [data-aos] {
  transition-duration: 0.75s;
}

[data-aos][data-aos][data-aos-delay="750"],
body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate,
body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: 0.75s;
}

[data-aos][data-aos][data-aos-duration="800"],
body[data-aos-duration="800"] [data-aos] {
  transition-duration: 0.8s;
}

[data-aos][data-aos][data-aos-delay="800"],
body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate,
body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: 0.8s;
}

[data-aos][data-aos][data-aos-duration="850"],
body[data-aos-duration="850"] [data-aos] {
  transition-duration: 0.85s;
}

[data-aos][data-aos][data-aos-delay="850"],
body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate,
body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: 0.85s;
}

[data-aos][data-aos][data-aos-duration="900"],
body[data-aos-duration="900"] [data-aos] {
  transition-duration: 0.9s;
}

[data-aos][data-aos][data-aos-delay="900"],
body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate,
body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: 0.9s;
}

[data-aos][data-aos][data-aos-duration="950"],
body[data-aos-duration="950"] [data-aos] {
  transition-duration: 0.95s;
}

[data-aos][data-aos][data-aos-delay="950"],
body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate,
body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: 0.95s;
}

[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"],
body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate,
body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"],
body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"],
body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate,
body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"],
body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"],
body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate,
body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"],
body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"],
body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate,
body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"],
body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"],
body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate,
body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"],
body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"],
body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate,
body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"],
body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"],
body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate,
body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"],
body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"],
body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate,
body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"],
body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"],
body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate,
body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"],
body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"],
body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate,
body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"],
body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"],
body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate,
body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"],
body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"],
body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate,
body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"],
body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"],
body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate,
body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"],
body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"],
body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate,
body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"],
body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"],
body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate,
body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"],
body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"],
body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate,
body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"],
body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"],
body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate,
body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"],
body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"],
body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate,
body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"],
body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"],
body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate,
body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"],
body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"],
body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate,
body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"],
body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"],
body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate,
body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"],
body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"],
body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate,
body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"],
body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"],
body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate,
body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"],
body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"],
body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate,
body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"],
body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"],
body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate,
body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"],
body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"],
body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate,
body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"],
body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"],
body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate,
body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"],
body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"],
body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate,
body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"],
body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"],
body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate,
body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"],
body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"],
body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate,
body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"],
body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"],
body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate,
body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"],
body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"],
body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate,
body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"],
body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"],
body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate,
body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"],
body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"],
body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate,
body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"],
body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"],
body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate,
body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"],
body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"],
body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate,
body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"],
body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"],
body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate,
body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"],
body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"],
body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate,
body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"],
body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"],
body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate,
body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"],
body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"],
body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate,
body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"],
body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"],
body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate,
body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}

[data-aos][data-aos][data-aos-easing=linear],
body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease],
body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in],
body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out],
body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out],
body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back],
body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back],
body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back],
body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine],
body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine],
body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine],
body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad],
body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad],
body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad],
body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic],
body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic],
body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],
body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart],
body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart],
body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart],
body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}

body [data-aos=fade-up] {
  transform: translate3d(0, 100px, 0);
}
body [data-aos=fade-down] {
  transform: translate3d(0, -100px, 0);
}
body [data-aos=fade-right] {
  transform: translate3d(-100px, 0, 0);
}
body [data-aos=fade-left] {
  transform: translate3d(100px, 0, 0);
}
body [data-aos=fade-up-right] {
  transform: translate3d(-100px, 100px, 0);
}
body [data-aos=fade-up-left] {
  transform: translate3d(100px, 100px, 0);
}
body [data-aos=fade-down-right] {
  transform: translate3d(-100px, -100px, 0);
}
body [data-aos=fade-down-left] {
  transform: translate3d(100px, -100px, 0);
}

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

[data-aos=zoom-in] {
  transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  transform: translate3d(0, 100px, 0) scale(0.6);
}

[data-aos=zoom-in-down] {
  transform: translate3d(0, -100px, 0) scale(0.6);
}

[data-aos=zoom-in-right] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}

[data-aos=zoom-in-left] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}

[data-aos=zoom-out] {
  transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}

[data-aos=zoom-out-down] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}

[data-aos=zoom-out-right] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}

[data-aos=zoom-out-left] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}

[data-aos^=slide][data-aos^=slide] {
  transition-property: transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translateZ(0);
}

[data-aos=slide-up] {
  transform: translate3d(0, 100%, 0);
}

[data-aos=slide-down] {
  transform: translate3d(0, -100%, 0);
}

[data-aos=slide-right] {
  transform: translate3d(-100%, 0, 0);
}

[data-aos=slide-left] {
  transform: translate3d(100%, 0, 0);
}

[data-aos^=flip][data-aos^=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

.btn-module {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}

.btn {
  font-family: "ALigaDisplay";
  background-color: var(--color-primary);
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  width: fit-content;
  cursor: pointer;
}
@media only screen and (max-width: 1023px) {
  .btn {
    font-size: 10px;
  }
}
.btn a {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 15px 30px;
  align-items: center;
}
.btn .arrow {
  font-size: 24px;
  line-height: 16px;
  -webkit-text-stroke-width: 1px;
  /*-webkit-text-stroke-color: black;*/
}
.btn.outlined {
  border: 2px solid #ffffff;
}
.btn.color_white-purple {
  color: var(--color-primary);
  background-color: #ffffff;
}
.btn.color_white-purple.outlined {
  border: 2px solid var(--color-primary);
}
.btn.color_white {
  color: #000000;
  background-color: #ffffff;
}
.btn.color_white.outlined {
  border: 2px solid #000000;
}
.btn.color_black {
  color: #ffffff;
  background-color: #000000;
}
.btn.color_black.outlined {
  border: 2px solid #ffffff;
}

.btn-wrap {
  display: flex;
  width: 100%;
}
.btn-wrap.button_Venstre {
  justify-content: flex-start;
}
.btn-wrap.button_Højre {
  justify-content: flex-end;
}
.btn-wrap.button_Centreret {
  justify-content: center;
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

.hero {
  width: 100%;
  aspect-ratio: 16/8.5;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .hero {
    aspect-ratio: 3/4;
  }
}
.hero .logo {
  background-color: var(--color-primary);
  padding: 10px;
  display: inline-flex;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1023px) {
  .hero .logo {
    padding: 5px;
  }
}
.hero .logo img {
  width: 446px;
  height: 150px;
  transition: height 0.7s ease;
}
@media only screen and (max-width: 1023px) {
  .hero .logo img {
    width: 149px;
    height: 50px;
  }
}
.hero .hero-dots {
  position: absolute;
  bottom: 100px;
  left: 25%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
@media only screen and (max-width: 1440px) {
  .hero .hero-dots {
    bottom: 60px;
  }
}
@media only screen and (max-width: 1280px) {
  .hero .hero-dots {
    bottom: 30px;
  }
}
@media only screen and (max-width: 1023px) {
  .hero .hero-dots {
    left: 50%;
  }
}
.hero .hero-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.hero .hero-dot.active {
  background-color: white;
}
.hero .hero-item-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  /*   aspect-ratio: 16/8;*/
  /*max-height: 100vh;*/
  overflow: hidden;
  background: #000;
}
@media only screen and (max-width: 1023px) {
  .hero .hero-item-wrap {
    aspect-ratio: 3/4;
  }
}
.hero .hero-item-wrap .hero-item {
  /*padding-top: 200px;*/
  padding-left: 65px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.6s ease;
  z-index: 0;
  color: #ffffff;
}
@media only screen and (max-width: 1023px) {
  .hero .hero-item-wrap .hero-item {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.hero .hero-item-wrap .hero-item .hero-item-content {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  width: 50%;
  transform-origin: top left;
}
@media only screen and (max-width: 1023px) {
  .hero .hero-item-wrap .hero-item .hero-item-content {
    width: 100%;
  }
}
.hero .hero-item-wrap .hero-item.active {
  transform: translateX(0);
  opacity: 1;
  z-index: 2;
}
.hero .hero-item-wrap .hero-item.out-left {
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.6s ease;
  z-index: 0;
}
.hero .hero-item-wrap .hero-item h1 {
  color: #ffffff;
  font-size: 48px;
  line-height: 1.2;
  /* padding:5px 20px;
   background-color:rgba(0,0,0,0.1);*/
  /*text-shadow: 6px 6px 0px var(--color-primary);*/
}
@media only screen and (max-width: 1440px) {
  .hero .hero-item-wrap .hero-item h1 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1280px) {
  .hero .hero-item-wrap .hero-item h1 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1023px) {
  .hero .hero-item-wrap .hero-item h1 {
    /*text-shadow: 3px 3px 0px var(--color-primary);*/
  }
}
.hero .hero-item-wrap .hero-item .hero-item-text {
  font-size: 24px;
  margin-bottom: 40px;
  /*   padding:5px 20px;
  background-color:rgba(0,0,0,0.1);*/
  /*text-shadow: 3px 3px 0px var(--color-primary);*/
}
@media only screen and (max-width: 1023px) {
  .hero .hero-item-wrap .hero-item .hero-item-text {
    /*text-shadow: 1px 1px 0px var(--color-primary);*/
  }
}
.hero .hero-item-wrap .hero-item .hero-item-content > * {
  transform: translateX(100%);
  transition: opacity 1.6s ease, transform 1.6s ease;
}
.hero .hero-item-wrap .hero-item.active h1 {
  transition-delay: 0.7s;
}
.hero .hero-item-wrap .hero-item.active .hero-item-text {
  transition-delay: 0.4s;
}
.hero .hero-item-wrap .hero-item.active .button {
  transition-delay: 0.4s;
}
.hero .hero-item-wrap .hero-item.out-left .hero-item-content > * {
  opacity: 1;
  transform: translateX(-100%);
}
.hero .hero-item-wrap .hero-item.active .hero-item-content > * {
  opacity: 1;
  transform: translateX(0%);
}
.hero .upcomming-matches {
  width: 50%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  transform-origin: top right;
  height: 100%;
  /* @include respond-to(xxl) {
     transform: scale(0.9);
  }

  @include respond-to(xl) {
      transform: scale(0.8);
  }

  @include respond-to(fullscreen) {
      transform: scale(0.6);
  }*/
}
@media only screen and (max-width: 1440px) {
  .hero .upcomming-matches {
    /*transform: scale(0.8);*/
    zoom: 0.8;
  }
}
@media only screen and (max-width: 1280px) {
  .hero .upcomming-matches {
    zoom: 0.7;
  }
}
@media only screen and (max-width: 1024px) {
  .hero .upcomming-matches {
    position: relative;
    width: 100%;
    transform: scale(1);
    width: 100%;
    zoom: 1;
    height: fit-content;
  }
}
.hero .upcomming-matches .bg-pattern {
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-size: 100%;
  background-position: right top;
  background-repeat: no-repeat;
  opacity: 0.8;
}
@media only screen and (max-width: 1024px) {
  .hero .upcomming-matches .bg-pattern {
    display: none;
  }
}
.hero .upcomming-matches .matches-wrap {
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 30px 60px 30px 60px;
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  gap: 80px;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .hero .upcomming-matches .matches-wrap {
    background-color: #000000;
    width: 100%;
    padding: 30px;
    align-items: flex-start;
    gap: 30px;
  }
}
.hero .upcomming-matches .matches-wrap h2 {
  font-size: 16px;
  color: #ffffff;
  text-shadow: var(--color-primary) 0 3px;
}
.hero .upcomming-matches .matches-wrap .match-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 1024px) {
  .hero .upcomming-matches .matches-wrap .match-list {
    flex-direction: row;
  }
}
@media only screen and (max-width: 1023px) {
  .hero .upcomming-matches .matches-wrap .match-list {
    flex-direction: column;
    width: 100%;
  }
}
.hero .upcomming-matches .matches-wrap .match-list .match {
  width: 300px;
  background-color: #ffffff;
  border: 4px solid var(--color-primary);
  padding-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .hero .upcomming-matches .matches-wrap .match-list .match {
    width: calc((100% - 60px) / 3);
  }
}
@media only screen and (max-width: 1023px) {
  .hero .upcomming-matches .matches-wrap .match-list .match {
    width: 100%;
  }
}
.hero .upcomming-matches .matches-wrap .match-list .match .match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
}
.hero .upcomming-matches .matches-wrap .match-list .match .teams {
  display: flex;
  width: 100%;
  padding: 0 10px;
}
.hero .upcomming-matches .matches-wrap .match-list .match .teams > div {
  padding-top: 20px;
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  font-size: 9px;
}
.hero .upcomming-matches .matches-wrap .match-list .match .teams > div div {
  width: 80%;
  font-size: 8px;
  text-align: center;
}
.hero .upcomming-matches .matches-wrap .match-list .match .teams > div img {
  width: 40px;
}
.hero .upcomming-matches .matches-wrap .match-list .match .time-stadium {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}
.hero .upcomming-matches .matches-wrap .match-list .match .time-stadium .time {
  font-size: 10px;
  color: var(--color-primary);
  font-weight: bold;
}
.hero .upcomming-matches .matches-wrap .match-list .match .time-stadium .stadium {
  font-size: 8px;
  color: #888888;
  text-align: center;
  padding: 0 20px;
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

.spotbox {
  display: flex;
  flex-direction: row;
  gap: 0;
  background-color: #000000;
  width: 100%;
  max-width: 1280px;
  aspect-ratio: 1490/512;
  /*border: 5px solid $color-white;*/
  position: relative;
  color: #ffffff;
}
@media only screen and (max-width: 1023px) {
  .spotbox {
    aspect-ratio: unset;
    flex-direction: column;
  }
}
.spotbox .spotbox-image {
  width: 45%;
  order: 1;
}
@media only screen and (max-width: 1023px) {
  .spotbox .spotbox-image {
    aspect-ratio: 4/3;
    width: 100%;
    background-size: cover;
    background-position: center;
  }
}
.spotbox.pos_Højre .spotbox-image {
  order: 2;
}
.spotbox.pos_Højre .spotbox-content {
  order: 1;
}
.spotbox.pos_Centreret .spotbox-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 100%);
  mask-image: linear-gradient(to top, black 0%, transparent 100%);
}
.spotbox.pos_Centreret .spotbox-content {
  position: relative;
  z-index: 2;
  width: 100%;
  align-items: center;
}
.spotbox.pos_Centreret .spotbox-content h2, .spotbox.pos_Centreret .spotbox-content .text {
  text-align: center;
}
.spotbox.bg_Hvid {
  background-color: #ffffff;
  color: #000000;
}
.spotbox .spotbox-content {
  order: 2;
  width: 55%;
  padding: 60px 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* .btn-wrap {
       display: flex;
       width: 100%;

       &.button_Venstre {
           justify-content: flex-start;
       }

       &.button_Højre {
           justify-content: flex-end;
       }

       &.button_Centreret {
           justify-content: center;
       }
   }*/
}
@media only screen and (max-width: 1023px) {
  .spotbox .spotbox-content {
    width: 100%;
    padding: 30px;
  }
}
.spotbox .spotbox-content h2 {
  font-size: 32px;
}
@media only screen and (max-width: 1023px) {
  .spotbox .spotbox-content h2 {
    font-size: 18px;
  }
}
.spotbox .spotbox-content .text {
  font-size: 18px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 1023px) {
  .spotbox .spotbox-content .text {
    font-size: 12px;
  }
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

.rte {
  line-height: 1.5;
  font-size: 18px;
  color: #000000;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 1280px;
}
.rte h1 {
  font-family: "ALigaDisplay", sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
  margin: 0;
}
.rte h1.small {
  font-size: 1rem;
  /*margin-bottom: 10px;*/
}
.rte h2 {
  font-family: "ALigaDisplay", sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}
.rte h2.small {
  font-size: 1rem;
  /*margin-bottom: 10px;*/
}
.rte h3 {
  font-family: "ALigaDisplay", sans-serif;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}
.rte h3.small {
  font-size: 1rem;
}
.rte a {
  color: var(--color-primary);
}
.rte a:hover {
  text-decoration: underline;
}
.rte table {
  margin: 0;
  border: 0;
  border-collapse: collapse;
  cursor: default;
}
.rte table.dbu-data-table--vcentered td, .rte table.dbu-data-table--vcentered th {
  vertical-align: middle;
  text-align: left;
}
.rte table.dbu-data-table--centered td, .rte table.dbu-data-table--centered th {
  vertical-align: middle;
  text-align: center;
}
.rte table tr {
  width: auto !important;
  height: auto !important;
}
.rte table td, .rte table th {
  border: 0;
  cursor: default;
  width: auto !important;
  height: auto !important;
  vertical-align: top;
  text-align: left;
}
.rte ul {
  padding: 0;
  margin: 0;
  padding-left: 30px;
}
.rte ul li {
  display: list-item;
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
}
.rte ul li::marker {
  content: "*";
  font-family: "ALigaDisplay";
  font-size: 14px;
}
.rte ul li:first-child {
  margin-top: 0;
}
.rte ul li:last-child {
  margin-bottom: 0;
}
.rte ol {
  padding: 0;
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 58px;
  margin: 0;
}
.rte ol li {
  display: list-item;
  margin-top: 0;
  margin-bottom: 10px;
  position: relative;
  /*padding-left: 20px;*/
}
.rte ol li::marker {
  font-family: "ALigaDisplay";
  font-size: 14px;
}
.rte ol li:first-child {
  margin-top: 0;
}
.rte ol li:last-child {
  margin-bottom: 0;
}
.rte ol ol, .rte ul ol {
  padding-left: 1.5rem;
}
.rte p {
  margin: 0;
  padding: 0;
}
/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

.news-module {
  /*max-width: 1660px;*/
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media only screen and (max-width: 1440px) {
  .news-module {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 1023px) {
  .news-module {
    padding: 0;
    gap: 30px;
  }
}
.news-module .news-module-items-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.news-module .button-wrap {
  display: flex;
  justify-content: flex-end;
}
.news-module .news-module-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: center;
  grid-gap: 30px;
}
@media only screen and (max-width: 1024px) {
  .news-module .news-module-items {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 1023px) {
  .news-module .news-module-items {
    grid-template-columns: 1fr;
  }
}
.news-module .news-module-items a {
  display: none;
}
.news-module .news-module-items .news-module-item {
  background-color: #ffffff;
  border: 2px solid var(--color-primary);
  position: relative;
  cursor: pointer;
}
.news-module .news-module-items .news-module-item .text-wrap {
  padding: 10px 20px;
  color: #000000;
  padding-bottom: 60px;
}
.news-module .news-module-items .news-module-item .text-wrap .date {
  color: #888888;
  font-size: 12px;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.news-module .news-module-items .news-module-item .text-wrap .headline {
  font-weight: bold;
  font-size: 15px;
  padding-bottom: 20px;
  text-transform: uppercase;
}
.news-module .news-module-items .news-module-item .text-wrap .subheader {
  font-size: 13px;
  padding-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-module .news-module-items .news-module-item .read-more {
  display: flex;
  background-color: var(--color-primary);
  color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.news-module .news-module-items .news-module-item .read-more a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 14px 10px;
  font-size: 12px;
  gap: 10px;
}
.news-module .news-module-items .news-module-item .read-more a .arrow {
  font-size: 24px;
  line-height: 16px;
  -webkit-text-stroke-width: 1px;
  margin-top: 3px;
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

.pool-score-module {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}
.pool-score-module .pool-score-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media only screen and (max-width: 1023px) {
  .pool-score-module .pool-score-wrap {
    gap: 30px;
  }
}
.pool-score-module .pool-score-wrap .league-table {
  background-color: #ffffff;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  font-weight: 500;
  font-size: 16px;
}
.pool-score-module .pool-score-wrap .league-table a {
  display: none;
}
.pool-score-module .pool-score-wrap .table-header, .pool-score-module .pool-score-wrap .table-row {
  display: grid;
  grid-template-columns: 1fr 5fr 2fr 2fr 2fr 1fr;
  align-items: center;
  padding: 12px 10px;
}
@media only screen and (max-width: 1023px) {
  .pool-score-module .pool-score-wrap .table-header, .pool-score-module .pool-score-wrap .table-row {
    grid-template-columns: 1fr 3fr 1fr 1fr 1fr;
  }
}
.pool-score-module .pool-score-wrap .table-header {
  background-color: var(--color-primary);
  color: white;
  text-transform: uppercase;
  padding: 8px 10px;
}
.pool-score-module .pool-score-wrap .table-row {
  background-color: #ffffff;
  color: #000;
  font-size: 15px;
  border-top: 1px solid #eee;
  cursor: pointer;
}
.pool-score-module .pool-score-wrap .table-row:hover {
  background-color: var(--color-primary) -light;
}
.pool-score-module .pool-score-wrap .table-row.alt {
  background-color: var(--color-primary) -light;
}
.pool-score-module .pool-score-wrap .table-row.dottet-line {
  border-bottom: #000000 4px dotted;
}
.pool-score-module .pool-score-wrap .table-row.regular-line {
  border-bottom: #A8D67B 4px solid;
}
.pool-score-module .pool-score-wrap .tr-col.rank, .pool-score-module .pool-score-wrap .th-col.rank {
  font-size: 24px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .pool-score-module .pool-score-wrap .tr-col.rank, .pool-score-module .pool-score-wrap .th-col.rank {
    font-size: 12px;
  }
}
.pool-score-module .pool-score-wrap .tr-col.club, .pool-score-module .pool-score-wrap .th-col.club {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pool-score-module .pool-score-wrap .tr-col.club img, .pool-score-module .pool-score-wrap .th-col.club img {
  width: 38px;
  height: 38px;
}
@media only screen and (max-width: 1023px) {
  .pool-score-module .pool-score-wrap .tr-col.club img, .pool-score-module .pool-score-wrap .th-col.club img {
    width: 20px;
    height: 20px;
  }
}
@media only screen and (max-width: 1023px) {
  .pool-score-module .pool-score-wrap .tr-col.club, .pool-score-module .pool-score-wrap .th-col.club {
    font-size: 8px;
  }
}
.pool-score-module .pool-score-wrap .tr-col.points, .pool-score-module .pool-score-wrap .th-col.points {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .pool-score-module .pool-score-wrap .tr-col.points, .pool-score-module .pool-score-wrap .th-col.points {
    font-size: 12px;
  }
}
.pool-score-module .pool-score-wrap .tr-col.matches, .pool-score-module .pool-score-wrap .th-col.matches {
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .pool-score-module .pool-score-wrap .tr-col.matches, .pool-score-module .pool-score-wrap .th-col.matches {
    font-size: 9px;
  }
}
.pool-score-module .pool-score-wrap .tr-col.goals, .pool-score-module .pool-score-wrap .th-col.goals {
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .pool-score-module .pool-score-wrap .tr-col.goals, .pool-score-module .pool-score-wrap .th-col.goals {
    font-size: 9px;
    white-space: nowrap;
  }
}
.pool-score-module .pool-score-wrap .tr-col.vtu, .pool-score-module .pool-score-wrap .th-col.vtu {
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .pool-score-module .pool-score-wrap .tr-col.vtu, .pool-score-module .pool-score-wrap .th-col.vtu {
    display: none;
  }
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

.image-module {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}
.image-module figcaption {
  font-size: 13px;
  background-color: var(--color-primary);
  color: #ffffff;
  width: 100%;
  padding: 10px;
}
.image-module picture {
  display: block;
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

.selected-players-module {
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media only screen and (max-width: 1023px) {
  .selected-players-module {
    gap: 30px;
  }
}
.selected-players-module .selected-players-header {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1023px) {
  .selected-players-module .selected-players-header {
    justify-content: flex-start;
  }
}
.selected-players-module .selected-players-right, .selected-players-module .selected-players-left {
  z-index: 2;
  position: absolute;
  top: 50%;
  cursor: pointer;
}
.selected-players-module .selected-players-right svg rect, .selected-players-module .selected-players-left svg rect {
  fill: var(--color-primary);
}
@media only screen and (max-width: 1024px) {
  .selected-players-module .selected-players-right svg, .selected-players-module .selected-players-left svg {
    height: 60px;
    width: 60px;
  }
}
.selected-players-module .selected-players-left {
  left: 30px;
}
@media only screen and (max-width: 1024px) {
  .selected-players-module .selected-players-left {
    left: 0px;
  }
}
.selected-players-module .selected-players-right {
  right: 30px;
}
@media only screen and (max-width: 1024px) {
  .selected-players-module .selected-players-right {
    right: 0px;
  }
}
.selected-players-module .glide {
  padding: 0 120px;
}
@media only screen and (max-width: 1024px) {
  .selected-players-module .glide {
    padding: 0 30px;
  }
}
.selected-players-module .player {
  /*z-index: 0;*/
  display: flex;
  flex-direction: column;
  /*max-width: 488px;
  height: 656px;*/
  width: 380px;
  aspect-ratio: 3/4;
  /*width: calc((100vw - 480px) / 3);
  flex: 0 0 calc(100% / 3 - 20px);*/
  box-sizing: border-box;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .selected-players-module .player {
    /*    width:300px;
    height:500px;*/
  }
}
.selected-players-module .player.hidden {
  /* opacity: 0;
  width: 0;*/
}
.selected-players-module .player a {
  display: none;
}
.selected-players-module .player .player-inner {
  align-items: center;
  background: linear-gradient(to bottom, var(--color-primary), rgb(0, 0, 0));
  position: relative;
  overflow: hidden;
}
.selected-players-module .player .liga-logo {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 100px;
  background-color: var(--color-primary);
  padding: 2px;
}
@media only screen and (max-width: 1024px) {
  .selected-players-module .player .liga-logo {
    width: 60px;
  }
}
.selected-players-module .player .liga-logo img {
  width: 100%;
  height: auto;
}
.selected-players-module .player .club-logo {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 100px;
}
@media only screen and (max-width: 1024px) {
  .selected-players-module .player .club-logo {
    width: 60px;
  }
}
.selected-players-module .player .club-logo img {
  max-width: 100%;
  height: auto;
}
.selected-players-module .player .player-img {
  width: 100%;
  /*min-width: calc((100vw - 480px) / 3);*/
  /*height: calc((100vw - 480px) / 3);*/
  aspect-ratio: 4/5;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  /*  
  img {
      width: 100%;

      height: auto;
  }*/
}
@media only screen and (max-width: 1023px) {
  .selected-players-module .player .player-img {
    aspect-ratio: 2/3;
  }
}
.selected-players-module .player .player-info {
  width: 100%;
  background: var(--color-primary);
  color: white;
  text-transform: uppercase;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* @include respond-to(below-large) {
    width:calc(100vw - 60px);
  }*/
}
.selected-players-module .player .player-info .player-name {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  max-width: 80%;
  white-space: normal;
  text-align: center;
}
@media only screen and (max-width: 1440px) {
  .selected-players-module .player .player-info .player-name {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1023px) {
  .selected-players-module .player .player-info .player-name {
    font-size: 12px;
  }
}
.selected-players-module .player .player-info .club-name {
  font-size: 14px;
  color: #cfcfcf;
  margin-top: 0.25rem;
  max-width: 80%;
  white-space: normal;
  text-align: center;
}
@media only screen and (max-width: 1440px) {
  .selected-players-module .player .player-info .club-name {
    font-size: 10px;
  }
}
@media only screen and (max-width: 1023px) {
  .selected-players-module .player .player-info .club-name {
    font-size: 10px;
  }
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

.team-cards {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}
.team-cards .team-cards-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.team-cards .team-cards-wrap .team-logos {
  display: flex;
  justify-content: space-between;
  height: 100px;
}
.team-cards .team-cards-wrap .team-logos img {
  height: 100px;
}
.team-cards .team-cards-wrap .team-cards-table-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.team-cards .team-cards-wrap .team-cards-table-wrap .team-cards-reserves-header {
  background-color: var(--color-primary);
  font-size: 20px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 66px;
  grid-column: 1/3;
}
.team-cards .team-cards-wrap .team-cards-table {
  flex: 0 0 50%;
  background-color: #ffffff;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  font-weight: 500;
  font-size: 16px;
}
.team-cards .team-cards-wrap .table-header, .team-cards .team-cards-wrap .table-row {
  display: grid;
  grid-template-columns: 1fr 80px 5fr;
  align-items: center;
  height: 66px;
}
.team-cards .team-cards-wrap .team-cards-table.away .table-header, .team-cards .team-cards-wrap .team-cards-table.away .table-row {
  grid-template-columns: 5fr 80px 1fr;
}
.team-cards .team-cards-wrap .team-cards-table.away .table-header .tr-col.name, .team-cards .team-cards-wrap .team-cards-table.away .table-header .th-col.name, .team-cards .team-cards-wrap .team-cards-table.away .table-row .tr-col.name, .team-cards .team-cards-wrap .team-cards-table.away .table-row .th-col.name {
  text-align: right;
}
.team-cards .team-cards-wrap .team-cards-table.away .table-header .tr-col.img, .team-cards .team-cards-wrap .team-cards-table.away .table-header .th-col.img, .team-cards .team-cards-wrap .team-cards-table.away .table-row .tr-col.img, .team-cards .team-cards-wrap .team-cards-table.away .table-row .th-col.img {
  justify-content: flex-end;
}
.team-cards .team-cards-wrap .table-header {
  background-color: var(--color-primary);
  color: white;
  text-transform: uppercase;
  padding: 8px 10px;
}
.team-cards .team-cards-wrap .table-row {
  background-color: #ffffff;
  color: #000;
  font-size: 15px;
  border-top: 1px solid #eee;
}
.team-cards .team-cards-wrap .table-row.alt {
  background-color: var(--color-primary) -light;
}
.team-cards .team-cards-wrap .tr-col.shirtno, .team-cards .team-cards-wrap .th-col.shirtno {
  font-size: 20px;
  text-align: center;
}
.team-cards .team-cards-wrap .tr-col.img, .team-cards .team-cards-wrap .th-col.img {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.team-cards .team-cards-wrap .tr-col.img .img-wrap-circle, .team-cards .team-cards-wrap .th-col.img .img-wrap-circle {
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  width: 42px;
  height: 42px;
  overflow: hidden;
}
.team-cards .team-cards-wrap .tr-col.name, .team-cards .team-cards-wrap .th-col.name {
  font-family: "Work Sans";
  font-size: 20px;
  text-align: left;
  text-transform: none;
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

.match-events {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}
.match-events .match-events-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.match-events .match-events-wrap .match-events-table-wrap {
  display: flex;
}
.match-events .match-events-wrap .match-events-table {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  font-weight: 500;
  font-size: 16px;
  background-color: var(--color-primary-light);
}
.match-events .match-events-wrap .table-header, .match-events .match-events-wrap .table-row {
  display: flex;
  align-items: center;
  height: 80px;
  font-size: 20px;
}
.match-events .match-events-wrap .table-header {
  background-color: var(--color-primary);
  color: white;
  text-transform: uppercase;
  padding: 8px 10px;
}
.match-events .match-events-wrap .table-row {
  background-color: #ffffff;
  color: #000;
  font-size: 15px;
  border-top: 1px solid #eee;
}
.match-events .match-events-wrap .table-row:first-child {
  border-top: none;
}
.match-events .match-events-wrap .table-row.alt {
  background-color: var(--color-primary) -light;
}
.match-events .match-events-wrap .table-row.dark {
  background-color: var(--color-primary);
  color: #ffffff;
}
.match-events .match-events-wrap .tr-col.time, .match-events .match-events-wrap .th-col.time {
  font-size: 16px;
  text-align: left;
  width: 100px;
  padding: 10px;
}
.match-events .match-events-wrap .tr-col.icon-text, .match-events .match-events-wrap .th-col.icon-text {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% - 100px);
  padding-left: 30px;
}
.match-events .match-events-wrap .tr-col.icon-text .icon, .match-events .match-events-wrap .th-col.icon-text .icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 64px;
}
.match-events .match-events-wrap .tr-col.icon-text .icon .img-wrap-circle, .match-events .match-events-wrap .th-col.icon-text .icon .img-wrap-circle {
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  width: 64px;
  height: 64px;
  overflow: hidden;
}
.match-events .match-events-wrap .tr-col.icon-text .name-number, .match-events .match-events-wrap .th-col.icon-text .name-number {
  font-family: "Work Sans";
  font-size: 20px;
  text-align: left;
  text-transform: none;
  display: flex;
  gap: 10px;
  align-items: center;
}
.match-events .match-events-wrap .tr-col.icon-text .name-number .number, .match-events .match-events-wrap .th-col.icon-text .name-number .number {
  margin-top: 4px;
}
.match-events .match-events-wrap .tr-col.icon-text .sub, .match-events .match-events-wrap .th-col.icon-text .sub {
  display: flex;
  flex-direction: column;
}
.match-events .match-events-wrap .tr-col.icon-text .sub .in, .match-events .match-events-wrap .tr-col.icon-text .sub .out, .match-events .match-events-wrap .th-col.icon-text .sub .in, .match-events .match-events-wrap .th-col.icon-text .sub .out {
  font-family: "Work Sans";
  font-size: 20px;
  text-align: left;
  text-transform: none;
  display: flex;
  gap: 10px;
  align-items: center;
}
.match-events .match-events-wrap .tr-col.icon-text .sub .in .number, .match-events .match-events-wrap .tr-col.icon-text .sub .out .number, .match-events .match-events-wrap .th-col.icon-text .sub .in .number, .match-events .match-events-wrap .th-col.icon-text .sub .out .number {
  margin-top: 4px;
}
.match-events .match-events-wrap .tr-col.icon-text .sub .out, .match-events .match-events-wrap .th-col.icon-text .sub .out {
  color: #C4C4C8;
}
.match-events .match-events-wrap .table-row.away {
  display: flex;
}
.match-events .match-events-wrap .table-row.away .tr-col.icon-text, .match-events .match-events-wrap .table-row.away .th-col.icon-text {
  justify-content: flex-end;
  padding-right: 30px;
  padding-left: 0px;
}
.match-events .match-events-wrap .table-row.away .tr-col.icon-text .name-number, .match-events .match-events-wrap .table-row.away .th-col.icon-text .name-number {
  text-align: right;
  order: 1;
}
.match-events .match-events-wrap .table-row.away .tr-col.icon-text .icon, .match-events .match-events-wrap .table-row.away .th-col.icon-text .icon {
  justify-content: flex-end;
  order: 2;
}
.match-events .match-events-wrap .table-row.dark .tr-col.icon-text, .match-events .match-events-wrap .table-row.dark .th-col.icon-text {
  justify-content: center;
  margin-left: -64px;
  padding-left: 0px;
  gap: 10px;
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

.prevnextmatch {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}
.prevnextmatch .match-wrap {
  display: flex;
  gap: 60px;
}
.prevnextmatch .prev,
.prevnextmatch .next {
  flex: 1;
  background-color: #ffffff;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 1023px) {
  .prevnextmatch .prev,
  .prevnextmatch .next {
    padding: 30px;
  }
}
.prevnextmatch .prev .teams,
.prevnextmatch .next .teams {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media only screen and (max-width: 1023px) {
  .prevnextmatch .prev .teams,
  .prevnextmatch .next .teams {
    flex-direction: column;
  }
}
.prevnextmatch .prev .teams .team,
.prevnextmatch .next .teams .team {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  flex-direction: column;
  align-content: center;
  justify-content: flex-start;
}
@media only screen and (max-width: 1023px) {
  .prevnextmatch .prev .teams .team,
  .prevnextmatch .next .teams .team {
    flex-direction: row;
    width: auto;
    display: grid;
    grid-template-columns: 32px auto 30px;
    width: 100%;
    gap: 10px;
    font-size: 12px;
  }
}
.prevnextmatch .prev .teams .team img,
.prevnextmatch .next .teams .team img {
  width: 100px;
  height: 100px;
}
@media only screen and (max-width: 1023px) {
  .prevnextmatch .prev .teams .team img,
  .prevnextmatch .next .teams .team img {
    width: 32px;
    height: 32px;
    order: 1;
  }
}
@media only screen and (max-width: 1023px) {
  .prevnextmatch .prev .teams .team a:nth-child(2),
  .prevnextmatch .next .teams .team a:nth-child(2) {
    order: 2;
  }
}
.prevnextmatch .prev.prev,
.prevnextmatch .next.prev {
  background-color: #5000E0;
  color: #ffffff;
}
.prevnextmatch .prev .score,
.prevnextmatch .next .score {
  text-align: center;
  font-size: 40px;
}
@media only screen and (max-width: 1023px) {
  .prevnextmatch .prev .score,
  .prevnextmatch .next .score {
    display: none;
  }
}
.prevnextmatch .prev.next .score,
.prevnextmatch .next.next .score {
  font-size: 14px;
}
.prevnextmatch .prev .score-mobile,
.prevnextmatch .next .score-mobile {
  display: none;
  text-align: center;
  font-size: 16px;
}
@media only screen and (max-width: 1023px) {
  .prevnextmatch .prev .score-mobile,
  .prevnextmatch .next .score-mobile {
    display: flex;
    justify-content: flex-end;
    order: 3;
  }
}
.prevnextmatch .prev .tvlogowrap,
.prevnextmatch .next .tvlogowrap {
  align-self: center;
  width: fit-content;
}
.prevnextmatch .prev .time-place,
.prevnextmatch .next .time-place {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .prevnextmatch .prev .time-place,
  .prevnextmatch .next .time-place {
    justify-content: center;
    text-align: center;
    font-size: 10px;
  }
}
.prevnextmatch .button-wrap {
  display: flex;
  justify-content: center;
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

.playerlist {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}
.playerlist .playerlist-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.playerlist .playerlist-wrap .position-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 1023px) {
  .playerlist .playerlist-wrap .position-list {
    grid-template-columns: 1fr 1fr;
  }
}
.playerlist .playerlist-wrap .position-list .player {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  cursor: pointer;
}
.playerlist .playerlist-wrap .position-list .player .img-wrap {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  aspect-ratio: 3/4;
  background-color: #000000;
}
.playerlist .playerlist-wrap .position-list .player .img-wrap .league-logo {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 60px;
  padding: 3px;
  background-color: var(--color-primary);
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .playerlist .playerlist-wrap .position-list .player .img-wrap .league-logo {
    width: 32px;
  }
}
.playerlist .playerlist-wrap .position-list .player .img-wrap .club-logo {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 60px;
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .playerlist .playerlist-wrap .position-list .player .img-wrap .club-logo {
    width: 32px;
  }
}
.playerlist .playerlist-wrap .position-list .player .player-name-number {
  background-color: var(--color-primary);
  color: #ffffff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0px 10px;
  height: 60px;
  align-items: center;
  gap: 5px;
}
.playerlist .playerlist-wrap .position-list .player .player-name-number .player-name {
  font-size: 11px;
  text-align: center;
  vertical-align: text-bottom;
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 1023px) {
  .playerlist .playerlist-wrap .position-list .player .player-name-number .player-name {
    font-size: 8px;
  }
}
.playerlist .playerlist-wrap .position-list .player .player-name-number .player-number {
  font-size: 9px;
}
.playerlist h3 {
  color: #ffffff;
}
@media only screen and (max-width: 1023px) {
  .playerlist h3 {
    font-size: 12px;
  }
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

.top-score-module {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1440px) {
  .top-score-module {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 1023px) {
  .top-score-module {
    padding: 0;
  }
}
.top-score-module .top3 {
  display: flex;
  gap: 30px;
  padding-bottom: 30px;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .top-score-module .top3 {
    padding: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .top-score-module .top3 {
    flex-direction: column;
  }
}
.top-score-module .top3 .topscorer {
  flex: 0 0 calc((100% - 60px) / 3);
  background-color: #000000;
}
@media only screen and (max-width: 1023px) {
  .top-score-module .top3 .topscorer {
    flex: unset;
  }
}
.top-score-module .top3 .topscorer .player-img {
  width: 100%;
  aspect-ratio: 4/5;
  background-position: top center;
  background-size: cover;
  position: relative;
}
.top-score-module .top3 .topscorer .player-img .club-logo {
  width: 60px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.top-score-module .top3 .topscorer .player-img .goals {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  background-color: var(--color-primary);
  border-radius: 50%;
  height: 80px;
  width: 80px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-score-module .top3 .topscorer .name-club {
  background-color: var(--color-primary);
  padding: 20px;
  color: #ffffff;
  height: 110px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.top-score-module .top3 .topscorer .name-club .name {
  font-size: 14px;
  text-align: center;
}
.top-score-module .top3 .topscorer .name-club .club {
  color: #C4C4C8;
  text-align: center;
}
.top-score-module .top-score-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media only screen and (max-width: 1023px) {
  .top-score-module .top-score-wrap {
    gap: 30px;
  }
}
.top-score-module .top-score-wrap .topscorer-table {
  background-color: #ffffff;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  font-weight: 500;
  font-size: 16px;
}
.top-score-module .top-score-wrap .topscorer-table a {
  display: none;
}
.top-score-module .top-score-wrap .table-header, .top-score-module .top-score-wrap .table-row {
  display: grid;
  grid-template-columns: 100px 1fr 100px;
  align-items: center;
  padding: 12px 10px;
}
@media only screen and (max-width: 1023px) {
  .top-score-module .top-score-wrap .table-header, .top-score-module .top-score-wrap .table-row {
    grid-template-columns: 30px 1fr 40px;
  }
}
.top-score-module .top-score-wrap .table-header {
  background-color: var(--color-primary);
  color: white;
  text-transform: uppercase;
  padding: 8px 10px;
}
@media only screen and (max-width: 1023px) {
  .top-score-module .top-score-wrap .table-header {
    font-size: 12px;
  }
}
.top-score-module .top-score-wrap .table-row {
  background-color: #ffffff;
  color: #000;
  font-size: 15px;
  border-top: 1px solid #eee;
  cursor: pointer;
}
.top-score-module .top-score-wrap .table-row:hover {
  background-color: var(--color-primary) -light;
}
.top-score-module .top-score-wrap .table-row.alt {
  background-color: var(--color-primary) -light;
}
.top-score-module .top-score-wrap .tr-col.rank, .top-score-module .top-score-wrap .th-col.rank {
  font-size: 24px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .top-score-module .top-score-wrap .tr-col.rank, .top-score-module .top-score-wrap .th-col.rank {
    font-size: 12px;
  }
}
.top-score-module .top-score-wrap .tr-col.player, .top-score-module .top-score-wrap .th-col.player {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 1023px) {
  .top-score-module .top-score-wrap .tr-col.player, .top-score-module .top-score-wrap .th-col.player {
    font-size: 12px;
  }
}
.top-score-module .top-score-wrap .tr-col.player img, .top-score-module .top-score-wrap .th-col.player img {
  width: 38px;
  height: 38px;
}
@media only screen and (max-width: 1023px) {
  .top-score-module .top-score-wrap .tr-col.player img, .top-score-module .top-score-wrap .th-col.player img {
    width: 24px;
    height: 24px;
  }
}
.top-score-module .top-score-wrap .tr-col.goals, .top-score-module .top-score-wrap .th-col.goals {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .top-score-module .top-score-wrap .tr-col.goals, .top-score-module .top-score-wrap .th-col.goals {
    font-size: 12px;
  }
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

.gallery .gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 10px 20px;
}
@media only screen and (max-width: 1024px) {
  .gallery .gallery-header {
    flex-direction: column;
    gap: 10px;
  }
}
.gallery .gallery-header .open-gallery {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.gallery .nGY2 .nanoGalleryLBarOff {
  height: 0;
  margin: 0;
}

/*// Mobile first (max-width)
@include respond-to(medium) {
  .tester {
    display: none;
  }
}

// Max-width
@include respond-to(below-large, min) {
  .tester {
    display: block;
  }
}*/
body {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="4"] {
  --color-primary: #5000E0;
  --color-primary-light: #F1EAFF;
}

body[data-league="5"] {
  --color-primary: #A57C00;
  --color-primary-light: #E6D8AC;
}

body[data-league="32"] {
  --color-primary: #32451D;
  --color-primary-light: #BAC6AD;
}

body[data-league="0"] {
  --color-primary: #15234A;
  --color-primary-light: #9699A1;
}

.next-matches {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media only screen and (max-width: 1023px) {
  .next-matches {
    gap: 30px;
  }
}
.next-matches .matches-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.next-matches .matches-wrap .match-list {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .next-matches .matches-wrap .match-list {
    flex-direction: row;
  }
}
@media only screen and (max-width: 1023px) {
  .next-matches .matches-wrap .match-list {
    flex-direction: column;
  }
}
.next-matches .matches-wrap .match-list .match {
  width: 360px;
  background-color: #ffffff;
  border: 4px solid var(--color-primary);
  padding-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .next-matches .matches-wrap .match-list .match {
    width: calc((100% - 60px) / 3);
  }
}
@media only screen and (max-width: 1023px) {
  .next-matches .matches-wrap .match-list .match {
    width: 100%;
  }
}
.next-matches .matches-wrap .match-list .match .match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
}
.next-matches .matches-wrap .match-list .match .teams {
  display: flex;
  width: 100%;
  padding: 0 10px;
}
.next-matches .matches-wrap .match-list .match .teams > div {
  padding-top: 20px;
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  font-size: 11px;
}
.next-matches .matches-wrap .match-list .match .teams > div div {
  width: 80%;
  font-size: 10px;
  text-align: center;
}
.next-matches .matches-wrap .match-list .match .teams > div img {
  width: 60px;
}
.next-matches .matches-wrap .match-list .match .time-stadium {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}
.next-matches .matches-wrap .match-list .match .time-stadium .time {
  font-size: 12px;
  color: var(--color-primary);
  font-weight: bold;
}
.next-matches .matches-wrap .match-list .match .time-stadium .stadium {
  font-size: 10px;
  color: #888888;
  text-align: center;
  padding: 0 20px;
}
