/*
#wg-api-football-standings {
  --font: "mentone", sans-serif;
  --background-color: #222;
  --background-color-header: #121212;
  --color-text: #fff;
  --color-text-header: #fff;
  --color-green: #01d099;
  --color-red: #f64e60;
  --color-yellow: #ffa800;
  --primary-font-size: 0.9em;
  --secondary-font-size: 10px;
  --header-font-size: 11px;
  --header-text-transform: uppercase;
  --header-link-text-transform: none;
  --border-bottom: 0.5px solid var(--background-color-header);
  --primary-padding: 6px 6px;
  --primary-line-height: 1.5;
  --secondary-padding: 0.4rem;
  --button-info-font-size: 9px;
  --button-info-line-height: 16px;
  --toolbar-font-size: var(--header-font-size);
  --modale-background-overlay: rgba(0, 0, 0, 0.4);
  --modale-close-size: 28px;
  --modale-score-size: 36px;
  --modale-teams-size: 13px;
  --standings-team-form-font-size: 9px;
  --standings-team-form-line-height: 16px;
  --flags-size: 16px;
  --teams-logo-size: 16px;
  --teams-logo-modal-size: 90%;
  --teams-logo-block-modal-size: 85px;
  --teams-logo-block-radius-modal: 5px;
  --teams-logo-block-background-modal: var(--background-color-header);
}
#wg-api-football-standings .wg-table {
  font-family: var(--font);
  width: 100%;
  border-collapse: collapse;
}
#wg-api-football-standings td {
  padding: var(--primary-padding);
  font-size: var(--primary-font-size);
  letter-spacing: 0;
  line-height: var(--primary-line-height);
  vertical-align: middle;
  background: var(--background-color);
  color: var(--color-text);
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: var(--border-bottom);
}
#wg-api-football-standings td > span {
  vertical-align: middle;
}
#wg-api-football-standings .wg_no_data {
  padding: var(--secondary-padding);
  font-size: var(--primary-font-size);
  letter-spacing: 0;
  line-height: var(--primary-line-height);
  margin: auto;
  vertical-align: middle;
  text-align: center;
  font-weight: 600;
  background: var(--background-color);
  color: var(--color-text);
}
#wg-api-football-standings .wg_toolbar {
  font-family: var(--font);
  padding: var(--secondary-padding);
  padding-left: 0;
  padding-right: 0;
  font-size: var(--toolbar-font-size);
  font-weight: 600;
  line-height: initial;
  background: var(--background-color);
  color: var(--color-text-header);
}
#wg-api-football-standings .wg_toolbar > span {
  font-family: var(--font);
  font-size: var(--toolbar-font-size);
  letter-spacing: normal;
}
#wg-api-football-standings .wg_header {
  padding: var(--secondary-padding);
  font-size: var(--header-font-size);
  font-weight: 600;
  background: var(--background-color-header);
  color: var(--color-text-header);
}
#wg-api-football-standings .wg_header > span {
  padding-left: 5px;
  vertical-align: middle;
}
#wg-api-football-standings .wb_header_link {
  font-size: var(--secondary-font-size);
  font-weight: 350;
  float: right;
  margin-right: 10px;
  cursor: pointer;
  text-decoration: underline;
  text-transform: var(--header-link-text-transform);
}
#wg-api-football-standings .wg_logo {
  width: var(--teams-logo-size);
  vertical-align: middle;
}
#wg-api-football-standings .wg_logo_game {
  vertical-align: middle;
  max-width: var(--teams-logo-modal-size);
  max-height: var(--teams-logo-modal-size);
}
#wg-api-football-standings .wb_img_block {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--teams-logo-block-background-modal);
  width: var(--teams-logo-block-modal-size);
  height: var(--teams-logo-block-modal-size);
  border-radius: var(--teams-logo-block-radius-modal);
}
#wg-api-football-standings .wg_flag {
  width: var(--flags-size);
  vertical-align: middle;
}
#wg-api-football-standings .wg_no_border {
  border: 0;
}
#wg-api-football-standings .wg_text_left {
  text-align: left;
}
#wg-api-football-standings .wg_text_right {
  text-align: right;
}
#wg-api-football-standings .wg_text_center {
  text-align: center;
  white-space: nowrap;
}
#wg-api-football-standings .wg_bolder {
  font-weight: 700;
}
#wg-api-football-standings .wg_bolder_300 {
  font-weight: 300;
}
#wg-api-football-standings .wg_bolder_600 {
  font-weight: 600;
}
#wg-api-football-standings .wg_progress_bar {
  margin-top: -3px;
  width: 100%;
  background: var(--background-color-header);
}
#wg-api-football-standings .wg_progress_bar_green {
  height: 6px;
  background-color: var(--color-green);
}
#wg-api-football-standings .wg_progress_bar_red {
  height: 6px;
  background-color: var(--color-red);
}
#wg-api-football-standings .wg_progress_bar_home {
  transform: scaleX(-1);
}
#wg-api-football-standings .wg_progress {
  animation: tilt 2s linear infinite;
  font-weight: 700;
  color: var(--color-red);
}
@keyframes tilt {
  50% {
    opacity: 0;
  }
}
#wg-api-football-standings .wg_liveTime {
  color: var(--color-red);
}
#wg-api-football-standings .wg_breakTime {
  font-weight: 600;
  background: var(--color-green);
  color: var(--background-color);
}
#wg-api-football-standings .wg_finished {
  color: var(--color-green);
}
#wg-api-football-standings .wg_canceled {
  color: var(--color-yellow);
}
#wg-api-football-standings .wg_form {
  display: inline-block;
  margin: 1px;
  width: 14px;
  height: 14px;
  line-height: var(--standings-team-form-line-height);
  font-size: var(--standings-team-form-font-size);
  text-align: center;
  position: relative;
  color: #fff;
}
#wg-api-football-standings .wg_form_win {
  background: var(--color-green);
}
#wg-api-football-standings .wg_form_draw {
  background: var(--color-yellow);
}
#wg-api-football-standings .wg_form_lose {
  background: var(--color-red);
}
#wg-api-football-standings .wg_info {
  display: inline-block;
  border-radius: 14px;
  margin: 1px;
  width: 14px;
  height: 14px;
  line-height: var(--button-info-line-height);
  font-size: var(--button-info-font-size);
  text-align: center;
  position: relative;
  color: #fff;
  background: var(--background-color-header);
}
#wg-api-football-standings .wg_width_90 {
  width: 90px;
}
#wg-api-football-standings .wg_width_80 {
  width: 80px;
}
#wg-api-football-standings .wg_width_70 {
  width: 70px;
}
#wg-api-football-standings .wg_width_60 {
  width: 60px;
}
#wg-api-football-standings .wg_width_50 {
  width: 50px;
}
#wg-api-football-standings .wg_width_30 {
  width: 30px;
}
#wg-api-football-standings .wg_width_25 {
  width: 25px;
}
#wg-api-football-standings .wg_width_20 {
  width: 20px;
}
#wg-api-football-standings .wg_p_lr_0 {
  padding-left: 0;
  padding-right: 0;
}
#wg-api-football-standings .wg_p_lr_1 {
  padding-left: 1px;
  padding-right: 1px;
}
#wg-api-football-standings .wg_p_lr_2 {
  padding-left: 2px;
  padding-right: 2px;
}
#wg-api-football-standings .wg_p_lr_3 {
  padding-left: 3px;
  padding-right: 3px;
}
#wg-api-football-standings .wg_p_lr_4 {
  padding-left: 4px;
  padding-right: 4px;
}
#wg-api-football-standings .wg_p_lr_5 {
  padding-left: 5px;
  padding-right: 5px;
}
#wg-api-football-standings .wg_p_tb_10 {
  padding-top: 10px;
  padding-bottom: 10px;
}
#wg-api-football-standings .wg_nowrap {
  white-space: nowrap;
}
#wg-api-football-standings .wg_width_33_p {
  width: 33%;
}
#wg-api-football-standings .wg_width_34_p {
  width: 34%;
}
#wg-api-football-standings .wg_width_50_p {
  width: 50%;
}
#wg-api-football-standings .wg_loader:after {
  content: " ";
  display: block;
  width: 45px;
  height: 45px;
  margin: auto;
  border-radius: 50%;
  border: 6px solid var(--color-green);
  border-color: var(--color-green) transparent var(--color-green) transparent;
  animation: wg_dual_ring 1.2s linear infinite;
}
@keyframes wg_dual_ring {
  0 {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
#wg-api-football-standings .wg_tooltip {
  cursor: pointer;
}
#wg-api-football-standings .wg_tooltip:hover {
  position: relative;
}
#wg-api-football-standings .wg_tooltip:before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  margin-left: 0;
  min-width: 80px;
  max-width: 200px;
  width: auto;
  padding: 5px;
  border-radius: 3px;
  background: var(--color-text);
  color: var(--background-color);
  text-align: center;
  display: none;
  z-index: 99999;
}
#wg-api-football-standings .wg_tooltip:hover:before {
  display: block;
}
#wg-api-football-standings .wg_tooltip .wg_tooltip_left:before {
  left: initial;
  margin: initial;
  right: 100%;
  margin-right: 0;
}
#wg-api-football-standings .wg_arrow {
  float: right;
  cursor: pointer;
  padding-left: 0 !important;
  margin-right: 5px;
  margin-left: 5px;
}
#wg-api-football-standings .wg_arrow_down {
  transform: rotate(90deg);
}
#wg-api-football-standings .wg_arrow_up {
  transform: rotate(-90deg);
}
#wg-api-football-standings .wg_hide {
  display: none;
}
#wg-api-football-standings .wg_button_toggle {
  padding: 5px;
  cursor: pointer;
}
#wg-api-football-standings .wg_button_toggle_game {
  padding: 5px;
  cursor: pointer;
  margin-left: -5px;
}
#wg-api-football-standings .wg_active {
  background: var(--color-green);
  color: var(--background-color);
}
#wg-api-football-standings .wg_absolute {
  position: absolute;
}
#wg-api-football-standings .wg_color_theme {
  color: var(--color-text);
}
#wg-api-football-standings .wg_modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: var(--modale-background-overlay);
}
#wg-api-football-standings .wg_modal_content {
  background-color: var(--background-color);
  margin: 10% auto;
  padding: 15px;
  padding-top: 5px;
  border: 1px solid var(--background-color-header);
  width: 90%;
}
#wg-api-football-standings .wg_modal_close {
  color: var(--background-color-header);
  float: right;
  font-size: var(--modale-close-size);
  font-weight: 700;
}
#wg-api-football-standings .wg_modal_close:focus,
.wg_modal_close:hover {
  color: var(--color-text);
  text-decoration: none;
  cursor: pointer;
}
#wg-api-football-standings .wg_modal_score {
  font-size: var(--modale-score-size);
  font-weight: 700;
}
#wg-api-football-standings .wg_modal_team {
  font-size: var(--modale-teams-size);
}
#wg-api-football-standings .wg-dropbtn {
  background-color: var(--color-green);
  color: var(--background-color);
  padding: 5px 15px;
  cursor: pointer;
}
#wg-api-football-standings .wg-dropdown {
  position: relative;
  float: right;
}
#wg-api-football-standings .wg-dropdown-content {
  margin-top: 5px;
  display: none;
  position: absolute;
  background-color: var(--background-color);
  min-width: 86px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
#wg-api-football-standings .wg-dropdown-content a {
  color: var(--color-text);
  padding: 5px 7px;
  text-decoration: none;
  text-align: center;
  display: block;
  font-weight: 300;
}
#wg-api-football-standings .wg-dropdown-content a:hover {
  background-color: var(--background-color-header);
  color: var(--color-text);
}
#wg-api-football-standings .wg-dropdown:hover .wg-dropdown-content {
  display: block;
}
#wg-api-football-standings .wg-dropdown:hover .wg-dropbtn {
  background-color: var(--color-green);
}
#wg-api-football-standings .wg-dropdown-color-select {
  background: var(--color-green) !important;
  color: var(--background-color) !important;
}
#wg-api-football-standings .wg_grid {
  position: relative;
  background-image: url("soccer_field.png");
  background-size: 100% 100%;
}
#wg-api-football-standings .wg_grid_player {
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 9px;
  text-align: center;
  position: relative;
  color: #fff;
  border-radius: 50px;
  transform: translateY(-50%) translateX(75%);
}
@media (min-width: 680px) {
  #wg-api-football-standings .wg_modal_content {
    margin: 5% auto;
    width: 75%;
  }
}
@media (min-width: 1024px) {
  #wg-api-football-standings .wg_modal_content {
    margin: 5% auto;
    width: 50%;
  }
  #wg-api-football-standings .wg_grid_player {
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
}
@media (max-width: 480px) {
  #wg-api-football-standings .wg_hide_xs {
    display: none;
  }
  #wg-api-football-standings .wg_grid_player {
    width: 15px;
    height: 15px;
    line-height: 15px;
  }
}
@media (max-width: 320px) {
  #wg-api-football-standings .wg_hide_xxs {
    display: none;
  }
  #wg-api-football-standings .wg_grid_player {
    width: 10px;
    height: 10px;
    line-height: 10px;
  }
}
#wg-api-football-standings .icon-svg {
  font-size: 8px;
}
#wg-api-football-standings .icon-svg:before {
  content: " ";
  vertical-align: middle;
  display: inline-block;
  background-image: url("sprite.svg");
  background-repeat: no-repeat;
  background-size: 13em 49.1em;
}
#wg-api-football-standings .no-svg .icon-svg:before {
  background-image: url("sprite.svg");
}
#wg-api-football-standings .icon-svg.icon-corner-flag:before {
  background-position: 0 0;
  width: 1.5em;
  height: 2em;
}
#wg-api-football-standings .icon-svg.icon-in:before {
  background-position: 0 -2em;
  width: 0.9em;
  height: 1.2em;
}
#wg-api-football-standings .icon-svg.icon-injury:before {
  background-position: 0 -3.2em;
  width: 1.6em;
  height: 1.6em;
}
#wg-api-football-standings .icon-svg.icon-keepers-glove:before {
  background-position: 0 -4.8em;
  width: 1.6em;
  height: 2.2em;
}
#wg-api-football-standings .icon-svg.icon-offside-flag:before {
  background-position: 0 -7em;
  width: 2.2em;
  height: 1.8em;
}
#wg-api-football-standings .icon-svg.icon-out:before {
  background-position: 0 -8.8em;
  width: 0.8em;
  height: 1.1em;
}
#wg-api-football-standings .icon-svg.icon-red-card:before {
  background-position: 0 -9.9em;
  width: 1.2em;
  height: 1.6em;
}
#wg-api-football-standings .icon-svg.icon-shirt:before {
  background-position: 0 -11.5em;
  width: 3.2em;
  height: 3.2em;
}
#wg-api-football-standings .icon-svg.icon-shirt-alt:before {
  background-position: 0 -14.7em;
  width: 3.2em;
  height: 3.2em;
}
#wg-api-football-standings .icon-svg.icon-soccer-ball:before {
  background-position: 0 -17.9em;
  width: 1.6em;
  height: 1.6em;
}
#wg-api-football-standings .icon-svg.icon-soccer-ball-missed-penalty:before {
  background-position: 0 -19.5em;
  width: 1.8em;
  height: 1.8em;
}
#wg-api-football-standings .icon-svg.icon-soccer-ball-own-goal:before {
  background-position: 0 -21.3em;
  width: 1.6em;
  height: 1.6em;
}
#wg-api-football-standings .icon-svg.icon-soccer-ball-penalty:before {
  background-position: 0 -22.9em;
  width: 1.8em;
  height: 1.8em;
}
#wg-api-football-standings .icon-svg.icon-soccer-gate:before {
  background-position: 0 -24.7em;
  width: 13em;
  height: 12.2em;
}
#wg-api-football-standings .icon-svg.icon-soccer-shoe:before {
  background-position: 0 -36.9em;
  width: 2em;
  height: 1.7em;
}
#wg-api-football-standings .icon-svg.icon-soccer-shots:before {
  background-position: 0 -38.6em;
  width: 1.4906000000000001em;
  height: 1.638em;
}
#wg-api-football-standings .icon-svg.icon-stopwatch:before {
  background-position: 0 -40.3em;
  width: 1.7em;
  height: 1.9em;
}
#wg-api-football-standings .icon-svg.icon-substitution:before {
  background-position: 0 -42.2em;
  width: 1.8em;
  height: 1.7em;
}
#wg-api-football-standings .icon-svg.icon-trophy:before {
  background-position: 0 -43.9em;
  width: 1.8em;
  height: 1.9em;
}
#wg-api-football-standings .icon-svg.icon-whistle:before {
  background-position: 0 -45.8em;
  width: 1.6em;
  height: 1.7em;
}
#wg-api-football-standings .icon-svg.icon-yellow-card:before {
  background-position: 0 -47.5em;
  width: 1.2em;
  height: 1.6em;
}


*/






