/*----------------------------------------*/
/* CALENDAR MATCHE */
/*----------------------------------------*/
.calendar .matche {
  justify-content: flex-start;
}
.calendar .matche .time {
  min-width: 68px;
  width: 68px;
}
.calendar .matche .teams {
  min-width: 400px;
  max-width: 500px;
}
.calendar .matche .team .logo:first-child {
  margin-left: 0;
  margin-right: 8px;
}
.calendar .matche .league {
  min-width: 146px;
  width: 146px;
}
.calendar .matche .count {
  counter-reset: matcheCount;
  display: flex;
  list-style: none;
  margin-left: auto;
  min-width: 200px;
  padding: 0;
  width: 200px;
}
.calendar .matche .count > li {
  color: #444F5A;
  counter-increment: matcheCount;
  font-size: 16px;
  font-weight: 500;
  padding-left: 16px;
  margin-right: 20px;
  position: relative;
}
.calendar .matche .count > li:last-child {
  margin: 0;
}
.calendar .matche .count > li::before {
  background: #A8AFB6;
  border-radius: 100%;
  color: #FFF;
  content: counter(matcheCount, upper-roman);
  display: block;
  font-size: 9px;
  height: 13px;
  line-height: 13px;
  left: 0;
  position: absolute;
  text-align: center;
  top: 4px;
  width: 13px;
}
.calendar .matche .count > li span {
  font-weight: normal;
  opacity: 0.7;
}
.calendar .matche .status {
  margin-left: auto;
}
@media print, (max-width: 1279px) {
  .calendar .list {
    overflow: auto;
    max-width: 100%;
  }
  .calendar .matche .league {
    min-width: 136px;
    width: 136px;
  }
  .calendar .matche .count {
    margin-left: 16px;
    min-width: 180px;
    width: 180px;
  }
  .calendar .matche .count > li {
    font-size: 15px;
  }
  .calendar .matche .status {
    max-width: 200px;
    width: 200px;
  }
}

/*----------------------------------------*/
/* MATCHE FINISHED */
/*----------------------------------------*/
.matche_finished .data {
  background: #7BCBEC;
  border-radius: 12px 12px 0 0;
}
.matche_finished .title {
  -webkit-text-stroke-color: #0092C9;
}
.matche_finished .result .parts {
  border-top-color: #7BCBEC;
}
.matche_finished .result .part + .part {
  border-left-color: #7BCBEC;
}

/*----------------------------------------*/
/* MATCHE BREAKDOWN */
/*----------------------------------------*/
.matche-breakdown {
  background: #ECEDEE;
  border-radius: 0 0 12px 12px;
  padding: 40px 8px;
}
.matche-breakdown .title {
  color: #576573;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.14;
  margin: 40px 0 16px;
  text-align: center;
  text-transform: uppercase;
}
.matche-breakdown .title:first-child {
  margin-top: 0;
}
.matche-breakdown .line {
  display: flex;
  margin: 8px 0 0;
}
.matche-breakdown .line .event {
  align-items: center;
  background: #FFF;
  border-radius: 8px;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  height: 72px;
  padding: 0 12px;
  position: relative;
  width: calc(50% - 58px);
}
.matche-breakdown .line .event::before {
  background: #FA7047 url('/local/templates/main/assets/images/puck.svg') 50% 50% no-repeat;
  border-radius: 8px;
  content: '';
  display: block;
  position: absolute;
  height: 48px;
  top: 12px;
  width: 48px;
}
.matche-breakdown .line .event:first-child {
  justify-content: flex-end;
  padding-right: 76px;
  text-align: right;
}
.matche-breakdown .line .event:last-child {
  justify-content: flex-start;
  padding-left: 76px;
}
.matche-breakdown .line .event:first-child::before {
  right: 12px;
}
.matche-breakdown .line .event:last-child::before {
  left: 12px;
}
.matche-breakdown .line .time {
  align-items: center;
  border: 1px solid #A8AFB6;
  border-radius: 8px;
  color: #576573;
  display: flex;
  font-size: 24px;
  font-weight: bold;
  height: 72px;
  justify-content: center;
  width: 100px;
}
.matche-breakdown .line .time:first-child {
  margin: 0 8px 0 auto;
}
.matche-breakdown .line .time:last-child {
  margin: 0 auto 0 8px;
}
@media screen and (max-width: 519px) {
  .matche-breakdown .line .event::before {
    display: none;
  }
  .matche-breakdown .line .event:first-child,
  .matche-breakdown .line .event:last-child {
    padding: 0 12px;
  }
}

/*----------------------------------------*/
/* VIDEO FRAME */
/*----------------------------------------*/
.video-frame {
  aspect-ratio: 16 / 9;
  position: relative;
}
.video-frame iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/*----------------------------------------*/
/* FOOTER (fix) */
/*----------------------------------------*/
footer {
  padding-top: 48px;
}

/*----------------------------------------*/
/* PARTNERS CAROUSEL (2026) */
/*----------------------------------------*/
.v26-partners-carousel {}
.v26-partners-carousel__content {
  position: relative;
}
.v26-partners-carousel__nav {
  background: #0092C9;
  border-radius: 8px;
  color: #FFF;
  height: 48px;
  margin: -24px 0 0;
  position: absolute;
  top: 50%;
  width: 48px;
  z-index: 10;
}
.v26-partners-carousel__nav--prev {
  left: -64px;
}
.v26-partners-carousel__nav--prev svg {
  transform: scaleX(-1);
}
.v26-partners-carousel__nav--next {
  right: -64px;
}
.v26-partners-carousel__items {
  border-radius: 12px;
  overflow: hidden;
}
.v26-partners-carousel__item {
  align-items: center;
  background: #ECEDEE;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding: 26px;
}
.v26-partners-carousel__item img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.v26-partners-carousel__pager {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 16px 0 0;
}
.v26-partners-carousel__pager .swiper-pagination-bullet-active {
  background: #0092C9;
  opacity: 1;
}
@media screen and (min-width: 1400px) {
  .v26-partners-carousel__pager {
    display: none;
  }
}
@media screen and (max-width: 1399px) {
  .v26-partners-carousel__nav {
    display: none;
  }
}