/*
File Name: 		custom.css
Description:  You can add your custom CSS here and it will overwrite template styles
*/
/*# sourceMappingURL=maps/custom.css.map */

/* Fix match score body overflow */
.match-score {
  overflow: hidden;
}
.match-score__body {
  overflow: hidden;
}
.match-score__body .match-team {
  flex: 1 1 0;
  min-width: 0;
  max-width: 35%;
}
.match-score__body .match-result {
  flex: 0 0 auto;
}
.match-score__body .match-team__name,
.match-score__body .match-team__country {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hide webkit scrollbar on matches-scores */
.matches-scores::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Hide scrollbar but keep scroll functionality on table-responsive */
.site-content--center .table-responsive {
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.site-content--center .table-responsive::-webkit-scrollbar {
  width: 0;
  height: 0;
}