/* Default version: */

#wg-api-football-standings {
    --font: "mentone", sans-serif;
    --background-color: #222;
    --background-color-header: #121212;
    --color-text: #fff;
    --color-text-header: #fff;
    --color-green: #01d099;
    --color-red: #f64e60;
    --color-yellow: #ffa800;
    --primary-font-size: 0.9em;
    --secondary-font-size: 10px;
    --header-font-size: 11px;
    --header-text-transform: uppercase;
    --header-link-text-transform: none;
    --border-bottom: 0.5px solid var(--background-color-header);
    --primary-padding: 6px 6px;
    --primary-line-height: 1.5;
    --secondary-padding: 0.4rem;
    --button-info-font-size: 9px;
    --button-info-line-height: 16px;
    --toolbar-font-size: var(--header-font-size);
    --modale-background-overlay: rgba(0, 0, 0, 0.4);
    --modale-close-size: 28px;
    --modale-score-size: 36px;
    --modale-teams-size: 13px;
    --standings-team-form-font-size: 9px;
    --standings-team-form-line-height: 16px;
    --flags-size: 40px;
    --teams-logo-size: 30px;
    --teams-logo-modal-size: 90%;
    --teams-logo-block-modal-size: 85px;
    --teams-logo-block-radius-modal: 5px;
    --teams-logo-block-background-modal: var(--background-color-header);
}


