@import url("https://fonts.googleapis.com/css2?familyUbuntu+Mono:wght@400;700&family=Poppins:wght@400;500;700&family=Source+Code+Pro:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
:root {
  --color-primary: #222;
  --color-accent: #104068;
  --color-white: #fff;
  --color-black: #000;
  --color-text-muted: #666;
  --color-text-light: #888;
  --color-text-faint: #999;
  --color-bg-light: #f5f5f5;
  --color-bg-alt: #f1f1f1;
  --color-border: #ddd;
  --color-border-mid: #d5d5d5;
  --color-border-light: #e5e5e5;
  --table-border-color: #ccc;
}

/*@import "_bootstrap-grid";*/
/* Team Colours */
.ducks {
  border-color: #F57D31 !important;
}

.coyotes {
  border-color: #98012E !important;
}

.bruins {
  border-color: #000 !important;
}

.sabres {
  border-color: #002D62 !important;
}

.flames {
  border-color: #C8102E !important;
}

.hurricanes {
  border-color: #E51A38 !important;
}

.blackhawks {
  border-color: #C60C30 !important;
}

.avalanche {
  border-color: #822433 !important;
}

.bluejackets {
  border-color: #002147 !important;
}

.stars {
  border-color: #016F4A !important;
}

.redwings {
  border-color: #E51837 !important;
}

.oilers {
  border-color: #013E7F !important;
}

.panthers {
  border-color: #C51230 !important;
}

.kings {
  border-color: #000 !important;
}

.wild {
  border-color: #c51230 !important;
}

.canadiens {
  border-color: #C51230 !important;
}

.predators {
  border-color: #002D62 !important;
}

.devils {
  border-color: #E03A3E !important;
}

.islanders {
  border-color: #00529B !important;
}

.rangers {
  border-color: #003279 !important;
}

.senators {
  border-color: #E51837 !important;
}

.flyers {
  border-color: #F4793E !important;
}

.penguins {
  border-color: #C5B358 !important;
}

.blues {
  border-color: #00529c !important;
}

.sharks {
  border-color: #007889 !important;
}

.lightning {
  border-color: #003D7C !important;
}

.mapleleafs {
  border-color: #013E7F !important;
}

.canucks {
  border-color: #003E7E !important;
}

.capitals {
  border-color: #C8102E !important;
}

.jets {
  border-color: #002D62 !important;
}

/* Common Styles Across Components */
/* Standard Presentation Table */
div.heading > h3 {
  border-bottom: 4px solid #000;
  display: inline-block;
  margin: 0;
  padding: 5px 0;
  font-size: 16px;
  text-transform: uppercase;
}

div.data-container {
  height: calc(100vh - 220px);
  overflow: auto;
}

table.data-table {
  width: 100%;
  border-spacing: 0px;
  border-collapse: separate;
}
table.data-table tr.header > th {
  /*font-size: 0.8em;
  text-align: center;
  padding: 3px 0;*/
  background: var(--color-primary);
  color: #fff;
  font-size: 0.9em;
  font-weight: 500;
  text-align: center;
  padding: 7px 0;
  white-space: nowrap;
  position: sticky;
}
table.data-table tr.header > th:first-child {
  position: sticky;
  left: 0px;
  z-index: 1;
  /*background:#fff;*/
  width: 200px;
  min-width: 200px;
}
table.data-table tr > td.primary {
  background: #9dcaf1 !important;
}
table.data-table > tbody > tr.player:hover > td {
  background-color: #9dcaf1 !important;
}
table.data-table > tbody > tr.player:nth-child(even) > td {
  /* Alternating Row Colour */
  background: var(--color-bg-light);
}
table.data-table > tbody > tr.player.scratched {
  color: #ccc;
}
table.data-table > tbody > tr.player > td {
  /* border: 1px solid #ccc;*/
  padding: 3px 5px;
  background: #fff;
}
table.data-table > tbody > tr.player > td:first-child {
  position: sticky;
  left: 0px;
  z-index: 1;
  width: 210px;
  min-width: 210px;
}
table.data-table > tbody > tr.player > td:first-child > span {
  float: right;
  padding: 0 5px;
  font-weight: bold;
  font-size: 0.8em;
}
table.data-table > tbody > tr.summary {
  font-weight: bold;
  text-align: center;
}
table.data-table > tbody > tr.summary > td {
  padding: 3px 0;
  /*border: 1px solid #ccc;*/
  border-top: 2px solid var(--color-primary);
}

tr.pos-group > td {
  font-size: 1.1em;
  font-weight: bold;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-mid);
}
tr.pos-group {
  /*&:not(:first-child) > td {
  	padding-top: 20px;
  }*/
}

img.headshot {
  max-width: 100%;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  max-height: 80px;
}

div.last-update {
  font-size: 0.7rem;
  text-align: left;
  margin: 0 0 10px;
}

.feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feed-header .heading {
  flex: 1;
}

