/*Table*/
.wow-fixtures-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: transparent;
}

.wow-no-fixtures-message {
  text-align: center;
  padding: 40px;
  color: var(--support-200-background);
  font-family: Margesy;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5em;
  width: 100%;
}

/*Header*/
.wow-fixtures-table-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
/*Items*/
.wow-fixtures-table-header .wow-fixtures-table-header-item,
.wow-fixtures-table-header .wow-fixtures-table-header-item-special {
  font-family: Margest;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5em;
  border-radius: 4px 4px 0 0;
}

.wow-fixtures-table-header .wow-fixtures-table-header-item {
  background-color: var(--secondary-400-main);
  color: var(--support-200-background);
  cursor: pointer;
  transition: all 0.3s ease;
}

.wow-fixtures-table-header .wow-fixtures-table-header-item.active {
  background-color: var(--secondary-700);
  color: var(--main-400-main);
}

.wow-fixtures-table-header .wow-fixtures-table-header-item:hover {
  background-color: var(--secondary-600);
}

.wow-fixtures-table-header .wow-fixtures-table-header-item:hover:not(.active) {
  background-color: var(--secondary-600);
}

.wow-fixtures-table-header .wow-fixtures-table-header-item-special {
  background-color: var(--secondary-700);
  height: stretch !important;
  position: relative;
}

.wow-fixtures-table-header .wow-fixtures-table-header-item-special svg {
  position: absolute;
  right: 16px;
  top: 4px;
  fill: var(--secondary-300);
  width: 24px;
  height: 24px;
}

.wow-fixtures-table-header .wow-fixtures-table-header-item-special select,
.wow-fixtures-table-header
  .wow-fixtures-table-header-item-special
  select::picker(select) {
  appearance: base-select !important;
  outline: none;
  border: 0;
  font-family: Margest;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5em;
}

.wow-fixtures-table-header .wow-fixtures-table-header-item-special select {
  /*display: flex;*/
  background-color: transparent;
  text-align: end;
  height: stretch !important;
  color: var(--secondary-300);
  border: 0px solid transparent;
  width: auto;
  min-width: 194px;
  justify-self: end;
  /*padding: 0 24px 0 0;*/
}

/*.wow-fixtures-table-header
  .wow-fixtures-table-header-item-special
  select::picker-icon {
  display: none;
}*/

.wow-fixtures-table-header
  .wow-fixtures-table-header-item-special
  select:focus-visible {
  outline: none;
}

.wow-fixtures-table-header
  .wow-fixtures-table-header-item-special
  select::picker-icon {
  display: none;
}

.wow-fixtures-table-header
  .wow-fixtures-table-header-item-special
  select
  option {
  /*display: flex;*/
  padding: 16px 16px !important;
  background-color: var(--secondary-600-text-light-primary) !important;
  color: var(--support-200-background);
  justify-content: start;
}

.wow-fixtures-table-header
  .wow-fixtures-table-header-item-special
  select
  option::checkmark {
  display: none;
}

.wow-fixtures-table-header
  .wow-fixtures-table-header-item-special
  select
  option:checked {
  background-color: var(--main-400-main) !important;
  color: var(--secondary-600-text-light-primary) !important;
}

.wow-fixtures-table-header
  .wow-fixtures-table-header-item-special
  select
  option:hover {
  background-color: var(--main-400-main) !important;
  color: var(--secondary-600-text-light-primary);
  cursor: pointer;
}

@media only screen and (min-width: 1025px) {
  .wow-fixtures-table-header .wow-fixtures-table-header-item,
  .wow-fixtures-table-header .wow-fixtures-table-header-item-special {
    padding: 4px 16px;
  }

  .wow-fixtures-table-header .wow-fixtures-table-header-item-special {
    width: 37.11%;
    flex-grow: 1;
    height: stretch !important;
  }

  .wow-fixtures-table-header .wow-fixtures-table-header-item-special select {
    padding: 0 24px 0 0;
  }

  /*.wow-fixtures-table-header
    .wow-fixtures-table-header-item-special
    #fixture-division-filter {
    width: 100%;
    padding: 0;
  }*/
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .wow-fixtures-table-header .wow-fixtures-table-header-item,
  .wow-fixtures-table-header .wow-fixtures-table-header-item-special {
    padding: 4px 16px;
    border-radius: 4px 4px 0 0;
    height: stretch !important;
    align-content: center;
  }

  .wow-fixtures-table-header .wow-fixtures-table-header-item-special {
    width: 37.11%;
    flex-grow: 1;
    height: stretch !important;
  }

  .wow-fixtures-table-header .wow-fixtures-table-header-item-special select {
    padding: 0 24px 0 0;
  }

  /*.wow-fixtures-table-header
    .wow-fixtures-table-header-item-special
    #fixture-division-filter {
    width: 100%;
    padding: 0;
  }*/
}

