body {
  --body-background-color: #eee;
  --primary-color: #0f98c6;
  --primary-color-hover: #11a3d4;
  --link-color: #0576b9;
  --link-hover: #2B9DBD;
  --header-fg-color: White;
  --header-bg-color: #4f6276;
  --header-fg-hover: White;
  --header-bg-hover: #435364;
  --header-fg-hover-a: #ccc;
  --header-border-color: #2E3F53;
  --subheader-fg-color: White;
  --subheader-bg-color: #758698;
  --subheader-fg-hover: White;
  --subheader-bg-hover: #667789;
  --subheader-fg-hover-a: #ccc;
  --subheader-border-color: #667789;
  --hightlight-bg: #ffe;
  --main-text-color: #222;
  --green: #66D17F;
  --green-hover: #7ad78f;
  --red: #dc3545;
  --red-hover: #e04b59;
  --gray: #aaa;
  --gray-hover: #b7b7b7;
  --text-content-color: white;
  --myteam-color: #cfc;
  --table-background-color: White;
  --tr-header-color: #384047;
  --tr-color: white;
  --table-border-color: rgba(185, 196, 203, 0.4);
  --action-yellow: #fff204;
  --border-color: rgba(185, 196, 203, 0.4);
  --box-shadow-color: rgba(0, 0, 0, 0.1);
  --alert-color: #f44335;
  --alert-border-color: #d33b2e;
  --warning-color: #8bc34a;
  --warning-border-color: #78a840;
  --info-color: #0da2ce;
  --info-border-color: #0a8db5;
  --popout_title_background: #505a63;
  --popout_title_color: white;
  --popout_background: white;
  --popout_item_background: white;
  --popout_text_color: #222;
  --popout_tab_book_background: white;
  --popout_tab_book_color: #384047;
  --navigation_button_background: #505a63;
  --lobby-gradient-start: #256d79;
  --lobby-gradient-end: #23a1a0cf;
  --popup_overlay: rgba(58, 56, 56, 0.48);
  --details-color: #b2bbbd;
  --sportyear_header: #4f6276;
  --italic-color: #7b8b8e;
  --selected-bg-color: #def4fa;
  --tr-color-shaded: #f5f5f5;
  --filter-bg: rgba(255, 255, 255, 0.1);
  --filter-bg-hover: rgba(255, 255, 255, 0.2);
  --filter-select-bg: url(/frontend/img/button-arrow-gray.svg) no-repeat 100% center var(--filter-bg);
  --fa-color: black;
  --fa-color-link: var(--link-color);
  --tabbar-background-color: White;
  --tab-selected-color: var(--primary-color);
  --tab-not-selected-color: white;
}
body.no_scroll {
  overflow: hidden;
}
#universal-header {
  background-color: #222;
  height: 48px;
  min-height: 48px;
  width: 100%;
}
#universal-header [data-class='separator'] {
  border-top: solid 1px #333;
  display: block;
}
#universal-header a[data-selected='1'] > span:before {
  margin-bottom: -1.4em;
  content: "• ";
  color: black;
  margin-left: -0.5em;
  float: left;
}
@media (min-width: 1000px) {
  #universal-header {
    height: 145px;
    min-height: 145px;
  }
}
html {
  height: 100%;
}
body {
  background: var(--body-background-color);
  height: 100%;
  font-family: "Lato", sans-serif;
}
body > #page {
  display: flex;
  flex-flow: column;
  min-height: 100%;
}
body > #page > #page_content {
  flex: 1;
}
body > #page > #page_content > .text_content {
  background: transparent;
  padding-top: 0;
  max-width: 92em;
  margin: auto;
}
body > #page > #page_content > #react_root {
  background: transparent;
  padding-top: 0;
  max-width: 92em;
  margin: auto;
}
button,
select,
input[type='submit'],
input[type='reset'],
input[type='button'] {
  cursor: pointer;
}
a {
  color: var(--link-color);
  text-decoration: none;
}
a:hover {
  color: var(--link-hover);
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -moz-user-select: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  user-select: none;
  background-image: url(/frontend/img/button-drop.svg);
  padding-right: 4em;
  background-position: 100% center;
  background-repeat: no-repeat;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
  margin: 0.5em 0;
  height: 2em;
  background-color: White;
  border-radius: 0.25em;
  border: solid 1px #ccc;
  padding-left: 0.5em;
  margin-right: 2px;
  width: auto;
  max-width: 22em;
}
select[disabled] {
  background: white !important;
  cursor: default;
}
label.checkbox {
  cursor: pointer;
}
label.checkbox input[type='checkbox'] + span {
  display: none;
  width: 1em;
  height: 1em;
  line-height: 1em;
  color: #0f98c6;
  border: solid 1px #0f98c6;
  vertical-align: top;
  margin-right: 0.5em;
  text-align: center;
  border-radius: 0.25em;
}
label.checkbox input[type='checkbox']:checked + span {
  color: White;
  background: #0f98c6;
}
label.checkbox input[type='checkbox']:checked + span:after {
  content: "✔";
}
label.checkbox input[type='checkbox']:hover + span {
  color: White;
  border: solid 1px #11a3d4;
  background: #11a3d4;
}
label.checkbox input[type='checkbox']:hover:checked + span {
  color: White;
  background: #11a3d4;
}
.page_width {
  max-width: 60em;
}
#react_root {
  padding: 1em;
}
.card {
  width: 100%;
  background: White;
  box-shadow: 0 1px 4px 0 rgba(12, 12, 13, 0.1);
  padding: 0.5em;
  margin-bottom: 1em;
  box-sizing: border-box;
}
.card > .cardTitle {
  background: #0f98c6;
  color: White;
  margin: -0.5em;
  margin-bottom: 0.5em;
  padding: 0.5em;
}
.card .subTitle {
  font-weight: bold;
}
.card .cardSection {
  display: block;
}
.card .cardSection:nth-last-of-type(n+2) {
  border-bottom: solid 1px #eee;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.primaryFG {
  color: #0f98c6;
}
.btn {
  outline: none;
  background-color: var(--primary-color);
  text-decoration: none;
  color: White;
  padding: 0.75em 2em;
  border-radius: 0.5em;
  font-size: 1em;
  font-weight: normal;
  font-family: "Lato", sans-serif;
  white-space: nowrap;
  border: solid 1px transparent;
  display: inline-block;
}
.btn:hover {
  background-color: var(--primary-color-hover);
}
.btn.inv {
  color: var(--primary-color);
  background-color: White;
  border-color: var(--primary-color);
}
.btn.inv:hover {
  color: White;
  background-color: var(--primary-color-hover);
  border-color: var(--primary-color-hover);
}
.btn.inv[disabled] {
  color: White;
  border-color: transparent;
}
.btn.small {
  padding: 0.25em 0.75em;
  font-size: 0.8em;
}
.btn.medium {
  padding: 0.5em 1.25em;
  font-size: 0.9em;
}
.btn.green {
  background: var(--green);
}
.btn.green:hover {
  background: var(--green-hover);
}
.btn.red {
  background: var(--red);
}
.btn.red:hover {
  background: var(--red-hover);
}
.btn.gray {
  background: var(--gray);
}
.btn.gray:hover {
  background: var(--gray-hover);
}
.btn[disabled] {
  background: var(--gray);
  cursor: default;
}
.btn[disabled]:hover {
  background: var(--gray);
}
.btn.disabledIcon i.fa {
  display: none;
}
.btn.disabledIcon[disabled] i.fa {
  display: inline-block;
  margin-left: 0.5em;
}
button.link {
  border: none;
  background: transparent;
  color: var(--link-color);
  font-size: 1em;
}
button.link:hover {
  color: var(--link-hover);
}
button.link[disabled] {
  color: var(--gray);
}
button.link[disabled]:hover {
  color: var(--gray);
}
button.link.disabledIcon i.fa {
  display: none;
}
button.link.disabledIcon[disabled] i.fa {
  display: inline-block;
  margin-left: 0.5em;
}
table.data {
  font-size: 0.8em;
  width: calc(100% - 2em);
  margin: 1em;
}
table.data th {
  text-align: left;
  font-weight: normal;
  border-bottom: solid 1px #eee;
  padding: 0.8em 1em;
  background: White;
  vertical-align: top;
}
table.data th[colspan='100%'] {
  font-size: 1em;
  border-left: none;
  border-right: none;
  color: var(--tr-header-color);
  font-weight: bold;
}
table.data td {
  padding: 0.8em 1em;
  padding-right: 0;
  border-bottom: solid 1px #eee;
  background: White;
  vertical-align: top;
}
table.data td:last-child {
  padding-right: 1em;
}
table.data tr.spacer td {
  background: transparent;
  box-shadow: inset 1px 4px 0 rgba(12, 12, 13, 0.1);
}
table.data tr.spacer td:after {
  content: "";
  background: #eee;
  height: 1.25em;
  position: absolute;
  width: 100%;
  left: 0;
  margin-top: -0.5em;
}
table.data tbody:last-child > tr.spacer:last-child {
  display: none;
}
table.data.hoverRow > tbody > tr:hover > td {
  background-color: var(--tr-hover-color);
}
table.data.hoverRow > tbody > tr.noHover:hover > td {
  background-color: inherit;
}
table.data > thead > tr > th,
table.data > thead > tr > td {
  font-weight: normal;
  color: var(--header-fg-color);
  background: var(--header-bg-color);
  border-bottom: solid 1px var(--header-border-color);
}
table.data > thead > tr > th[colspan="100%"],
table.data > thead > tr > td[colspan="100%"] {
  color: var(--header-fg-color);
  background: var(--header-bg-color);
}
table.data > thead > tr > th a,
table.data > thead > tr > td a,
table.data > thead > tr > th a:not(.btn),
table.data > thead > tr > td a:not(.btn),
table.data > thead > tr > th button.link,
table.data > thead > tr > td button.link {
  color: var(--header-fg-color);
}
table.data > thead > tr > th a:hover,
table.data > thead > tr > td a:hover,
table.data > thead > tr > th a:not(.btn):hover,
table.data > thead > tr > td a:not(.btn):hover,
table.data > thead > tr > th button.link:hover,
table.data > thead > tr > td button.link:hover {
  color: var(--header-fg-hover-a);
}
table.data > thead > tr:nth-child(n+2) > th,
table.data > thead > tr:nth-child(n+2) > td {
  color: var(--subheader-fg-color);
  background: var(--subheader-bg-color);
}
table.data > tfoot > tr > td {
  background: #dddddd;
  border-bottom: none;
  font-weight: bold;
}
tr.sortable > th,
tr.sortable > td {
  outline: none;
  position: relative;
}
tr.sortable > th > .fa,
tr.sortable > td > .fa {
  position: absolute;
  z-index: 1;
  height: 2em;
  margin-top: -0.75em;
  line-height: 1.5em;
  padding-left: 0.25em;
  padding-right: 0.25em;
}
tr.sortable > th > .fa:first-child,
tr.sortable > td > .fa:first-child {
  margin-left: -1em;
  padding-right: 0;
}
tr.sortable > th > .fa.fa-sort,
tr.sortable > td > .fa.fa-sort {
  display: none;
  color: #ccc;
}
tr.sortable > th > .fa.fa-sort-asc,
tr.sortable > td > .fa.fa-sort-asc {
  line-height: 3.5em;
}
tr.sortable > th > .fa.fa-sort-asc::before,
tr.sortable > td > .fa.fa-sort-asc::before {
  content: "\f0de";
}
tr.sortable > th > .fa.fa-sort-desc,
tr.sortable > td > .fa.fa-sort-desc {
  line-height: 2.5em;
}
tr.sortable > th > .fa.fa-sort-desc::before,
tr.sortable > td > .fa.fa-sort-desc::before {
  content: "\f0dd";
}
tr.sortable > th[onClick],
tr.sortable > td[onClick] {
  cursor: pointer;
}
tr.sortable > th[onClick]:hover,
tr.sortable > td[onClick]:hover {
  background: #eee;
}
tr.sortable:nth-child(1) > td > .fa,
tr.sortable:nth-child(1) > th > .fa {
  background: var(--header-bg-color);
}
tr.sortable:nth-child(1) > td[onClick]:hover,
tr.sortable:nth-child(1) > th[onClick]:hover {
  color: var(--header-fg-hover);
  background: var(--header-bg-hover);
}
tr.sortable:nth-child(1) > td[onClick]:hover > .fa,
tr.sortable:nth-child(1) > th[onClick]:hover > .fa {
  background: var(--header-bg-hover);
}
tr.sortable:nth-child(n+2) > td > .fa,
tr.sortable:nth-child(n+2) > th > .fa {
  background: var(--subheader-bg-color);
}
tr.sortable:nth-child(n+2) > td[onClick]:hover,
tr.sortable:nth-child(n+2) > th[onClick]:hover {
  color: var(--subheader-fg-hover);
  background: var(--subheader-bg-hover);
}
tr.sortable:nth-child(n+2) > td[onClick]:hover > .fa,
tr.sortable:nth-child(n+2) > th[onClick]:hover > .fa {
  background: var(--subheader-bg-hover);
}
table.card {
  padding: 0;
  background: transparent;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.card a:not(.btn),
table.data a:not(.btn) {
  text-decoration: none;
  color: var(--link-color);
}
.card a:not(.btn):hover,
table.data a:not(.btn):hover {
  color: var(--link-hover);
}
.footer_ad_dialog {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  z-index: 10000;
}
.footer_ad_dialog > div[data-a-spot] {
  border: solid 3px White;
  margin: auto !important;
}
@media (min-width: 650px) {
  .footer_ad_dialog > div[data-a-spot] {
    width: 600px !important;
  }
}
.tabBook {
  display: none;
}
.tabBook > div:first-child > * {
  height: 3em;
  text-align: center;
  border: none;
  color: Black;
  display: inline-block;
  box-sizing: border-box;
  padding: 0 1em;
  font-size: 0.8em;
  outline: none;
  background: #fff;
}
.tabBook > div:first-child > *.selected {
  background: White;
  height: 3.1em;
  vertical-align: bottom;
}
.tabBook > div:last-child > * {
  display: none;
}
.tabBook > button.showTabs {
  display: none;
}
.tabBar > div:first-child {
  background: White;
  margin-bottom: 1.5em;
  box-shadow: 0 2px 3px 0 rgba(56, 64, 71, 0.1);
}
.tabBar > div:first-child > button {
  height: 4em;
  background: White;
  color: Black;
  border-top: solid 0.25em transparent;
  border-bottom: solid 0.25em transparent;
  padding-left: 2em;
  padding-right: 2em;
  margin-left: 1em;
  margin-right: 0;
}
.tabBar > div:first-child > button.selected {
  height: 4em;
  color: var(--gray);
  border-bottom: solid 0.25em var(--link-color);
  color: var(--tr-header-color);
}
.morelink {
  text-align: right;
}
.morelink:first-child {
  padding-top: 1em;
  text-align: center;
}
.SetLineupPage .SetLineupChanges button .fa-times:after {
  display: none;
}
form.standard label {
  display: block;
  margin-top: 1em;
}
form.standard input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 3em;
  padding: 0 0.5em;
  margin-top: 0.5em;
  border-radius: 0.25em;
  border: solid 1px #ccc;
}
form.standard input[readonly] {
  background: inherit;
  border: none;
  cursor: inherit;
  color: inherit;
}
form.standard select {
  display: block;
  font-size: 0.8em;
}
form.standard textarea {
  display: block;
  width: 100%;
  height: 10em;
  margin-bottom: 1em;
  box-sizing: border-box;
  border: solid 1px #E0E0E3;
}
button.watchlist,
.PlayersPageTable > table > tbody > tr > td > button {
  cursor: pointer;
  font-size: 1em;
  background: transparent;
  border: none;
  outline: none;
  color: #31ADD0;
  height: 3em;
}
button.watchlist.add,
.PlayersPageTable > table > tbody > tr > td > button.add {
  color: #AFAFAF;
}
button.watchlist:hover,
.PlayersPageTable > table > tbody > tr > td > button:hover {
  background: #F6F6F6;
}
button.watchlist:active,
.PlayersPageTable > table > tbody > tr > td > button:active {
  background: #eee;
}
/* Ads */
.ad_728x90 {
  text-align: center;
  margin-top: 1em;
}
.ad_728x90 > div {
  height: 90px;
}
div[data-a-spot] {
  max-width: 100%;
  margin: auto;
}
div[data-a-spot] > a {
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
div[data-a-spot][data-a-spot='MyTeams'] {
  margin-top: 1em;
}
.abutler {
  text-align: center;
}
.abutler > div {
  display: inline;
}
.abutler > div.mobile {
  display: none;
}
.abutler > div.sharplink {
  display: none;
}
.abutler > div > div {
  display: inline-block;
}
.abutler > div > div > a > img {
  max-width: 100%;
}
.abutler > div.mobile > div > a > img {
  max-height: 250px;
}
.abutler > div.height250 > div > a > img {
  max-height: 250px;
}
.abutler > div.height90 > div > a > img,
.abutler > div.height90 > div > div > a > img {
  max-height: 90px;
  margin-bottom: 0.2em;
}
@media (max-width: 950px) {
  .abutler > div {
    display: none;
  }
  .abutler > div.mobile {
    display: block;
  }
  .abutler > div.sharplink {
    max-width: 100%;
  }
  .abutler > div.sharplink > div,
  .abutler > div.sharplink > div > img {
    max-width: 100%;
  }
}
#iStoreLink {
  width: 8em;
  height: 3em;
  display: inline-block;
  margin: auto;
  background: no-repeat url(/frontend/img/download_apple_black.svg) center center;
}
#pStoreLink {
  width: 8em;
  height: 3em;
  display: inline-block;
  margin: auto;
  background: no-repeat url(/frontend/img/google-play-badge.svg) center center;
}
#socialConnect {
  width: 100%;
  height: 3em;
  display: inline-flex;
  margin: auto;
  float: left;
  color: #323232;
  font-family: Arial;
  font-size: 14px;
}
@media (max-width: 999px) {
  #socialConnect {
    justify-content: center;
  }
}
#socialConnect > ul {
  padding-inline-start: 40px;
}
#socialConnect > ul > span {
  padding: 0px 0px 0px 15px;
}
body.cordova #iStoreLink {
  display: none;
}
body.cordova #pStoreLink {
  display: none;
}
sl__global_betslip .sl__betslip_status {
  background-image: url('https://delivery-dev.sharplink.us/partners/nfc/nfc-betslip-chip.svg'), linear-gradient(-210deg, var(--primary-color-hover) 0%, var(--primary-color) 100%) !important;
}
sl__player_chip[module-origin="sharplink"] {
  color: inherit;
}
.SharplinkRibbonModule {
  text-align: center;
}
#SharplinkDialogModule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  padding-top: 1em;
  z-index: 9999999;
}
#SharplinkDialogModule > div {
  background: White;
  border-radius: 8px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.5);
  width: 90%;
  max-width: 41em;
  padding: 3em;
  box-sizing: border-box;
  text-align: center;
  font-family: "Lato", sans-serif;
  overflow: hidden;
}
#SharplinkDialogModule > div:before {
  content: "+";
  color: White;
  display: block;
  font-size: 2em;
  --sharplinkDialogModuleBrand_Logo: url(/frontend/theme/cdm/img/logo-white.svg);
  --sharplinkDialogModuleBrand_Size: 5em;
  --sharplinkDialogModuleBrand_Offset: 3.5em;
  --sharplinkDialogModuleBrand_SizeMobile: 3em;
  --sharplinkDialogModuleBrand_OffsetMobile: 2em;
  --sharplinkDialogModuleBrand_MarginLeftMobile: -1em;
  background: var(--sharplinkDialogModuleBrand_Logo) calc(50% - var(--sharplinkDialogModuleBrand_Offset)) center no-repeat,
					url(/frontend/img/BetMGM-Logo.svg) calc(50% + 4.5em) center no-repeat,
					url(/frontend/img/basketball-backboard.jpg) 2em center no-repeat;
  background-size: var(--sharplinkDialogModuleBrand_Size), 7em, cover;
  height: 143px;
  line-height: 143px;
  margin: -1.5em;
  margin-bottom: 1em;
  margin-left: -4em;
}
#SharplinkDialogModule > div > div:first-child {
  font-size: 1.25em;
  font-weight: bold;
  font-family: "Lato Bold", sans-serif;
}
#SharplinkDialogModule > div > div:nth-child(2) {
  margin: 2em 0;
}
#SharplinkDialogModule > div > div:nth-child(4) {
  font-size: 0.8em;
}
#SharplinkDialogModule > div > div:last-child {
  margin-top: 1em;
}
#SharplinkDialogModule > div > div:last-child > a {
  margin: 1em 0;
}
#SharplinkDialogModule > div > div:last-child > button {
  margin-top: 1em;
}
@media (max-width: 40em) {
  #SharplinkDialogModule {
    padding-top: 0;
  }
  #SharplinkDialogModule > div {
    width: 100%;
    padding: 1em;
  }
  #SharplinkDialogModule > div:before {
    height: 90px;
    line-height: 90px;
    margin: -0.5em;
    margin-left: var(--sharplinkDialogModuleBrand_MarginLeftMobile);
    margin-bottom: 0.5em;
    background-size: var(--sharplinkDialogModuleBrand_SizeMobile), 3.5em, cover;
    background-position: calc(50% - var(--sharplinkDialogModuleBrand_OffsetMobile)) center, calc(50% + 2.25em), center center;
  }
}
body.nfc #SharplinkDialogModule > div:before {
  --sharplinkDialogModuleBrand_Logo: url(/frontend/theme/nfbkc/img/logo.svg);
  --sharplinkDialogModuleBrand_Size: 2em;
  --sharplinkDialogModuleBrand_Offset: 2em;
  --sharplinkDialogModuleBrand_SizeMobile: 1em;
  --sharplinkDialogModuleBrand_OffsetMobile: 1em;
  --sharplinkDialogModuleBrand_MarginLeftMobile: -3em;
}
body.mfl10s #SharplinkDialogModule > div:before {
  --sharplinkDialogModuleBrand_Logo: url(/frontend/theme/mfl10s/img/logo-all.svg);
}
a.PlayerLinkV sl__player_chip {
  font-size: 2em;
  float: right;
  margin-bottom: -1em;
  margin-top: -0.2em;
}
.BetsLabel {
  display: none;
}
.BetsLabelV {
  float: right;
  background: url(/frontend/img/bet_arrow.png);
  width: 34px;
  height: 31px;
  margin-bottom: -1em;
  margin-right: -1em;
  margin-top: -0.25em;
  display: none;
}
.sitemap {
  display: flex;
  flex-direction: row;
  justify-content: left;
  flex-wrap: wrap;
  padding: 1em;
  font-size: 0.8em;
  color: #666;
}
.sitemap > .sitemap_item {
  flex: 1;
  margin: 0.5em;
  min-width: 9em;
}
.sitemap > .sitemap_item a {
  text-decoration: none;
  color: #666;
}
/*# sourceMappingURL=style.css.map */