.feed-filters {
  display: flex;
  gap: 4px;
}
.feed-filters .feed-filter {
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 0.78em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.feed-filters .feed-filter:hover, .feed-filters .feed-filter.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.feed-card {
  border-bottom: 1px solid var(--color-border-light);
  padding: 8px 0;
}
.feed-card:last-child {
  border-bottom: none;
}
.feed-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.feed-card__type-badge {
  font-size: 0.7em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-primary);
  color: #fff;
  padding: 1px 6px;
  border-radius: 5px;
}
.feed-card__type-badge--article {
  background: var(--color-accent);
}
.feed-card__date {
  font-size: 0.78em;
  color: var(--color-text-muted);
}
.feed-card__link {
  font-size: 0.78em;
  margin-left: auto;
}
.feed-card__trade-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 2px 0;
  font-size: 0.85em;
}
.feed-card__team-name {
  font-weight: 600;
  white-space: nowrap;
}
.feed-card__assets {
  color: var(--color-text-muted);
  font-size: 0.9em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.feed-card__article-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9em;
}
.feed-card__title {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pr-delta {
  font-size: 0.8em;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.pr-delta.up {
  color: green;
}
.pr-delta.down {
  color: red;
}

a.playoff-series-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}
a.playoff-series-card:hover {
  border-color: var(--color-accent);
  color: inherit;
}
a.playoff-series-card.complete {
  background: var(--color-bg-light);
}
a.playoff-series-card .psc-team {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.85em;
  min-width: 0;
}
a.playoff-series-card .psc-team img {
  height: 28px;
  flex-shrink: 0;
}
a.playoff-series-card .psc-team.eliminated {
  opacity: 0.4;
}
a.playoff-series-card .psc-team--right {
  justify-content: flex-end;
}
a.playoff-series-card .psc-score {
  font-weight: 700;
  font-size: 0.95em;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--color-primary);
}

table#powerRankings {
  min-width: 100%;
  border-collapse: collapse;
}
table#powerRankings th {
  font-weight: bold;
  font-size: 1em;
  background: #eee;
  color: var(--color-primary);
  border: 1px solid #fff;
  padding: 5px 0;
}
table#powerRankings td {
  border-bottom: 1px solid var(--color-border-mid);
  padding: 5px 0;
}
table#powerRankings td:first-child {
  font-weight: bold;
}
table#powerRankings td:not(:last-child) {
  text-align: center;
}

/* Sidebar Recent Trades */
/* Main Section Trades - Side by Side Teams */
div.trades {
  font-size: 0.9em;
  font-weight: 500;
}
div.trades > .trade {
  padding: 10px;
  border: 1px solid var(--color-border-mid);
  border-radius: 5px;
  margin-bottom: 10px;
}
div.trades > .trade > .date {
  position: relative;
}
div.trades > .trade > .date > i {
  position: absolute;
  right: 0;
  font-size: 1.7em;
  color: var(--color-primary);
}
div.trades > .trade > .team > span {
  display: block;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 10px;
}

section.sidebar > table#standings {
  width: 100%;
}
section.sidebar > table#standings td {
  font-size: 0.9em;
  font-weight: 500;
}
section.sidebar > table#standings tr.conf {
  font-weight: bold;
  font-size: 1rem;
  margin: 15px 0;
}
section.sidebar > table#standings tr.conf:first-child {
  margin: 0 0 15px;
}
section.sidebar > table#standings tr.division {
  background: var(--color-primary);
  color: var(--color-bg-light);
}
section.sidebar > table#standings tr.division > th {
  font-weight: 500;
  text-align: center;
  font-size: 0.9em;
  padding: 3px 0;
}
section.sidebar > table#standings tr.team > td {
  padding: 3px 0;
}
section.sidebar > table#standings tr.team > td:not(:first-child) {
  text-align: center;
  min-width: 35px;
}
section.sidebar > table#standings tr.team > td.playoffs {
  font-weight: bold;
}