@media only screen and (max-width: 767px) {
  .wow-fixtures-table-header {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }

  .wow-fixtures-table-header .wow-fixtures-table-header-item-special {
    order: 0;
  }

  .wow-fixtures-table-header .wow-fixtures-table-header-item {
    order: 1;
    width: auto;
    padding: 4px 16px;
  }

  .wow-fixtures-table-header .wow-fixtures-table-header-item-special select {
    padding: 3px 24px 0 8px;
  }

  /*.wow-fixtures-table-header
    .wow-fixtures-table-header-item-special
    #fixture-division-filter {
    width: 144px;
    padding: 4px 16px;
  }*/
}

/*Body*/
.wow-fixtures-table-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  background-color: var(--secondary-700);
  /*padding: 24px;*/
  overflow-y: auto;
}

/*Blocks*/
.wow-fixtures-table-block,
.wow-fixtures-table-block-today {
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: opacity 0.3s ease;
  border-radius: 4px;
}

.wow-fixtures-table-block-today {
  background-color: var(--main-400-main);
}

/*Date*/
.wow-fixtures-table-block .wow-fixtures-table-container-date,
.wow-fixtures-table-block-today .wow-fixtures-table-container-date {
  display: flex;
  flex-direction: row;
  padding: 8px 16px;
  justify-content: space-between;
}

/*Hour Text*/
.wow-fixtures-table-block
  .wow-fixtures-table-container-date
  .wow-fixtures-table-date,
.wow-fixtures-table-block-today
  .wow-fixtures-table-container-date
  .wow-fixtures-table-date,
.wow-fixtures-table-block-today
  .wow-fixtures-table-container-date
  .wow-fixtures-table-caption {
  width: fit-content;
  font-family: Margest;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5em;
}
/*Hour Color*/
.wow-fixtures-table-block
  .wow-fixtures-table-container-date
  .wow-fixtures-table-date {
  color: var(--support-200-background);
}
/*Hour Color*/
.wow-fixtures-table-block-today
  .wow-fixtures-table-container-date
  .wow-fixtures-table-date,
.wow-fixtures-table-block-today
  .wow-fixtures-table-container-date
  .wow-fixtures-table-caption {
  color: var(--secondary-600-text-light-primary);
}

.wow-fixtures-table-block-today
  .wow-fixtures-table-container-date
  .wow-fixtures-table-caption {
  display: flex;
  gap: 7px;
}

/*Game*/
.wow-fixtures-table-block .wow-fixtures-table-game-container,
.wow-fixtures-table-block-today .wow-fixtures-table-game-container {
  display: flex;
  flex-direction: row;
  padding: 16px 16px 16px 0;
  background-color: var(--secondary-600-text-light-primary);
  border-radius: 4px;
  justify-content: space-between;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: solid var(--secondary-400-main);
  border-width: 0 0 1px 0;
}