/* Small version: */

#wg-api-football-standings-small {
    --font: "mentone", sans-serif;
    --background-color: #222;
    --background-color-header: #121212;
    --color-text: #fff;
    --color-text-header: #fff;
    --color-green: #01d099;
    --color-red: #f64e60;
    --color-yellow: #ffa800;
    --primary-font-size: 0.7em;
    --secondary-font-size: 8px;
    --header-font-size: 9px;
    --header-text-transform: uppercase;
    --header-link-text-transform: none;
    --border-bottom: 0.5px solid var(--background-color-header);
    --primary-padding: 2px 2px;
    --primary-line-height: 1.2;
    --secondary-padding: 0.2rem;
    --button-info-font-size: 7px;
    --button-info-line-height: 12px;
    --toolbar-font-size: var(--header-font-size);
    --modale-background-overlay: rgba(0, 0, 0, 0.4);
    --modale-close-size: 22px;
    --modale-score-size: 28px;
    --modale-teams-size: 11px;
    --standings-team-form-font-size: 7px;
    --standings-team-form-line-height: 12px;
    --flags-size: 40px;
    --teams-logo-size: 20px;
    --teams-logo-modal-size: 75%;
    --teams-logo-block-modal-size: 60px;
    --teams-logo-block-radius-modal: 5px;
    --teams-logo-block-background-modal: var(--background-color-header);
}