.leader-card {
  border: 1px solid var(--color-border-light);
  border-radius: 5px;
  overflow: hidden;
}
.leader-card__category {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.9em;
  padding: 4px 10px;
}
.leader-card__body {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
}
.leader-card__img {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}
.leader-card__img img.headshot {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.leader-card__img img.team-logo {
  position: absolute;
  bottom: -2px;
  right: -8px;
  width: 20px;
}
.leader-card__name {
  flex: 1;
  font-size: 0.9em;
  padding-left: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.leader-card__value {
  font-weight: 700;
  font-size: 1.1em;
  flex-shrink: 0;
}

/* --- Article List --- */
/* Main Articles */
div.article:not(.sub-article) {
  position: relative;
}
div.article:not(.sub-article) > div.article-img-large {
  text-align: center;
  min-height: 300px;
  max-height: 400px;
  overflow: hidden;
  border-radius: 10px;
}
div.article:not(.sub-article) > div.article-img-large > img {
  max-height: 400px;
  min-height: 300px;
}
div.article:not(.sub-article) > div.content {
  position: absolute;
  bottom: 0;
  height: 100px;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  max-height: 100px;
  padding: 15px;
  left: 0;
  border-radius: 0 0 0 0;
}
div.article:not(.sub-article) > div.content > a {
  color: #fff;
  font-size: 1.3em;
}
div.article:not(.sub-article) > div.content .byline {
  position: absolute;
  bottom: 5px;
  color: var(--color-text-faint);
  font-size: 0.9em;
}
div.article:not(.sub-article) > div.content .article-summary {
  color: #fff;
  padding: 10px 0;
}

div.sub-article {
  padding: 10px;
  border-radius: 10px;
  position: relative;
}
div.sub-article:first-of-type {
  padding-right: 10px;
}
div.sub-article:last-of-type {
  padding-left: 10px;
}
div.sub-article > div.sub-article-img {
  max-height: 130px;
  display: block;
  height: 130px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
}
div.sub-article > div.sub-article-img > img {
  height: 130px;
  margin: 0 auto;
  display: block;
}
div.sub-article > div.content {
  padding: 0;
}
div.sub-article > div.content a {
  font-size: 1.1em;
  font-weight: bold;
}
div.sub-article > div.content .byline {
  color: var(--color-text-muted);
  font-size: 0.9em;
  margin-top: 4px;
}
div.sub-article > div.content .article-summary {
  color: #444;
  padding: 5px 0;
}

/* Standard Styles */
ul.team-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.team-links > li.link {
  vertical-align: top;
  position: relative;
  background: var(--color-text-muted);
  color: #fff;
  margin: 2px;
  font-size: 1em;
  background: linear-gradient(to right, #2f4050 50%, var(--color-text-faint) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.5s ease-out;
  /*
  	&:before, &:after {
  	content: ' ';
  	height: 0;
  	position: absolute;
  	width: 0;
  	border: 13px solid transparent;
  	border-left-width: 8px;
  	border-right-width: 8px;
  	top: 0;	
  } */
  /* &:before {
  	border-top-color: var(--color-text-muted);
  	border-bottom-color: var(--color-text-muted);
  	border-right-color: var(--color-text-muted);
  	right: 100%;
  } */
}
ul.team-links > li.link:after {
  border-left-color: var(--color-text-muted);
  left: 100%;
}
ul.team-links > li.link {
  /* Hover Styles */
}
ul.team-links > li.link:hover {
  background-position: left bottom;
}
ul.team-links > li.link:hover:after {
  border-left-color: #2f4050 !important;
}
ul.team-links > li.link > a {
  /*line-height: 16px; */
  display: block;
  text-decoration: none;
  padding: 5px;
  color: #fff;
}
ul.team-links > li.link > a > i {
  margin: 0 5px;
  width: 15px;
}

.team-info table.stats {
  width: 100%;
  font-size: 14px;
  border-spacing: 0;
  border-collapse: collapse;
}
.team-info table.stats tr.logo > td {
  text-align: center;
}
.team-info table.stats tr.logo > td img {
  max-height: 100px;
}
.team-info table.stats tr > td {
  border-bottom: 2px solid var(--table-border-color);
  padding: 10px 0;
  border-top: 2px solid var(--table-border-color);
  width: 33%;
}
.team-info table.stats tr > td:first-child {
  font-weight: bold;
}

/* Rosters Page */
table#roster {
  width: auto;
  min-width: 900px;
}
table#roster tr.header > th:not(:first-child):not(:last-child),
table#roster tr.player > td:not(:first-child):not(:last-child) {
  min-width: 38px;
  max-width: 38px;
  width: 38px;
}
table#roster tr.header > th:last-child {
  min-width: 160px;
  text-align: center;
}
table#roster tr.player > td:last-child {
  min-width: 160px;
  text-align: right;
}
table#roster > tbody > tr.roster-group > td {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  border-bottom: 1px solid var(--color-primary);
}
table#roster > tbody > tr.roster-group > td > span {
  border-bottom: 3px solid var(--color-primary);
  display: inline-block;
  padding: 5px 0;
  margin-bottom: -1px;
  position: relative;
  left: -1px;
}
table#roster > tbody > tr.player > td:not(:first-child) {
  text-align: center;
}
table#roster > tbody > tr.player > td:last-child {
  text-align: right;
}

/* Finance Page */
table#salaries tr.player > td:not(:first-child) {
  text-align: center;
}
table#salaries tr.player > td.salary {
  width: 118px;
}
table#salaries tr.player > td > span.free-agent {
  display: block;
  border-radius: 3px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: white;
  font-weight: normal;
  font-size: 0.9em;
}
table#salaries tr.player > td > span.free-agent.UFA {
  background: red;
}
table#salaries tr.player > td > span.free-agent.RFA {
  background: #1c75b9;
}

/* Scoring Page */
table#scoring, table#goalies {
  min-width: 100%;
  overflow-x: auto;
  display: block;
}
table#scoring > tbody > tr:nth-child(even) > td, table#goalies > tbody > tr:nth-child(even) > td {
  background: var(--color-bg-alt);
}
table#scoring > tbody > tr > td, table#goalies > tbody > tr > td {
  padding: 6px 0px;
  white-space: nowrap;
  background: #fff;
}
table#scoring > tbody > tr > td:first-child, table#goalies > tbody > tr > td:first-child {
  padding-left: 10px;
}
table#scoring > tbody > tr > td:not(:first-child), table#goalies > tbody > tr > td:not(:first-child) {
  text-align: center;
  min-width: 70px;
  width: 70px;
}

/* Lines */
tr.heading:not(:first-child) > td {
  padding-top: 30px;
}
tr.heading > td {
  font-size: 1.1em;
  padding: 5px 0;
  border-bottom: 2px solid #000;
  font-weight: bold;
}
tr.heading > td.subheading {
  text-align: center;
  font-size: 0.8em;
}