/*Select all elements with class wow-fixtures-table-game-container that have been hidden via style="display: none;"*/
.wow-fixtures-table-game-container[style*="display: none"] {
  opacity: 0;
  transform: translateY(-10px);
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.wow-fixtured-table-game-left {
  display: flex;
  align-items: center;
  width: 43%;
}

/*Division*/
.wow-fixtures-table-game-container .wow-fixtures-table-game-division {
  display: flex;
  width: fit-content;
  padding: 2px 8px;
  background-color: transparent;
  border: solid var(--main-400-main);
  border-width: 1px 1px 1px 0px;
  color: var(--main-400-main);
  border-radius: 0 4px 4px 0;
  text-align: center;
  align-items: center;
  margin-right: 24px;
  font-family: Plus Jakarta Sans;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.333em;
  width: 104px;
  justify-content: center;
}
/*Icon list hours+golfcourse*/
.wow-fixtures-table-game-container .wow-fixtures-table-game-hour {
  width: 56px;
}

.wow-fixtures-table-game-container .wow-fixtures-table-game-team-golfCourse {
  width: 44%;
}

.wow-fixtures-table-game-container
  .wow-fixtures-table-game-team-golfCourse
  div[data-icon="text"] {
  text-align: start;
}

.wow-fixtures-table-game-container .wow-fixtures-table-game-hour,
.wow-fixtures-table-game-container .wow-fixtures-table-game-team-golfCourse {
  display: flex;
  background-color: transparent;
  border: 0;
  border-radius: 4px;
  text-align: center;
  align-items: center;
  column-gap: 8px;
  margin-right: 24px;
}

.wow-fixtures-table-game-container
  .wow-fixtures-table-game-hour
  div[data-icon="text"],
.wow-fixtures-table-game-container
  .wow-fixtures-table-game-team-golfCourse
  div[data-icon="text"] {
  font-family: Margest;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.714em;
}

.wow-fixtures-table-game-container
  .wow-fixtures-table-game-hour
  span[data-iconList="icon"],
.wow-fixtures-table-game-container
  .wow-fixtures-table-game-team-golfCourse
  span[data-iconList="icon"] {
  display: flex;
}

.wow-fixtures-table-game-container
  .wow-fixtures-table-game-hour
  span[data-iconList="icon"]
  svg,
.wow-fixtures-table-game-container
  .wow-fixtures-table-game-team-golfCourse
  span[data-iconList="icon"]
  svg {
  width: 16px;
  height: 16px;
}

/*Scores*/
.wow-fixtures-table-game-teams-scores {
  display: flex;
  flex-direction: row;
  width: 56.2%;
  /*width: 544px;*/
  justify-content: end;
  border-radius: 4px;
  align-items: center;
}
/*Teams*/
.wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-team-home,
.wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-team-away {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-team-home a,
.wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-team-away a {
  display: flex;
  align-items: center;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.wow-fixtures-table-game-teams-scores
  .wow-fixtures-table-game-team-home
  a:hover,
.wow-fixtures-table-game-teams-scores
  .wow-fixtures-table-game-team-away
  a:hover {
  opacity: 0.7;
}

.wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-team-home {
  justify-content: end;
}

.wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-team-away {
  justify-content: start;
}

.wow-fixtures-table-game-teams-scores
  .wow-fixtures-table-game-team-home
  .wow-fixtures-table-game-team-name,
.wow-fixtures-table-game-teams-scores
  .wow-fixtures-table-game-team-away
  .wow-fixtures-table-game-team-name {
  font-family: Margest;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5em;
  color: var(--support-200-background);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  text-align: end;
}

.wow-fixtures-table-game-teams-scores
  .wow-fixtures-table-game-team-home
  .wow-fixtures-table-game-team-name {
  text-align: end;
}

.wow-fixtures-table-game-teams-scores
  .wow-fixtures-table-game-team-away
  .wow-fixtures-table-game-team-name {
  text-align: start;
}

.wow-fixtures-table-game-teams-scores
  .wow-fixtures-table-game-team-home
  .wow-fixtures-table-game-team-image,
.wow-fixtures-table-game-teams-scores
  .wow-fixtures-table-game-team-away
  .wow-fixtures-table-game-team-image {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  margin: 0 16px;
  object-fit: contain;
  object-position: center;
  background-color: #fff;
}

/*Scores values*/
.wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-won,
.wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-draw,
.wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-lost {
  width: 32px;
  align-self: center;
  text-align: center;
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-style: normal;
  color: var(--support-200-background);
}

.wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-today {
  width: 96px;
  padding: 2px 8px;
  background-color: var(--main-400-main);
  border-radius: 4px;
  border: 1px solid var(--main-400-main);
  align-content: center;
  text-align: center;
  color: var(--secondary-600-text-light-primary);
  font-family: Plus Jakarta Sans;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.714em;
  height: fit-content;
}

.wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-next {
  width: 96px;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid var(--main-400-main);
  align-content: center;
  text-align: center;
  color: var(--main-400-main);
  font-family: Plus Jakarta Sans;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.714em;
  height: fit-content;
}

@media only screen and (min-width: 1025px) {
  .wow-fixtures-table-body {
    max-height: 1760px;
    /*max-height: 600px;*/
    padding: 24px;
  }

  .wow-fixtured-table-game-left {
    flex-direction: row;
  }

  .wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-won,
  .wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-draw,
  .wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-lost {
    font-size: 20px;
    line-height: 1.6em;
  }

  .wow-fixtures-table-block-today
    .wow-fixtures-table-container-date
    .wow-fixtures-table-caption {
    width: 32%;
  }

  .wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-team-home,
  .wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-team-away {
    width: 38.5%;
    min-width: 215px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .wow-fixtures-table-body {
    max-height: 1816px;
    padding: 24px;
  }

  .wow-fixtures-table-block .wow-fixtures-table-game-container,
  .wow-fixtures-table-block-today .wow-fixtures-table-game-container {
    flex-direction: column;
  }

  .wow-fixtures-table-block-today
    .wow-fixtures-table-container-date
    .wow-fixtures-table-caption {
    width: 56.2%;
  }

  .wow-fixtured-table-game-left {
    width: 100%;
  }

  .wow-fixtures-table-game-teams-scores {
    padding: 16px 0 0 0;
    width: 100%;
    justify-content: center;
  }

  .wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-won,
  .wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-draw,
  .wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-lost {
    font-size: 16px;
    line-height: 1.5em;
  }

  .wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-team-home,
  .wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-team-away {
    width: 38.5%;
  }
}

@media only screen and (max-width: 767px) {
  .wow-fixtures-table-body {
    max-height: 2000px;
    padding: 24px 8px;
  }

  .wow-fixtures-table-block .wow-fixtures-table-container-date,
  .wow-fixtures-table-block-today .wow-fixtures-table-container-date {
    justify-content: center;
  }

  .wow-fixtures-table-block-today .wow-fixtures-table-container-date {
    flex-direction: column;
    align-items: center;
  }

  /*Game*/
  .wow-fixtures-table-block .wow-fixtures-table-game-container,
  .wow-fixtures-table-block-today .wow-fixtures-table-game-container {
    flex-direction: column;
    gap: 16px;
    padding: 16px 8px;
  }

  .wow-fixtured-table-game-left {
    width: 100%;
    flex-wrap: wrap;
    gap: 16px;
  }
  /*Division*/
  .wow-fixtures-table-game-container .wow-fixtures-table-game-division {
    width: 100%;
    border-width: 1px;
    border-radius: 4px;
    margin-right: 0 !important;
    justify-content: center;
  }
  /*Icon List*/
  .wow-fixtures-table-game-container .wow-fixtures-table-game-hour,
  .wow-fixtures-table-game-container .wow-fixtures-table-game-team-golfCourse {
    width: fit-content;
    align-items: center;
    column-gap: 8px;
    margin-right: 0;
    flex-grow: 1;
  }

  .wow-fixtures-table-game-container .wow-fixtures-table-game-hour {
    justify-content: end;
  }

  .wow-fixtures-table-game-container .wow-fixtures-table-game-team-golfCourse {
    justify-content: start;
  }

  /*Scores*/
  .wow-fixtures-table-game-teams-scores {
    width: 100%;
    /*width: 544px;*/
    justify-content: center;
    gap: 16px;
    align-items: center;
  }

  .wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-team-home,
  .wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-team-away {
    width: fit-content;
  }

  .wow-fixtures-table-game-teams-scores
    .wow-fixtures-table-game-team-home
    .wow-fixtures-table-game-team-image,
  .wow-fixtures-table-game-teams-scores
    .wow-fixtures-table-game-team-away
    .wow-fixtures-table-game-team-image {
    display: none;
  }

  /*Scores values*/
  .wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-won,
  .wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-draw,
  .wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-lost {
    font-size: 16px;
    line-height: 1.5em;
  }

  .wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-team-home,
  .wow-fixtures-table-game-teams-scores .wow-fixtures-table-game-team-away {
    width: 38.5%;
  }
}