#wg-api-football-standings .wg-table,
#wg-api-football-standings-small .wg-table {
  font-family: var(--font);
  width: 100%;
  border-collapse: collapse;
}

#wg-api-football-standings td,
#wg-api-football-standings-small td {
  padding: var(--primary-padding);
  font-size: var(--primary-font-size);
  letter-spacing: 0;
  line-height: var(--primary-line-height);
  vertical-align: middle;
  background: var(--background-color);
  color: var(--color-text);
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: var(--border-bottom);
}

#wg-api-football-standings td>span,
#wg-api-football-standings-small td>span {
  vertical-align: middle;
}

#wg-api-football-standings .wg_no_data,
#wg-api-football-standings-small .wg_no_data {
  padding: var(--secondary-padding);
  font-size: var(--primary-font-size);
  letter-spacing: 0;
  line-height: var(--primary-line-height);
  margin: auto;
  vertical-align: middle;
  text-align: center;
  font-weight: 600;
  background: var(--background-color);
  color: var(--color-text);
}

#wg-api-football-standings .wg_toolbar,
#wg-api-football-standings-small .wg_toolbar {
  font-family: var(--font);
  padding: var(--secondary-padding);
  padding-left: 0;
  padding-right: 0;
  font-size: var(--toolbar-font-size);
  font-weight: 600;
  line-height: initial;
  background: var(--background-color);
  color: var(--color-text-header);
}