tr.line > td {
  text-align: center;
  font-size: 1em;
  padding: 5px 0;
  border-bottom: 1px solid var(--table-border-color);
  white-space: nowrap;
}
tr.line > td.player {
  width: 20%;
}
tr.line > td.pct {
  width: 16%;
  position: relative;
  text-align: right;
  padding-right: 15px;
}
tr.line > td.pct > span {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
}
tr.line > td.pct > span:after {
  background: #1c75b9;
  animation: filler 2s ease-in-out;
  width: 100%;
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  content: "\a";
}
tr.line > td.strategy {
  width: 8%;
  text-align: center;
}
@keyframes filler {
  0% {
    width: 0;
  }
}
/* Schedule */
table#schedule > thead > tr > td {
  font-weight: bold;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-mid);
  text-align: center;
}
table#schedule > tbody {
  /* League Schedule */
}
table#schedule > tbody tr.day > td {
  font-size: 1.2em;
  font-weight: bold;
  padding: 10px;
  background: var(--color-bg-alt);
  border-radius: 10px;
}
table#schedule > tbody {
  /* Standard Schedule Styles */
}
table#schedule > tbody tr.game > td {
  padding: 5px 0;
  white-space: nowrap;
  border-bottom: 1px solid var(--table-border-color);
}
table#schedule > tbody tr.game > td:not(.team) {
  text-align: center;
}
table#schedule > tbody tr.game > td.w {
  font-weight: bold;
}
table#schedule > tbody tr.game > td:nth-child(4) {
  padding-right: 15px;
}
table#schedule > tbody tr.game > td.ot {
  text-align: center;
  min-width: 25px;
}
table#schedule > tbody tr.game > td > img {
  width: 30px;
  max-width: 30px;
  margin-right: 30px;
}
table#schedule > tbody tr.game > td.result > i.game-result {
  font-size: 18px;
}
table#schedule > tbody tr.game > td.result > i.game-result.fa-check {
  color: green;
}
table#schedule > tbody tr.game > td.result > i.game-result.fa-xmark {
  color: red;
}
table#schedule > tbody tr.game > td.result > i.game-result.ot {
  color: orange !important;
}

/* Futures */
table#draftpicks {
  border-spacing: 2px;
  margin: 10px 0;
}
table#draftpicks thead > tr > th {
  width: 12%;
  max-width: 12%;
}
table#draftpicks thead > tr > th:first-child {
  min-width: 16%;
  max-width: 16%;
}
table#draftpicks tr.draftyear:nth-child(even) > td {
  background-color: var(--color-bg-alt);
}
table#draftpicks tr.draftyear > td {
  border: 1px solid var(--table-border-color);
  padding: 3px;
}
table#draftpicks tr.draftyear > td:first-child {
  padding: 5px 10px;
}
table#draftpicks tr.draftyear > td img.draftpick {
  display: inline-block;
  width: 25x;
  max-width: 25px;
  margin: 3px;
}

table#prospects {
  margin-top: 20px;
}
table#prospects > thead > tr > th {
  position: sticky;
  top: 0;
  background: #fff;
}
table#prospects > tbody > tr.player > td:not(:first-child) {
  text-align: center;
  min-width: 70px;
  text-overflow: ellipsis;
  width: 70px;
  max-width: 70px;
  overflow: hidden;
  white-space: nowrap;
}

.standings-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--color-primary);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.standings-tabs .standings-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  color: var(--color-text-muted);
  text-decoration: none;
  display: inline-block;
  transition: color 0.15s, border-bottom-color 0.15s;
}
.standings-tabs .standings-tab:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.standings-tabs .standings-tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.season-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--color-primary);
  margin-bottom: 12px;
}
.season-tabs .season-tab {
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 7px 14px;
  font-weight: 600;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  text-decoration: none;
  display: inline-block;
  transition: color 0.15s, border-bottom-color 0.15s;
}
.season-tabs .season-tab:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.season-tabs .season-tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

div.standings-container {
  overflow: hidden;
}
div.standings-container div.standings-scroll-container {
  height: 75vh;
  overflow-y: auto;
  margin-top: 20px;
  overflow-x: hidden;
}
div.standings-container div.standings-scroll-container table.standings-sortable {
  width: 100%;
}
div.standings-container div.standings-scroll-container table.standings-sortable > thead > tr > th {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.9em;
  font-weight: 500;
  text-align: center;
  padding: 7px 0;
  white-space: nowrap;
  min-width: 35px;
}
div.standings-container div.standings-scroll-container table.standings-sortable > thead > tr > th:first-child {
  min-width: 165px;
  width: 165px;
  position: sticky;
  left: 0;
  background: var(--color-primary);
  text-align: left;
}
div.standings-container div.standings-scroll-container table.standings-sortable > thead > tr > th.wide {
  min-width: 60px;
}
div.standings-container div.standings-scroll-container table.standings-sortable > tbody > tr > td {
  padding: 7px 0;
  white-space: nowrap;
}
div.standings-container div.standings-scroll-container table.standings-sortable > tbody > tr > td.playoffs {
  font-weight: bold;
}
div.standings-container div.standings-scroll-container table.standings-sortable > tbody > tr > td:first-child {
  min-width: 165px;
  width: 165px;
  position: sticky;
  left: 0;
  background: #fff;
  text-align: left;
}
div.standings-container div.standings-scroll-container table.standings-sortable > tbody > tr > td:not(:first-child) {
  text-align: center;
}
div.standings-container div.standings-scroll-container table.standings-sortable > tbody > tr.wildcard-playoffs > td {
  border-bottom: 2px solid var(--color-primary);
}

