.calendar--section {
  padding: var(--spacing-large) 0;
}
.calendar--section .section--wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.calendar--section .heading__container {
  margin-bottom: 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  overflow: visible !important;
}
@media screen and (max-width: 1200px) {
  .calendar--section .heading__container {
    margin-bottom: 25px;
    flex-direction: column;
  }
}
.calendar--section .heading__container .heading {
  font-family: "Tusker FoxNFL 5500 Angled";
  font-weight: 100;
  color: #fff;
}
.calendar--section .heading__container .heading span {
  font-family: "Tusker FoxNFL 6700 Angled";
  font-weight: 100;
  color: var(--fox-red);
}
.calendar--section .heading__container .heading {
  font-weight: 600;
  font-size: 82px;
}
@media screen and (max-width: 1400px) {
  .calendar--section .heading__container .heading {
    font-size: 52px;
  }
}
@media screen and (max-width: 768px) {
  .calendar--section .heading__container .heading {
    font-size: 28px;
  }
}
.calendar--section .heading__container .heading em strong {
  font-weight: 800;
}
.calendar--section .heading__container .subheading {
  font-family: "Tusker FoxNFL 5500";
  font-weight: 100;
  color: #fff;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .calendar--section .heading__container .subheading {
    font-size: 16px;
  }
}
.calendar--section .filter--bar {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 12px;
}
.calendar--section .filter--date {
  position: relative;
}
.calendar--section .filter--date .filter--date-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-bold);
  font-size: var(--font-size-caption-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap;
}
.calendar--section .filter--date .filter--date-btn.is-active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .calendar--section .filter--date .filter--date-btn {
    font-size: 14px;
  }
}
.calendar--section .filter--dropdown {
  position: relative;
  display: inline-block;
}
.calendar--section .filter--trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-bold);
  font-size: var(--font-size-caption-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap;
}
.calendar--section .filter--trigger .filter--chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .calendar--section .filter--trigger {
    font-size: 14px;
  }
}
.calendar--section .filter--dropdown.is-open .filter--trigger .filter--chevron {
  transform: rotate(180deg);
}
.calendar--section .filter--dropdown.is-open .filter--options {
  display: block;
}
.calendar--section .filter--options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--fox-blue-normal, #002e56);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 10;
  max-height: 300px;
  overflow-y: auto;
}
@media screen and (max-width: 1200px) {
  .calendar--section .filter--options {
    left: auto;
    right: 0;
  }
}
.calendar--section .filter--option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  color: #fff;
  font-family: var(--font-medium);
  font-size: var(--font-size-caption-primary);
  transition: background 0.15s ease;
}
.calendar--section .filter--option:hover, .calendar--section .filter--option.is-active {
  background: rgba(255, 255, 255, 0.1);
}
.calendar--section .filter--option .option-flag {
  width: 32px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}
.calendar--section .filter--option .option-name {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 768px) {
  .calendar--section .filter--option {
    font-size: 14px;
  }
}
.calendar--section .content--wrapper {
  width: 100%;
}
.calendar--section .content--wrapper .swiper {
  width: 100%;
  padding-bottom: 40px;
}
.calendar--section .content--wrapper .swiper-wrapper {
  align-items: stretch;
}
.calendar--section .content--wrapper .swiper-slide {
  display: flex;
  height: auto;
}
.calendar--section .content--wrapper .swiper-scrollbar {
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
}
.calendar--section .content--wrapper .swiper-scrollbar .swiper-scrollbar-drag {
  background: #ffffff;
  border-radius: 0;
}
.calendar--section .content--wrapper .match--item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}
.calendar--section .content--wrapper .match--item .heading {
  font-size: 34px;
}
.calendar--section .content--wrapper .match--item .vs {
  font-size: 24px;
}
.calendar--section .content--wrapper .match--item .heading,
.calendar--section .content--wrapper .match--item .vs {
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .calendar--section .content--wrapper .match--item .heading {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .calendar--section .content--wrapper .match--item .vs {
    font-size: 18px;
  }
}
.calendar--section .content--wrapper .match--item .top--container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
  gap: 20px;
  padding: 40px 16px 30px 16px;
  background: #fff;
  color: #000;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}
.calendar--section .content--wrapper .match--item .top--container .team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  line-height: 1.1;
}
.calendar--section .content--wrapper .match--item .top--container .team .img--wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 0 30px 0 30px;
  border: 2px solid rgb(0, 0, 0);
}
.calendar--section .content--wrapper .match--item .top--container .team .img--wrapper img {
  width: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.2);
}
.calendar--section .content--wrapper .match--item .top--container .team .team-name {
  font-family: var(--font-medium);
  font-size: var(--font-size-caption-secondary);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.2px;
  line-height: 1.1;
}
.calendar--section .content--wrapper .match--item .top--container .vs {
  font-family: var(--font-medium);
  font-size: var(--font-size-caption-primary);
  text-transform: uppercase;
  flex-shrink: 0;
  color: #000;
  align-self: center;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .calendar--section .content--wrapper .match--item .top--container {
    padding: 30px 10px 10px 10px;
  }
}
.calendar--section .content--wrapper .match--item .bottom--container {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 15px 25px 25px;
  background: var(--light-grey-normal);
  color: var(--fox-blue-normal);
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border: none;
  font-size: var(--font-size-secondary);
  font-family: var(--secondary-medium);
}
.calendar--section .content--wrapper .match--item .bottom--container .match--metadata {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-caption-primary);
}
.calendar--section .content--wrapper .match--item .bottom--container .match--network {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.calendar--section .content--wrapper .match--item .bottom--container .match--network a {
  transition: transform 0.3s ease;
  display: block;
  max-width: 50px;
}
.calendar--section .content--wrapper .match--item .bottom--container .match--network a:hover {
  transform: scale(1.05) translateY(-2px);
}
.calendar--section .content--wrapper .match--item .bottom--container .match--network img {
  max-width: 150px;
  max-height: 17px;
}
.calendar--section .content--wrapper .match--item .bottom--container .match--network .label {
  line-height: 1;
  font-family: var(--caption-secondary-bold);
  font-size: var(--font-size-caption-secondary);
  padding-right: 10px;
  margin-top: 1px;
}
.calendar--section .content--wrapper .match--item.hidden {
  display: none;
}
.calendar--section .view--more {
  display: flex;
  padding: 10px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: var(--uni-red, #e41c23);
  outline: none;
  border: none;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .calendar--section .view--more {
    font-size: 14px;
    margin-top: 25px;
  }
}

/*# sourceMappingURL=calender.css.map */