#wg-api-football-standings .wg_toolbar>span,
#wg-api-football-standings-small .wg_toolbar>span {
  font-family: var(--font);
  font-size: var(--toolbar-font-size);
  letter-spacing: normal;
}

#wg-api-football-standings .wg_header,
#wg-api-football-standings-small .wg_header {
  padding: var(--secondary-padding);
  font-size: var(--header-font-size);
  font-weight: 600;
  background: var(--background-color-header);
  color: var(--color-text-header);
}

#wg-api-football-standings .wg_header>span,
#wg-api-football-standings-small .wg_header>span {
  padding-left: 5px;
  vertical-align: middle;
}

#wg-api-football-standings .wb_header_link,
#wg-api-football-standings-small .wb_header_link {
  font-size: var(--secondary-font-size);
  font-weight: 350;
  float: right;
  margin-right: 10px;
  cursor: pointer;
  text-decoration: underline;
  text-transform: var(--header-link-text-transform);
}

#wg-api-football-standings .wg_logo,
#wg-api-football-standings-small .wg_logo {
  width: var(--teams-logo-size);
  vertical-align: middle;
}

#wg-api-football-standings .wg_logo_game,
#wg-api-football-standings-small .wg_logo_game {
  vertical-align: middle;
  max-width: var(--teams-logo-modal-size);
  max-height: var(--teams-logo-modal-size);
}

#wg-api-football-standings .wb_img_block,
#wg-api-football-standings-small .wb_img_block {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--teams-logo-block-background-modal);
  width: var(--teams-logo-block-modal-size);
  height: var(--teams-logo-block-modal-size);
  border-radius: var(--teams-logo-block-radius-modal);
}

#wg-api-football-standings .wg_flag,
#wg-api-football-standings-small .wg_flag {
  width: var(--flags-size);
  vertical-align: middle;
}

#wg-api-football-standings .wg_no_border,
#wg-api-football-standings-small .wg_no_border {
  border: 0;
}

#wg-api-football-standings .wg_text_left,
#wg-api-football-standings-small .wg_text_left {
  text-align: left;
}

#wg-api-football-standings .wg_text_right,
#wg-api-football-standings-small .wg_text_right {
  text-align: right;
}

#wg-api-football-standings .wg_text_center,
#wg-api-football-standings-small .wg_text_center {
  text-align: center;
  white-space: nowrap;
}

#wg-api-football-standings .wg_bolder,
#wg-api-football-standings-small .wg_bolder {
  font-weight: 700;
}

#wg-api-football-standings .wg_bolder_300,
#wg-api-football-standings-small .wg_bolder_300 {
  font-weight: 300;
}

#wg-api-football-standings .wg_bolder_600,
#wg-api-football-standings-small .wg_bolder_600 {
  font-weight: 600;
}

#wg-api-football-standings .wg_progress_bar,
#wg-api-football-standings-small .wg_progress_bar {
  margin-top: -3px;
  width: 100%;
  background: var(--background-color-header);
}

#wg-api-football-standings .wg_progress_bar_green,
#wg-api-football-standings-small .wg_progress_bar_green {
  height: 6px;
  background-color: var(--color-green);
}

#wg-api-football-standings .wg_progress_bar_red,
#wg-api-football-standings-small .wg_progress_bar_red {
  height: 6px;
  background-color: var(--color-red);
}

#wg-api-football-standings .wg_progress_bar_home,
#wg-api-football-standings-small .wg_progress_bar_home {
  transform: scaleX(-1);
}

#wg-api-football-standings .wg_progress,
#wg-api-football-standings-small .wg_progress {
  animation: tilt 2s linear infinite;
  font-weight: 700;
  color: var(--color-red);
}

#wg-api-football-standings .wg_liveTime,
#wg-api-football-standings-small .wg_liveTime {
  color: var(--color-red);
}

#wg-api-football-standings .wg_breakTime,
#wg-api-football-standings-small .wg_breakTime {
  font-weight: 600;
  background: var(--color-green);
  color: var(--background-color);
}

#wg-api-football-standings .wg_finished,
#wg-api-football-standings-small .wg_finished {
  color: var(--color-green);
}

#wg-api-football-standings .wg_canceled,
#wg-api-football-standings-small .wg_canceled {
  color: var(--color-yellow);
}

#wg-api-football-standings .wg_form,
#wg-api-football-standings-small .wg_form {
  display: inline-block;
  margin: 1px;
  width: 14px;
  height: 14px;
  line-height: var(--standings-team-form-line-height);
  font-size: var(--standings-team-form-font-size);
  text-align: center;
  position: relative;
  color: #fff;
}

#wg-api-football-standings .wg_form_win,
#wg-api-football-standings-small .wg_form_win {
  background: var(--color-green);
}

#wg-api-football-standings .wg_form_draw,
#wg-api-football-standings-small .wg_form_draw {
  background: var(--color-yellow);
}

#wg-api-football-standings .wg_form_lose,
#wg-api-football-standings-small .wg_form_lose {
  background: var(--color-red);
}

#wg-api-football-standings .wg_info,
#wg-api-football-standings-small .wg_info {
  display: inline-block;
  border-radius: 14px;
  margin: 1px;
  width: 14px;
  height: 14px;
  line-height: var(--button-info-line-height);
  font-size: var(--button-info-font-size);
  text-align: center;
  position: relative;
  color: #fff;
  background: var(--background-color-header);
}