/* Swipers */
.swiper-standings-navigation {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.swiper-standings-navigation .swiper-slide {
  text-align: center;
}
.swiper-standings-navigation .swiper-slide-active {
  font-size: 2em;
}

.swiper-standings .swiper-slide {
  overflow: auto;
}

.matchup-header {
  margin: 15px 0 25px;
}
.matchup-header .team-logo {
  height: 64px;
}
.matchup-header .team-name {
  font-size: 1.1em;
  font-weight: bold;
}
.matchup-header .vs-label {
  color: var(--color-text-light);
  font-weight: bold;
}

table.matchup-table {
  width: 100%;
  border-collapse: collapse;
}
table.matchup-table thead tr {
  border-bottom: 2px solid var(--color-primary);
}
table.matchup-table thead tr th {
  padding: 6px 8px;
}
table.matchup-table thead tr th.matchup-table__stat-col {
  border-left: 1px solid var(--table-border-color);
  border-right: 1px solid var(--table-border-color);
  text-align: center;
  color: var(--color-text-light);
}
table.matchup-table thead tr th.matchup-table__left {
  text-align: right;
}
table.matchup-table thead tr th.matchup-table__right {
  text-align: left;
}
table.matchup-table tbody tr.matchup-section {
  background: #f8f9fa;
}
table.matchup-table tbody tr.matchup-section td {
  padding: 4px 8px;
  font-weight: bold;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
table.matchup-table tbody tr.matchup-row td {
  padding: 6px 8px;
}
table.matchup-table tbody tr.matchup-row td.matchup-table__left {
  text-align: right;
  width: 35%;
}
table.matchup-table tbody tr.matchup-row td.matchup-table__stat-col {
  text-align: center;
  width: 30%;
  color: var(--color-text-light);
  border-left: 1px solid var(--table-border-color);
  border-right: 1px solid var(--table-border-color);
}
table.matchup-table tbody tr.matchup-row td.matchup-table__right {
  text-align: left;
  width: 35%;
}
table.matchup-table tbody tr.matchup-row td.edge {
  font-weight: bold;
  color: #198754;
}

.matchup-edge-arrow {
  color: #198754;
}

.team-nav-link {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.team-nav-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.team-nav-link.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.team-page-header {
  background: #fff;
  border-bottom: 2px solid var(--color-primary);
  margin-bottom: 20px;
  padding: 10px 0;
}
.team-page-header .team-header-top {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}
.team-page-header .team-logo-col {
  flex-shrink: 0;
}
.team-page-header .team-logo-col img {
  height: 65px;
}
.team-page-header .team-identity {
  flex-shrink: 0;
  min-width: 130px;
}
.team-page-header .team-identity .team-name {
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.2;
}
.team-page-header .team-identity .team-meta {
  color: var(--color-text-muted);
  margin-top: 2px;
}
.team-page-header .team-stats-strip {
  display: flex;
  gap: 12px;
  flex-shrink: 1;
}
.team-page-header .team-stats-strip .stat-item {
  text-align: center;
}
.team-page-header .team-stats-strip .stat-item .stat-label {
  display: block;
  font-size: 0.7em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
}
.team-page-header .team-stats-strip .stat-item .stat-value {
  font-weight: bold;
  font-size: 1.05em;
}
.team-page-header .team-page-nav {
  margin-left: auto;
  flex-shrink: 0;
  gap: 4px;
  align-items: center;
}
.team-page-header .team-nav-toggle {
  margin-left: auto;
  flex-shrink: 0;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  padding: 5px 12px;
  font-weight: 600;
  font-size: 0.82em;
  cursor: pointer;
}
.team-page-header .team-nav-toggle:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.team-page-header .team-page-nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0 4px;
}
.team-page-header .team-page-nav-mobile .team-nav-link {
  display: block;
  width: 100%;
  text-align: center;
}

@media (max-width: 991px) {
  .team-page-header .team-header-top {
    flex-wrap: wrap;
    gap: 10px;
  }
  .team-page-header .team-header-top .team-stats-strip {
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }
}
table#teamstats > thead > tr > th {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.9em;
  font-weight: 500;
  text-align: center;
  padding: 7px 0;
  white-space: nowrap;
  position: sticky;
  top: 0;
}
table#teamstats > thead > tr > th:first-child {
  width: unset;
  min-width: unset;
  z-index: 2;
}
table#teamstats > thead > tr > th:nth-child(2) {
  position: sticky;
  left: 0;
  z-index: 1000;
}
table#teamstats > tbody > tr:hover > td {
  background: #9dcaf1 !important;
}
table#teamstats > tbody > tr {
  /* Team Row Data */
}
table#teamstats > tbody > tr > td {
  padding: 7px 0;
  white-space: nowrap;
}
table#teamstats > tbody > tr > td.rank {
  text-align: center;
  min-width: 60px !important;
  width: 60px !important;
}
table#teamstats > tbody > tr > td.name {
  min-width: 165px;
  width: 165px;
  position: sticky;
  left: 0;
  background: #fff;
}
table#teamstats > tbody > tr > td:not(.name) {
  text-align: center;
  min-width: 70px;
  width: 70px;
}

div.tablesorter-pager {
  position: sticky;
  top: 0;
  left: 0;
  /* height: 40px;*/
  background: #fff;
  z-index: 1010;
  text-align: center;
  padding: 10px;
}
div.tablesorter-pager div.btn-group > .btn {
  margin: 0 0;
  width: 60px;
  background: var(--color-accent);
  color: white;
  font-weight: bold;
  font-size: 17px;
}
div.tablesorter-pager div.btn-group > .btn:hover {
  background: #9dcaf1 !important;
  color: var(--color-primary);
}

table#league-scoring > thead > tr > th {
  /* background: var(--color-primary);
   color: #fff;
   font-size: 0.9em;
   font-weight: 500;
   text-align: center;
   padding: 7px 0;
   white-space: nowrap;*/
  position: sticky;
  top: 40px;
}
table#league-scoring > thead > tr > th:first-child {
  width: unset;
  min-width: unset;
  z-index: 2;
}
table#league-scoring > thead > tr > th:nth-child(2) {
  position: sticky;
  left: 0;
  z-index: 1000;
}
table#league-scoring > tbody > tr:nth-child(even) > td {
  background: var(--color-bg-alt);
}
table#league-scoring > tbody > tr {
  /* Team Row Data */
}
table#league-scoring > tbody > tr > td {
  padding: 6px 0px;
  white-space: nowrap;
  background: #fff;
}
table#league-scoring > tbody > tr > td.rank {
  text-align: center;
  min-width: 60px !important;
  width: 60px !important;
}
table#league-scoring > tbody > tr > td.name {
  min-width: 165px;
  width: 165px;
  position: sticky;
  left: 0;
  z-index: 999;
}
table#league-scoring > tbody > tr > td:not(.name) {
  text-align: center;
  min-width: 70px;
  width: 70px;
}