#wg-api-football-standings .wg_width_90,
#wg-api-football-standings-small .wg_width_90 {
  width: 90px;
}

#wg-api-football-standings .wg_width_80,
#wg-api-football-standings-small .wg_width_80 {
  width: 80px;
}

#wg-api-football-standings .wg_width_70,
#wg-api-football-standings-small .wg_width_70 {
  width: 70px;
}

#wg-api-football-standings .wg_width_60,
#wg-api-football-standings-small .wg_width_60 {
  width: 60px;
}

#wg-api-football-standings .wg_width_50,
#wg-api-football-standings-small .wg_width_50 {
  width: 50px;
}

#wg-api-football-standings .wg_width_30,
#wg-api-football-standings-small .wg_width_30 {
  width: 30px;
}

#wg-api-football-standings .wg_width_25,
#wg-api-football-standings-small .wg_width_25 {
  width: 25px;
}

#wg-api-football-standings .wg_width_20,
#wg-api-football-standings-small .wg_width_20 {
  width: 20px;
}

#wg-api-football-standings .wg_p_lr_0,
#wg-api-football-standings-small .wg_p_lr_0 {
  padding-left: 0;
  padding-right: 0;
}

#wg-api-football-standings .wg_p_lr_1,
#wg-api-football-standings-small .wg_p_lr_1 {
  padding-left: 1px;
  padding-right: 1px;
}

#wg-api-football-standings .wg_p_lr_2,
#wg-api-football-standings-small .wg_p_lr_2 {
  padding-left: 2px;
  padding-right: 2px;
}

#wg-api-football-standings .wg_p_lr_3,
#wg-api-football-standings-small .wg_p_lr_3 {
  padding-left: 3px;
  padding-right: 3px;
}

#wg-api-football-standings .wg_p_lr_4,
#wg-api-football-standings-small .wg_p_lr_4 {
  padding-left: 4px;
  padding-right: 4px;
}

#wg-api-football-standings .wg_p_lr_5,
#wg-api-football-standings-small .wg_p_lr_5 {
  padding-left: 5px;
  padding-right: 5px;
}

#wg-api-football-standings .wg_p_tb_10,
#wg-api-football-standings-small .wg_p_tb_10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

#wg-api-football-standings .wg_nowrap,
#wg-api-football-standings-small .wg_nowrap {
  white-space: nowrap;
}

#wg-api-football-standings .wg_width_33_p,
#wg-api-football-standings-small .wg_width_33_p {
  width: 33%;
}

#wg-api-football-standings .wg_width_34_p,
#wg-api-football-standings-small .wg_width_34_p {
  width: 34%;
}

#wg-api-football-standings .wg_width_50_p,
#wg-api-football-standings-small .wg_width_50_p {
  width: 50%;
}

#wg-api-football-standings .wg_loader:after,
#wg-api-football-standings-small .wg_loader:after {
  content: " ";
  display: block;
  width: 45px;
  height: 45px;
  margin: auto;
  border-radius: 50%;
  border: 6px solid var(--color-green);
  border-color: var(--color-green) transparent var(--color-green) transparent;
  animation: wg_dual_ring 1.2s linear infinite;
}

#wg-api-football-standings .wg_tooltip,
#wg-api-football-standings-small .wg_tooltip {
  cursor: pointer;
}

#wg-api-football-standings .wg_tooltip:hover,
#wg-api-football-standings-small .wg_tooltip:hover {
  position: relative;
}

#wg-api-football-standings .wg_tooltip:before,
#wg-api-football-standings-small .wg_tooltip:before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  margin-left: 0;
  min-width: 80px;
  max-width: 200px;
  width: auto;
  padding: 5px;
  border-radius: 3px;
  background: var(--color-text);
  color: var(--background-color);
  text-align: center;
  display: none;
  z-index: 99999;
}

#wg-api-football-standings .wg_tooltip:hover:before,
#wg-api-football-standings-small .wg_tooltip:hover:before {
  display: block;
}

#wg-api-football-standings .wg_tooltip .wg_tooltip_left:before,
#wg-api-football-standings-small .wg_tooltip .wg_tooltip_left:before {
  left: initial;
  margin: initial;
  right: 100%;
  margin-right: 0;
}

#wg-api-football-standings .wg_arrow,
#wg-api-football-standings-small .wg_arrow {
  float: right;
  cursor: pointer;
  padding-left: 0 !important;
  margin-right: 5px;
  margin-left: 5px;
}

#wg-api-football-standings .wg_arrow_down,
#wg-api-football-standings-small .wg_arrow_down {
  transform: rotate(90deg);
}

#wg-api-football-standings .wg_arrow_up,
#wg-api-football-standings-small .wg_arrow_up {
  transform: rotate(-90deg);
}

#wg-api-football-standings .wg_hide,
#wg-api-football-standings-small .wg_hide {
  display: none;
}

#wg-api-football-standings .wg_button_toggle,
#wg-api-football-standings-small .wg_button_toggle {
  padding: 5px;
  cursor: pointer;
}

#wg-api-football-standings .wg_button_toggle_game,
#wg-api-football-standings-small .wg_button_toggle_game {
  padding: 5px;
  cursor: pointer;
  margin-left: -5px;
}

#wg-api-football-standings .wg_active,
#wg-api-football-standings-small .wg_active {
  background: var(--color-green);
  color: var(--background-color);
}

#wg-api-football-standings .wg_absolute,
#wg-api-football-standings-small .wg_absolute {
  position: absolute;
}

#wg-api-football-standings .wg_color_theme,
#wg-api-football-standings-small .wg_color_theme {
  color: var(--color-text);
}

#wg-api-football-standings .wg_modal,
#wg-api-football-standings-small .wg_modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: var(--modale-background-overlay);
}

#wg-api-football-standings .wg_modal_content,
#wg-api-football-standings-small .wg_modal_content {
  background-color: var(--background-color);
  margin: 10% auto;
  padding: 15px;
  padding-top: 5px;
  border: 1px solid var(--background-color-header);
  width: 90%;
}

#wg-api-football-standings .wg_modal_close,
#wg-api-football-standings-small .wg_modal_close {
  color: var(--background-color-header);
  float: right;
  font-size: var(--modale-close-size);
  font-weight: 700;
}

#wg-api-football-standings .wg_modal_close:focus,
#wg-api-football-standings .wg_modal_close:hover,
#wg-api-football-standings-small .wg_modal_close:focus,
#wg-api-football-standings-small .wg_modal_close:hover {
  color: var(--color-text);
  text-decoration: none;
  cursor: pointer;
}

#wg-api-football-standings .wg_modal_score,
#wg-api-football-standings-small .wg_modal_score {
  font-size: var(--modale-score-size);
  font-weight: 700;
}

#wg-api-football-standings .wg_modal_team,
#wg-api-football-standings-small .wg_modal_team {
  font-size: var(--modale-teams-size);
}

#wg-api-football-standings .wg-dropbtn,
#wg-api-football-standings-small .wg-dropbtn {
  background-color: var(--color-green);
  color: var(--background-color);
  padding: 5px 15px;
  cursor: pointer;
}

#wg-api-football-standings .wg-dropdown,
#wg-api-football-standings-small .wg-dropdown {
  position: relative;
  float: right;
}

#wg-api-football-standings .wg-dropdown-content,
#wg-api-football-standings-small .wg-dropdown-content {
  margin-top: 5px;
  display: none;
  position: absolute;
  background-color: var(--background-color);
  min-width: 86px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}

#wg-api-football-standings .wg-dropdown-content a,
#wg-api-football-standings-small .wg-dropdown-content a {
  color: var(--color-text);
  padding: 5px 7px;
  text-decoration: none;
  text-align: center;
  display: block;
  font-weight: 300;
}

#wg-api-football-standings .wg-dropdown-content a:hover,
#wg-api-football-standings-small .wg-dropdown-content a:hover {
  background-color: var(--background-color-header);
  color: var(--color-text);
}

#wg-api-football-standings .wg-dropdown:hover .wg-dropdown-content,
#wg-api-football-standings-small .wg-dropdown:hover .wg-dropdown-content {
  display: block;
}

#wg-api-football-standings .wg-dropdown:hover .wg-dropbtn,
#wg-api-football-standings-small .wg-dropdown:hover .wg-dropbtn {
  background-color: var(--color-green);
}

#wg-api-football-standings .wg-dropdown-color-select,
#wg-api-football-standings-small .wg-dropdown-color-select {
  background: var(--color-green) !important;
  color: var(--background-color) !important;
}

#wg-api-football-standings .wg_grid,
#wg-api-football-standings-small .wg_grid {
  position: relative;
  background-image: url("soccer_field.png");
  background-size: 100% 100%;
}

#wg-api-football-standings .wg_grid_player,
#wg-api-football-standings-small .wg_grid_player {
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 9px;
  text-align: center;
  position: relative;
  color: #fff;
  border-radius: 50px;
  transform: translateY(-50%) translateX(75%);
}

@media (min-width: 680px) {
  #wg-api-football-standings .wg_modal_content,
  #wg-api-football-standings-small .wg_modal_content {
    margin: 5% auto;
    width: 75%;
  }
}

@media (min-width: 1024px) {
  #wg-api-football-standings .wg_modal_content,
  #wg-api-football-standings-small .wg_modal_content {
    margin: 5% auto;
    width: 50%;
  }
  #wg-api-football-standings .wg_grid_player,
  #wg-api-football-standings-small .wg_grid_player {
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  #wg-api-football-standings .wg_hide_xs,
  #wg-api-football-standings-small .wg_hide_xs {
    display: none;
  }
  #wg-api-football-standings .wg_grid_player,
  #wg-api-football-standings-small .wg_grid_player {
    width: 15px;
    height: 15px;
    line-height: 15px;
  }
}

@media (max-width: 320px) {
  #wg-api-football-standings .wg_hide_xxs,
  #wg-api-football-standings-small .wg_hide_xxs {
    display: none;
  }
  #wg-api-football-standings .wg_grid_player,
  #wg-api-football-standings-small .wg_grid_player {
    width: 10px;
    height: 10px;
    line-height: 10px;
  }
}

#wg-api-football-standings .icon-svg,
#wg-api-football-standings-small .icon-svg {
  font-size: 8px;
}

#wg-api-football-standings .icon-svg:before,
#wg-api-football-standings-small .icon-svg:before {
  content: " ";
  vertical-align: middle;
  display: inline-block;
  background-image: url("sprite.svg");
  background-repeat: no-repeat;
  background-size: 13em 49.1em;
}