table#salaryCap > thead > tr > th {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.9em;
  font-weight: 500;
  text-align: center;
  padding: 7px 0;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 10;
}
table#salaryCap > thead > tr > th:first-child {
  left: 0;
  z-index: 20;
}
table#salaryCap > tbody > tr:nth-child(even) > td {
  background: var(--color-bg-alt) !important;
}
table#salaryCap > tbody > tr:hover > td {
  background-color: #9dcaf1 !important;
}
table#salaryCap > tbody > tr > td {
  padding: 7px 10px;
  min-width: 150px;
}
table#salaryCap > tbody > tr > td:first-child {
  min-width: 165px;
  width: 165px;
  position: sticky;
  left: 0;
  background: #fff;
}
table#salaryCap > tbody > tr > td.negative {
  color: red;
  font-weight: bold;
}
table#salaryCap > tbody > tr > td:not(:first-child) {
  text-align: right;
  font-family: "Ubuntu Mono", monospace;
  font-size: 1.1em;
  font-weight: bold;
}

.faheader {
  margin: 10px 0;
  padding: 0;
}
.faheader .fanav {
  border-bottom: 1px solid var(--color-primary);
}
.faheader .fanav a {
  display: inline-block;
  padding: 5px 10px;
  text-align: left;
  border: 1px solid var(--color-primary);
  border-bottom: 0;
  color: #585858;
  text-decoration: none;
  font-weight: bold;
}
.faheader .fanav a:hover {
  cursor: pointer;
  background: maroon;
  color: #fff;
}
.faheader .fanav a.selected {
  pointer-events: none;
  cursor: default;
  background: maroon;
  color: #fff;
}

.fafilter > form > * {
  margin-right: 15px;
  font-size: 85%;
  font-weight: bold;
  vertical-align: middle;
}
.fafilter > form > label {
  margin-right: 5px;
}

/* Table Sorter Overrides */
tr.filtered {
  display: none;
}

input.tablesorter-filter {
  width: 100%;
}

/* End Table Sorter Overrides */
div.list-container {
  height: calc(100vh - 300px);
  overflow-x: scroll;
}

table#fa-list tr.header > th {
  position: sticky;
  top: 0 !important;
  background: #fff;
}
table#fa-list tr.header > th:first-child {
  left: 0;
  z-index: 100;
}
table#fa-list tr.tablesorter-filter-row > td {
  position: sticky;
  top: 23px;
  background: #fff;
}
table#fa-list tr.tablesorter-filter-row > td:first-child {
  left: 0;
  z-index: 100;
}
table#fa-list tr.tablesorter-filter-row > td input[type=search] {
  border: 1px solid rgb(118, 118, 118);
  border-radius: 5px;
}
table#fa-list tr.player > td:first-child {
  position: sticky;
  left: 0;
  background: #fff;
}
table#fa-list th {
  text-align: center;
}
table#fa-list th.name {
  min-width: 165px;
}
table#fa-list th.pos, table#fa-list th.status {
  width: 60px;
  max-width: 60px;
  min-width: 60px;
}
table#fa-list th.stat {
  width: 45px;
  max-width: 45px;
  min-width: 45px;
}
table#fa-list th.offer {
  min-width: 120px;
  max-width: 150px;
}
table#fa-list th.timer {
  min-width: 100px;
  max-width: 100px;
}
table#fa-list tr.player > td {
  text-align: center;
  vertical-align: middle;
  padding: 5px 3px;
}
table#fa-list tr.player > td.pos {
  font-size: 0.9em;
  font-weight: bold;
}
table#fa-list tr.player > td.name {
  white-space: nowrap;
  text-align: left;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 100%;
}
table#fa-list tr.player > td.name > span {
  margin-left: 5px;
}
table#fa-list tr.player > td.offer {
  white-space: nowrap;
  text-align: right;
  line-height: 25px;
}
table#fa-list tr.player > td.offer > img {
  width: 25px;
  float: left;
}
table#fa-list tr.player.even > td {
  background-color: var(--color-bg-light);
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

/* Free Agency Media Queries */
@media (max-width: 767.98px) {
  th.name {
    min-width: 110px !important;
    max-width: 110px;
  }
  tr.player > td.name {
    white-space: normal !important;
  }
}
/* Free Agent Player List */
/*
.player-info {

	overflow-x: auto;
	margin-bottom: 15px;

	thead th:hover {
		cursor: pointer;
	}

	tr.player {

		td {

			div {
				line-height: 20px;
				padding: 5px 0;

				&.high-bid {
				    font-weight: bold;

					font-size: 0.625rem;

					> span:first-child {
					    float: left;
						margin-right: 5px;
					}

				}


				&.offer {

					a {
						text-decoration: none;
						border: 1px solid maroon;
						padding: 4px;
						line-height: 20px;
						background: maroon;
						color: white;
						font-size: 0.625rem;
						font-weight: bold;				

						&:hover {
							background: lighten(maroon, 10%);
						}
					}
				}

				&.expiry {
					font-weight: bold;
					font-size: 0.625rem;
				}
			}
		}



	}

}*/
span.fa-status {
  font-size: smaller;
  color: #Fff;
  border-radius: 5px;
  padding: 3px 5px;
}
span.fa-status.RFA {
  background: red;
}
span.fa-status.UFA {
  background: green;
}