#wg-api-football-standings .no-svg .icon-svg:before,
#wg-api-football-standings-small .no-svg .icon-svg:before {
  background-image: url("sprite.svg");
}

#wg-api-football-standings .icon-svg.icon-corner-flag:before,
#wg-api-football-standings-small .icon-svg.icon-corner-flag:before {
  background-position: 0 0;
  width: 1.5em;
  height: 2em;
}

#wg-api-football-standings .icon-svg.icon-in:before,
#wg-api-football-standings-small .icon-svg.icon-in:before {
  background-position: 0 -2em;
  width: 0.9em;
  height: 1.2em;
}

#wg-api-football-standings .icon-svg.icon-injury:before,
#wg-api-football-standings-small .icon-svg.icon-injury:before {
  background-position: 0 -3.2em;
  width: 1.6em;
  height: 1.6em;
}

#wg-api-football-standings .icon-svg.icon-keepers-glove:before,
#wg-api-football-standings-small .icon-svg.icon-keepers-glove:before {
  background-position: 0 -4.8em;
  width: 1.6em;
  height: 2.2em;
}

#wg-api-football-standings .icon-svg.icon-offside-flag:before,
#wg-api-football-standings-small .icon-svg.icon-offside-flag:before {
  background-position: 0 -7em;
  width: 2.2em;
  height: 1.8em;
}

#wg-api-football-standings .icon-svg.icon-out:before,
#wg-api-football-standings-small .icon-svg.icon-out:before {
  background-position: 0 -8.8em;
  width: 0.8em;
  height: 1.1em;
}

#wg-api-football-standings .icon-svg.icon-red-card:before,
#wg-api-football-standings-small .icon-svg.icon-red-card:before {
  background-position: 0 -9.9em;
  width: 1.2em;
  height: 1.6em;
}

#wg-api-football-standings .icon-svg.icon-shirt:before,
#wg-api-football-standings-small .icon-svg.icon-shirt:before {
  background-position: 0 -11.5em;
  width: 3.2em;
  height: 3.2em;
}

#wg-api-football-standings .icon-svg.icon-shirt-alt:before,
#wg-api-football-standings-small .icon-svg.icon-shirt-alt:before {
  background-position: 0 -14.7em;
  width: 3.2em;
  height: 3.2em;
}

#wg-api-football-standings .icon-svg.icon-soccer-ball:before,
#wg-api-football-standings-small .icon-svg.icon-soccer-ball:before {
  background-position: 0 -17.9em;
  width: 1.6em;
  height: 1.6em;
}

#wg-api-football-standings .icon-svg.icon-soccer-ball-missed-penalty:before,
#wg-api-football-standings-small .icon-svg.icon-soccer-ball-missed-penalty:before {
  background-position: 0 -19.5em;
  width: 1.8em;
  height: 1.8em;
}

#wg-api-football-standings .icon-svg.icon-soccer-ball-own-goal:before,
#wg-api-football-standings-small .icon-svg.icon-soccer-ball-own-goal:before {
  background-position: 0 -21.3em;
  width: 1.6em;
  height: 1.6em;
}

#wg-api-football-standings .icon-svg.icon-soccer-ball-penalty:before,
#wg-api-football-standings-small .icon-svg.icon-soccer-ball-penalty:before {
  background-position: 0 -22.9em;
  width: 1.8em;
  height: 1.8em;
}

#wg-api-football-standings .icon-svg.icon-soccer-gate:before,
#wg-api-football-standings-small .icon-svg.icon-soccer-gate:before {
  background-position: 0 -24.7em;
  width: 13em;
  height: 12.2em;
}

#wg-api-football-standings .icon-svg.icon-soccer-shoe:before,
#wg-api-football-standings-small .icon-svg.icon-soccer-shoe:before {
  background-position: 0 -36.9em;
  width: 2em;
  height: 1.7em;
}

#wg-api-football-standings .icon-svg.icon-soccer-shots:before,
#wg-api-football-standings-small .icon-svg.icon-soccer-shots:before {
  background-position: 0 -38.6em;
  width: 1.4906em;
  height: 1.638em;
}

#wg-api-football-standings .icon-svg.icon-stopwatch:before,
#wg-api-football-standings-small .icon-svg.icon-stopwatch:before {
  background-position: 0 -40.3em;
  width: 1.7em;
  height: 1.9em;
}

#wg-api-football-standings .icon-svg.icon-substitution:before,
#wg-api-football-standings-small .icon-svg.icon-substitution:before {
  background-position: 0 -42.2em;
  width: 1.8em;
  height: 1.7em;
}

#wg-api-football-standings .icon-svg.icon-trophy:before,
#wg-api-football-standings-small .icon-svg.icon-trophy:before {
  background-position: 0 -43.9em;
  width: 1.8em;
  height: 1.9em;
}

#wg-api-football-standings .icon-svg.icon-whistle:before,
#wg-api-football-standings-small .icon-svg.icon-whistle:before {
  background-position: 0 -45.8em;
  width: 1.6em;
  height: 1.7em;
}

#wg-api-football-standings .icon-svg.icon-yellow-card:before,
#wg-api-football-standings-small .icon-svg.icon-yellow-card:before {
  background-position: 0 -47.5em;
  width: 1.2em;
  height: 1.6em;
}