.high-bid img {
  max-width: 18px;
}

#fa-offer .player-info {
  overflow: hidden;
  overflow-x: auto;
  margin-bottom: 20px;
}
#fa-offer #player-header .player-headshot {
  width: 104px;
  max-width: 104px;
  min-width: 104px;
}
#fa-offer #player-header .logo {
  max-width: 35px;
  display: inline-block;
  margin-left: 15px;
  vertical-align: top;
}
#fa-offer #player-header .name {
  white-space: nowrap;
}
#fa-offer #player-header h2 {
  margin: 0;
  display: inline-block;
  line-height: 40px;
  font-size: 1.5em;
}
#fa-offer #player-header .pos {
  margin-left: 20px;
  font-size: 1.3em;
  padding: 1px 15px;
  background: #444444;
  color: #fff;
  border-radius: 10px;
}
#fa-offer form button {
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  background: #008000;
  border: 1px solid #008000;
  color: #fff;
  font-weight: bold;
}
#fa-offer form button:hover {
  cursor: pointer;
  background: #00b300;
}
#fa-offer form div.header {
  margin: 10px 0;
}
#fa-offer form div.header label {
  width: 33%;
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: bold;
  line-height: 36px;
  background: #eee;
  padding-left: 10px;
  vertical-align: top;
  border-radius: 5px;
}
#fa-offer form div.header > input[type=text], #fa-offer form div.header select {
  width: calc(67% - 4px);
  font-weight: bold;
  line-height: 36px;
  height: 36px;
  color: #555;
  border: 0;
  border-radius: 5px;
  padding: 0 15px;
}
#fa-offer .section-title {
  margin: 0.5em 0;
}
#fa-offer .section-title img {
  max-width: 40px;
  float: left;
  margin-right: 15px;
}
#fa-offer .section-title h3 {
  margin: 0;
  display: inline-block;
  line-height: 40px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: normal;
}
#fa-offer .teamInfo {
  background: #333;
  padding: 10px;
  border-radius: 5px;
}
#fa-offer .offer {
  margin-bottom: 10px;
  padding: 10px;
}
#fa-offer .offer h3 {
  color: #555;
  font-weight: 500;
}
#fa-offer .offer input[type=text], #fa-offer .offer select {
  font-weight: bold;
  color: #555;
  border: 1px solid #555 !important;
}
#fa-offer .offer input[type=text]#loyalty, #fa-offer .offer input[type=text]#aav, #fa-offer .offer input[type=text]#term, #fa-offer .offer select#loyalty, #fa-offer .offer select#aav, #fa-offer .offer select#term {
  border: 1px solid var(--color-bg-light) !important;
  background: var(--color-bg-light);
}
#fa-offer .bid-history div.title {
  margin: 20px 0 10px;
  border-bottom: 2px solid #333;
}
#fa-offer .bid-history div.title h2 {
  display: inline-block;
  border-bottom: 2px solid #333;
  padding: 0 0 10px;
  margin: 0;
}
#fa-offer .bid-history table {
  /*font-size: 0.7rem;
  font-weight: bold;*/
}
#fa-offer .bid-history table img {
  max-width: 25px;
  float: left;
}
#fa-offer .bid-history table tr.deleted {
  text-decoration: line-through;
  color: red;
  opacity: 0.6;
  font-weight: normal;
}
#fa-offer .bid-history table td {
  vertical-align: middle;
}
#fa-offer .bid-history table tr:nth-child(even) > td {
  background: #eee;
}

#fa-signings div.header {
  border-bottom: 2px solid #000;
  margin-bottom: 0.5em;
  padding: 0.5em 0;
}
#fa-signings table th {
  text-align: left;
}
#fa-signings table td {
  vertical-align: middle;
}
#fa-signings table td img.logo {
  max-width: 35px;
  width: 35px;
  display: block;
}

#fa-overview td.header {
  padding: 0;
  border-bottom: 2px solid #000;
}
#fa-overview h2 {
  font-size: 1.15rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  display: inline-block;
  padding: 1rem 0.5rem 0.5rem;
  border-bottom: 2px solid #000;
}
#fa-overview div.team-header img {
  float: left;
  max-height: 80px;
  height: 80px;
  margin-right: 10px;
  padding: 0 10px;
}
#fa-overview div.team-header div {
  background: #000;
  color: #fff;
  vertical-align: middle;
  border: 0;
  border-radius: 7px;
}
#fa-overview div.team-header div h1 {
  font-size: 1.5em;
  margin: 0;
  display: inline-block;
  line-height: 40px;
}
#fa-overview div.team-info table {
  font-weight: 400;
}
#fa-overview div.team-info table tr > td:first-child {
  font-weight: normal;
}
#fa-overview div.team-info table tr > td:nth-child(2) {
  text-align: right;
}
#fa-overview div.team-info table tr:last-child > td {
  border-top: 2px solid #585858 !important;
  font-weight: bold;
}
#fa-overview div.bid-info table {
  font-weight: normal;
}
#fa-overview div.bid-info table th {
  text-align: left;
}

table#rfa-exclusions {
  font-size: 1.2em;
  font-weight: normal;
}
table#rfa-exclusions td {
  vertical-align: middle;
}
table#rfa-exclusions td i.fa.fa-plus-circle {
  font-size: 1.3em;
  line-height: 1.3em;
}

/*@import "brhl_components/_user-management";
@import "brhl_components/_nav";

@import "brhl_components/_trades";

@import "brhl_components/_free-agency";

@import "brhl_components/_scoreboard";*/
body {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6em;
}

/* NavBar */
nav.navbar {
  border-radius: 0;
  background-color: #fff !important;
  text-align: center;
}

ul.navbar-nav {
  margin: 0 auto;
}
ul.navbar-nav > li.nav-item {
  border-bottom: 2px solid transparent;
  margin: 0 10px;
  transition: border-color 0.15s ease;
}
ul.navbar-nav > li.nav-item:hover {
  border-bottom-color: var(--color-primary);
}
ul.navbar-nav > li.nav-item > a.nav-link {
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 0.82em;
  padding-bottom: 6px;
}
ul.navbar-nav > li.nav-item > a.nav-link:hover, ul.navbar-nav > li.nav-item > a.nav-link.show {
  color: var(--color-accent);
}

.navbar .dropdown-menu:not(.megamenu) {
  background-color: var(--color-accent);
  border: 1px solid silver;
  border-radius: 0;
  padding: 0.5rem 0;
  min-width: 140px;
}
.navbar .dropdown-menu:not(.megamenu) .dropdown-item {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
}
.navbar .dropdown-menu:not(.megamenu) .dropdown-item:hover {
  background-color: transparent;
  color: red;
}

.navbar .megamenu {
  padding: 1rem;
  background-color: var(--color-accent);
  border-radius: 0px;
  border: 1px solid silver;
  margin: 0 12px;
  font-size: 1em;
  z-index: 9999;
}
.navbar .megamenu ul.list-unstyled > li {
  padding: 3px 0;
}
.navbar .megamenu ul.list-unstyled > li a {
  color: #fff;
}
.navbar .megamenu ul.list-unstyled > li a:hover {
  color: red;
  font-weight: 500;
}
.navbar .megamenu > .nav-team-list > .nav-div-list > span.division-title {
  display: block;
  text-align: center;
  color: #fff;
  text-decoration: underline;
  margin-bottom: 5px;
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {
  .navbar .has-megamenu {
    position: static !important;
  }
  .navbar .megamenu {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0;
  }
}
/* ============ desktop view .end// ============ */
/* ============ mobile view ============ */
@media (max-width: 991px) {
  .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse {
    overflow-y: auto;
    max-height: 90vh;
    margin-top: 10px;
  }
}
/* ============ mobile view .end// ============ */
/* End NavBar */
/* General Formatting */
a {
  text-decoration: none;
  color: black;
}
a:hover {
  cursor: pointer;
  color: red;
}

h3 {
  font-size: 0.85rem;
  font-weight: bold;
}

.flash {
  border: 1px solid #000;
  padding: 20px 0;
  text-align: center;
  font-weight: bold;
  margin: 0 auto 20px;
  width: 50%;
}

/*.main-content {
	@extend .container;
	position: relative;
    top: 150px;
}*/
img {
  vertical-align: middle;
}

img.logo-sm {
  width: 20px;
  margin: 0 10px 0 5px;
}

img.logo-md {
  width: 30px;
  margin: 0 10px 0 5px;
}

div.heading {
  border-bottom: 1px solid #000;
  padding-bottom: 0;
  margin-bottom: 0;
}
div.heading > span {
  margin: 0;
  border-bottom: 3px solid #000;
  display: inline-block;
  font-size: 1.5em;
  font-weight: bold;
}

.sticky-left {
  position: sticky;
  left: 0px;
  z-index: 1;
  background: #fff;
}

.sticky-top {
  position: sticky;
  top: 0px;
  z-index: 2;
}

/* Site Header */
header {
  /*@extend .clear;*/
  /*height: $header-height;*/
  background: #fff;
  /*position: fixed;
     top: 0;
     left: 0;*/
  width: 100%;
  z-index: 1;
  margin-bottom: 15px;
}
header .top-bar {
  height: 45px;
  line-height: 45px;
  background: #000;
}
header .top-bar > .container {
  position: relative;
}
header #brhl-logo {
  float: left;
  max-height: 125px;
}
header .box-right {
  float: right;
}
header .box-right a.login {
  color: #eee;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
  margin-right: 10px;
}
header .box-right a.login:hover {
  color: red;
}
header .box-right span.user {
  display: inline-block;
  vertical-align: middle;
  line-height: 100%;
  margin-right: 10px;
  color: #f3f3f3;
  font-size: 0.75rem;
  font-weight: bold;
}
header .box-right span.user > span.cp {
  display: block;
  margin: 5px 0;
  text-align: right;
  font-size: 1rem;
  border-top: 1px solid #444;
  padding-top: 4px;
}
header .box-right span.user > span.cp > a {
  color: #777;
}
header .box-right span.user > span.cp > a:hover {
  color: rgb(203.15, 203.15, 203.15);
}
header .box-right span.user > span.cp > a > i {
  margin: 0 0 0 5px;
}
header .box-right i.fa-bars {
  color: #f3f3f3;
  vertical-align: middle;
}

div.game {
  max-width: 150px;
  padding: 3px 10px;
  border: 1px solid var(--color-text-muted);
  border-radius: 5px;
  margin: 5px 10px;
  background: #fff;
}
div.game > div {
  line-height: 25px;
  line-height: 25px;
  font-weight: 500;
  font-size: 0.85em;
}
div.game > div img {
  margin: 0 10px 0 0;
}
div.game > div span.team {
  display: inline-block;
  line-height: 25px;
}
div.game > div span.score {
  float: right;
  line-height: 25px;
}

embed.boxscore {
  width: 100%;
  height: calc(100vh - 175px);
}