a:hover,a:focus{color:#000;outline:none;}
.AdSlot {
  position: relative;
  margin-top: 6px;
  overflow: hidden;
  z-index: 2; }

.AdSlot-item {
  position: relative;
  overflow: hidden;
  transition: opacity .15s ease; }

/* AdSlot odds skeleton loading  */
.AdSlot-loading {
  display: flex;
  justify-content: space-evenly;
  max-width: 750px;
  height: 24px;
  margin: 4px auto 0; }

.AdSlot-loading-placeholder {
  position: relative;
  width: 117px;
  height: 26px;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: .2em;
  overflow: hidden; }

.AdSlot-loading-placeholder::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  animation: load 1s cubic-bezier(0.4, 0, 0.2, 1) infinite; }

@keyframes load {
  from {
    left: -100%; }
  to {
    left: 100%; } }

.Breadcrumb {
  background-color: #fafafa;
  height: 30px; }

.Breadcrumb ul {
  display: flex;
  height: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px; }

.Breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 11px; }

.Breadcrumb-link {
  display: flex;
  align-items: center;
  height: 100%; }

a.Breadcrumb-link:active,
.no-touch a.Breadcrumb-link:hover {
  text-decoration: underline; }

.Breadcrumb-icon {
  display: flex;
  align-items: center;
  width: 24px;
  height: 24px;
  padding-right: 8px; }

body.lang-rtl .Breadcrumb-icon {
  padding-left: 8px;
  padding-right: 0; }

.Breadcrumb-next {
  width: 30px;
  height: 30px; }

.Breadcrumb-match {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 2; }
  .Breadcrumb-match .Breadcrumb-link {
    color: #fff; }
  .Breadcrumb-match .Breadcrumb-next {
    fill: #fff; }

@media (prefers-color-scheme: dark) {
  .Breadcrumb {
    background-color: #111; }
  .Breadcrumb-next {
    fill: #fff; } }

.Button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  min-width: 110px;
  min-height: 32px;
  margin: 16px 16px 16px 28px;
  padding: 8px 16px;
  background: #37d431;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer; }

.Button:focus {
  outline: 0; }

.Button:active,
.no-touch .Button:hover {
  opacity: 0.95;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1); }

.Button:disabled,
.Button[disabled],
.Button-disabled {
  opacity: 0.3; }

.Button svg {
  fill: #fff;
  width: 14px;
  height: 14px;
  margin-right: 16px; }

body.lang-rtl .Button svg {
  margin-right: 0; }

.Button span {
  margin-top: 2px; }

.Button svg + span {
  margin-right: 16px; }

body.lang-rtl svg + span {
  margin-right: 0;
  margin-left: 16px; }

.Button-favorite {
  margin-top: 0;
  background: #fafafa;
  color: #222;
  padding: 0;
  margin-right: 28px; }

.Button-favorite svg {
  width: 24px;
  height: 24px;
  margin-right: 8px; }

.Button-favorite.Button-isFavorite svg {
  background-color: #ffed00;
  border-radius: 100%; }

.Button-facebook {
  background-color: #4267B2; }

.Button-twitter {
  background-color: #56ACEF;
  margin-left: 0; }

.Button-news {
  margin: 0;
  background-color: #eee;
  color: #000; }

.ShareButtons {
  display: flex;
  margin-top: 12px;
  clear: both; }

.ShareButtons-match {
  position: relative;
  margin-top: 0;
  justify-content: center;
  z-index: 2; }

.ShareButtons-match .Button {
  margin-bottom: 0; }

.ShareButtons-match .Button-facebook {
  margin-left: 16px; }

@media (max-width: 300px) {
  .ShareButtons .Button {
    min-width: 100px; }
  .ShareButtons svg {
    margin-right: 0; }
  .ShareButtons span {
    display: none; } }

@media (prefers-color-scheme: dark) {
  .Button:active,
  .no-touch .Button:hover {
    box-shadow: 0 2px 2px 0 rgba(255, 255, 255, 0.2); }
  .Button-news {
    background-color: #222;
    color: #fff; }
  .Button-favorite {
    background-color: #222;
    color: #fff; }
  .Button-favorite svg path {
    fill: #fff; }
  .Button-favorite.Button-isFavorite svg path {
    fill: #222; } }

.CookieConsent {
  position: fixed;
  bottom: 48px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  z-index: 50; }

.CookieConsent-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 10px; }

.CookieConsent-link {
  display: inline-block;
  margin-left: 5px;
  border-bottom: 1px solid #000;
  white-space: nowrap;
  max-width: 50%; }

@media (min-width: 728px) {
  .CookieConsent {
    font-size: 12px;
    bottom: 0; } }

@media (prefers-color-scheme: dark) {
  .CookieConsent {
    background-color: #111; } }

/* DayPicker styles */

.DayPicker {
  display: inline-block;
  font-size: 1rem;
}

.DayPicker-wrapper {
  position: relative;

  flex-direction: row;
  padding-bottom: 1em;

  -webkit-user-select: none;

     -moz-user-select: none;

      -ms-user-select: none;

          user-select: none;
}

.DayPicker-Months {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.DayPicker-Month {
  display: table;
  margin: 0 1em;
  margin-top: 1em;
  border-spacing: 0;
  border-collapse: collapse;

  -webkit-user-select: none;

     -moz-user-select: none;

      -ms-user-select: none;

          user-select: none;
}

.DayPicker-NavBar {
}

.DayPicker-NavButton {
  position: absolute;
  top: 1em;
  right: 1.5em;
  left: auto;

  display: inline-block;
  margin-top: 2px;
  width: 1.25em;
  height: 1.25em;
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  color: #8B9898;
  cursor: pointer;
}

.DayPicker-NavButton:hover {
  opacity: 0.8;
}

.DayPicker-NavButton--prev {
  margin-right: 1.5em;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAVVJREFUWAnN2G0KgjAYwPHpGfRkaZeqvgQaK+hY3SUHrk1YzNLay/OiEFp92I+/Mp2F2Mh2lLISWnflFjzH263RQjzMZ19wgs73ez0o1WmtW+dgA01VxrE3p6l2GLsnBy1VYQOtVSEH/atCCgqpQgKKqYIOiq2CBkqtggLKqQIKgqgCBjpJ2Y5CdJ+zrT9A7HHSTA1dxUdHgzCqJIEwq0SDsKsEg6iqBIEoq/wEcVRZBXFV+QJxV5mBtlDFB5VjYTaGZ2sf4R9PM7U9ZU+lLuaetPP/5Die3ToO1+u+MKtHs06qODB2zBnI/jBd4MPQm1VkY79Tb18gB+C62FdBFsZR6yeIo1YQiLJWMIiqVjQIu1YSCLNWFgijVjYIuhYYCKoWKAiiFgoopxYaKLUWOii2FgkophYp6F3r42W5A9s9OcgNvva8xQaysKXlFytoqdYmQH6tF3toSUo0INq9AAAAAElFTkSuQmCC');
}

.DayPicker-NavButton--next {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAXRJREFUWAnN119ugjAcwPHWzJ1gnmxzB/BBE0n24m4xfNkTaOL7wOtsl3AXMMb+Vjaa1BG00N8fSEibPpAP3xAKKs2yjzTPH9RAjhEo9WzPr/Vm8zgE0+gXATAxxuxtqeJ9t5tIwv5AtQAApsfT6TPdbp+kUBcgVwvO51KqVhMkXKsVJFXrOkigVhCIs1Y4iKlWZxB1rX4gwlpRIIpa8SDkWmggrFq4IIRaJKCYWnSgnrXIQV1r8YD+1Vrn+bReagysIFfLABRt31v8oBu1xEBttfRbltmfjgEcWh9snUS2kNdBK6WN1vrOWxObWsz+fjxevsxmB1GQDfINWiev83nhaoiB/CoOU438oPrhXS0WpQ9xc1ZQWxWHqUYe0I0qrKCQKjygDlXIQV2r0IF6ViEBxVTBBSFUQQNhVYkHIVeJAtkNsbQ7c1LtzP6FsObhb2rCKv7NBIGoq4SDmKoEgTirXAcJVGkFSVVpgoSrXICGUMUH/QBZNSUy5XWUhwAAAABJRU5ErkJggg==');
}

.DayPicker-NavButton--interactionDisabled {
  display: none;
}

.DayPicker-Caption {
  display: table-caption;
  margin-bottom: 0.5em;
  padding: 0 0.5em;
  text-align: left;
}

.DayPicker-Caption > div {
  font-weight: 500;
  font-size: 1.15em;
}

.DayPicker-Weekdays {
  display: table-header-group;
  margin-top: 1em;
}

.DayPicker-WeekdaysRow {
  display: table-row;
}

.DayPicker-Weekday {
  display: table-cell;
  padding: 0.5em;
  color: #8B9898;
  text-align: center;
  font-size: 0.875em;
}

.DayPicker-Weekday abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

.DayPicker-Body {
  display: table-row-group;
}

.DayPicker-Week {
  display: table-row;
}

.DayPicker-Day {
  display: table-cell;
  padding: 0.5em;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
}

.DayPicker-WeekNumber {
  display: table-cell;
  padding: 0.5em;
  min-width: 1em;
  border-right: 1px solid #EAECEC;
  color: #8B9898;
  vertical-align: middle;
  text-align: right;
  font-size: 0.75em;
  cursor: pointer;
}

.DayPicker--interactionDisabled .DayPicker-Day {
  cursor: default;
}

.DayPicker-Footer {
  padding-top: 0.5em;
}

.DayPicker-TodayButton {
  border: none;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  color: #4A90E2;
  font-size: 0.875em;
  cursor: pointer;
}

/* Default modifiers */

.DayPicker-Day--today {
  color: #D0021B;
  font-weight: 700;
}

.DayPicker-Day--outside {
  color: #8B9898;
  cursor: default;
}

.DayPicker-Day--disabled {
  color: #DCE0E0;
  cursor: default;
  /* background-color: #eff1f1; */
}

/* Example modifiers */

.DayPicker-Day--sunday {
  background-color: #F7F8F8;
}

.DayPicker-Day--sunday:not(.DayPicker-Day--today) {
  color: #DCE0E0;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
  position: relative;

  background-color: #4A90E2;
  color: #F0F8FF;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover {
  background-color: #51A0FA;
}

.DayPicker:not(.DayPicker--interactionDisabled)
  .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover {
  background-color: #F0F8FF;
}

/* DayPickerInput */

.DayPickerInput {
  display: inline-block;
}

.DayPickerInput-OverlayWrapper {
  position: relative;
}

.DayPickerInput-Overlay {
  position: absolute;
  left: 0;
  z-index: 1;

  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.DatePicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background-color: #fafafa; }

body.lang-rtl .DatePicker {
  flex-direction: row-reverse; }

.DatePicker-prev,
.DatePicker-next {
  cursor: pointer;
  width: 48px;
  height: 48px; }

.DatePicker-prev svg {
  padding: 10px; }

.DatePicker-prev path {
  fill: #000; }

.DatePicker-prev:active,
.DatePicker-next:active,
.DatePicker-title:active,
.no-touch .DatePicker-prev:hover,
.no-touch .DatePicker-next:hover,
.no-touch .DatePicker-title:hover {
  background-color: rgba(0, 0, 0, 0.05); }

.DatePicker-title {
  display: flex;
  align-items: center;
  margin-left: -12px;
  padding-right: 12px;
  font-weight: 600;
  cursor: pointer; }

body.lang-rtl .DatePicker-title {
  padding-right: 0;
  padding-left: 12px; }

.DatePicker-title span {
  margin-top: 2px; }

.DatePicker-calendar {
  position: relative; }

.DatePicker-calendar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.DatePicker-calendar-inner {
  position: absolute;
  top: 10px;
  left: calc(50% - 138px);
  background-color: #fff;
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1; }

.DayPicker-Caption > div {
  font-size: 14px;
  font-weight: 600; }

.DayPicker-NavButton {
  top: 10px; }

.DayPicker-Day {
  border-radius: 4px; }

.DayPicker-Day:hover {
  background-color: rgba(0, 0, 0, 0.05) !important; }

.DayPicker-Day--today {
  color: #000; }

.DayPicker-Day--selected:not(.DayPicker-Day--outside),
.DayPicker-Day--selected:hover {
  background-color: #000 !important;
  color: #fff !important; }

@media (min-width: 728px) {
  .DatePicker {
    justify-content: flex-start;
    margin-left: -12px; }
  body.lang-rtl .DatePicker {
    justify-content: flex-end; }
  .DatePicker-prev {
    order: 1;
    margin-left: 12px; }
  .DatePicker-next {
    order: 2; }
  .DatePicker-title {
    order: 3;
    margin-left: 0; }
  body.lang-rtl .DatePicker-title {
    order: 0; }
  .DatePicker-calendar-inner {
    left: 10px; }
  body.lang-rtl .DatePicker-calendar-inner {
    left: calc(100% - 300px); } }

@media (prefers-color-scheme: dark) {
  .DatePicker {
    background-color: #111; }
  .DatePicker svg path {
    fill: #fff; }
  .DatePicker-prev:active,
  .DatePicker-next:active,
  .DatePicker-title:active,
  .no-touch .DatePicker-prev:hover,
  .no-touch .DatePicker-next:hover,
  .no-touch .DatePicker-title:hover {
    background-color: rgba(255, 255, 255, 0.05); }
  .DatePicker-calendar-inner {
    background-color: #111;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.8); }
  .DayPicker-Day:hover {
    background-color: rgba(255, 255, 255, 0.05) !important; }
  .DayPicker-Day--today {
    color: #fff; }
  .DayPicker-Day--selected:not(.DayPicker-Day--outside),
  .DayPicker-Day--selected:hover {
    background-color: #fff !important;
    color: #000 !important; } }

.EntityHeader {
  overflow: hidden; }

.EntityHeader-background {
  position: relative;
  width: 100%;
  height: 180px;
  background-color: #000;
  overflow: hidden; }

.EntityHeader-background img {
  width: auto;
  height: auto;
  min-width: 100%;
  opacity: 0.98; }

.EntityHeader-color {
  width: 100%;
  height: 70px; }

.EntityHeader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto; }

.EntityHeader-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  padding: 11px;
  background-color: #fff;
  border-radius: 100%;
  margin-top: -45px; }

.EntityHeader-player .EntityHeader-image {
  padding: 2px; }

.EntityHeader-player .EntityHeader-image img {
  min-width: 86px; }

.EntityHeader-image svg {
  width: 100%;
  height: 100%; }

.EntityHeader-title {
  padding: 18px 28px;
  margin: 0;
  text-align: center; }

.EntityHeader-text {
  margin-top: -8px;
  margin-bottom: 18px;
  padding: 0 28px; }

@media (min-width: 728px) {
  .EntityHeader-inner {
    align-items: flex-start; }
  .EntityHeader-image {
    margin-left: 28px; }
  body.lang-rtl .EntityHeader-image {
    margin-right: 28px; }
  .EntityHeader-title {
    font-size: 30px;
    padding: 28px;
    text-align: left; }
  .EntityHeader-text {
    font-size: 16px;
    margin-top: -18px; } }

.Event {
  display: flex;
  align-items: center;
  line-height: 18px;
  margin: 4px; }

body.lang-rtl .Event {
  direction: ltr; }

.Event > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(50% - 24px);
  margin-right: 8px;
  margin-left: 8px;
  text-align: right; }

.Event > div:first-child {
  align-items: flex-end; }

a.Event:active .Event-text,
.no-touch a.Event:hover .Event-text {
  text-decoration: underline; }

/* Reverse */
.Event-reverse {
  flex-direction: row-reverse; }

.Event-reverse > div {
  align-items: flex-end;
  text-align: left; }

.Event-reverse > div:first-child {
  align-items: flex-start; }

.Event .Event-player-img {
  width: 40px;
  height: 40px;
  margin: 4px; }

.Event-subText {
  font-size: 12px;
  color: #505050; }

.Event-time {
  color: #505050;
  font-size: 12px; }

.Event-goal .Event-text,
.Event-substitution .Event-text {
  font-weight: 600;
  letter-spacing: 0; }

.Event-substitution .Event-text {
  color: #37d431; }

.Event-substitution .Event-subText {
  color: #ff5100; }

@media (prefers-color-scheme: dark) {
  .EventState svg path,
  .Event-var-check svg path,
  .Event-var-decision svg path:first-child,
  .Event-post svg path:first-child,
  .Event-crossbar svg path:first-child,
  .Event-awarded-penalty svg path {
    fill: #fff; }
  .Event-missed-penalty svg path,
  .Event-penalty-shootout-missed svg path {
    fill: #ff5100; }
  .Event-subText,
  .Event-time {
    color: #eee; } }

.EventHeader {
  display: flex;
  align-items: center;
  height: 30px;
  text-align: center;
  margin-top: 28px; }

body.lang-rtl .EventHeader {
  direction: ltr; }

.EventHeader-text {
  width: 100%;
  font-weight: 600; }

.EventHeader-value {
  font-weight: 200;
  margin-left: 10px; }

body.lang-rtl .EventHeader-value {
  margin-right: 10px; }

.Footer {
  background: #fafafa;
  padding: 28px 28px 0;
  margin-top: 32px; }

.Footer-sections {
  display: flex;
  flex-direction: column; }

.Footer-sections h4 {
  text-transform: uppercase; }

.Footer-matches,
.Footer-forza-football {
  display: flex;
  justify-content: space-between;
  max-width: 300px; }

.Footer-matches__section,
.Footer-forza-football__section {
  display: flex;
  flex-direction: column; }

.Footer-matches__section.search {
  padding-right: 32px; }

.Footer-matches a,
.Footer-forza-football a,
.Footer-download a,
.Footer-social a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 8px 8px 8px 0px; }

.Footer-download a,
.Footer-social a {
  display: inline-block; }

.Footer a:active,
.Footer a:hover {
  text-decoration: underline;
  cursor: pointer; }

.Footer-social a:first-child {
  margin-left: -8px; }

.Footer-download-icon {
  height: 32px;
  width: 100px; }

.Footer-social-icon {
  height: 24px;
  width: 24px;
  margin-right: 16px; }

.lang-rtl .Footer-social-icon {
  margin-right: 0;
  margin-left: 16px; }

.Footer-terms {
  background: #000;
  padding: 16px 28px;
  margin: 28px -28px 0px;
  font-size: 12px; }

.Footer-terms > div {
  display: flex; }

.Footer-terms a,
.Footer-terms span {
  color: #fff; }

.Footer-terms a:nth-child(2) {
  margin-left: auto;
  padding-right: 16px; }

.lang-rtl .Footer-terms a:nth-child(2) {
  margin-left: 0;
  margin-right: auto;
  padding-left: 16px; }

@media (min-width: 728px) {
  .Footer-matches a,
  .Footer-forza-football a,
  .Footer-download a,
  .Footer-social a {
    min-height: inherit; }
  .Footer-sections {
    flex-direction: row;
    justify-content: space-between; }
  .Footer-sections section {
    padding-right: 28px; }
  .lang-rtl .Footer-sections section {
    padding-right: 0;
    padding-left: 28px; }
  .Footer-matches,
  .Footer-forza-football {
    flex-direction: column; }
  .Footer-matches__section.search {
    padding: 0; } }

@media (min-width: 1200px) {
  .Footer-sections {
    padding-left: 28px; }
  .Footer-terms > div {
    padding-left: 28px; } }

@media (prefers-color-scheme: dark) {
  .Footer {
    background-color: #1c1c1d; }
  .Footer-social svg path {
    fill: #fff; } }

.Header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  max-width: 1200px;
  margin: 0 auto; }

.Header-menu:active,
.no-touch .Header-menu:hover,
.Header-mobile a:active,
.no-touch .Header-mobile a:hover {
  background-color: #fbfbfb; }

.Header-sticky {
  position: sticky;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  z-index: 99; }

.Header-menu {
  cursor: pointer;
  min-width: 48px; }

.Header-logo {
  display: block; }

.Header-logo-icon {
  width: 66px;
  height: 28px; }

.Header-entity-image {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  padding: 10px;
  background-color: #fff;
  border-radius: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 0;
  cursor: pointer; }

.Header-entity-image svg {
  width: 100%;
  height: 100%; }

.Header-show-entity-image .Header-entity-image {
  opacity: 1;
  animation: scaleUp 0.2s ease-out; }

@keyframes scaleUp {
  from {
    transform: scale(0); }
  to {
    transform: scale(1); } }

.Header-mobile {
  display: flex;
  margin-left: auto; }

body.lang-rtl .Header-mobile {
  margin-right: auto;
  margin-left: 0; }

.Header-favorites,
.Header-settings,
.Header-search {
  display: block;
  width: 48px;
  height: 48px; }

.Header-desktop-search {
  display: none;
  width: 100%;
  margin-right: -40px; }

body.lang-rtl .Header-desktop-search {
  margin-right: auto; }

.Header-desktop {
  display: none;
  margin-left: auto;
  font-weight: 800; }

body.lang-rtl .Header-desktop {
  margin-left: 0;
  margin-right: auto; }

.Header-desktop a {
  display: flex;
  align-items: center;
  color: #767676;
  padding-right: 12px;
  white-space: nowrap; }

.Header-desktop a:active,
.no-touch .Header-desktop a:hover {
  color: #000; }

.Header-desktop span {
  margin-top: 1px; }

@media (max-width: 330px) {
  .Header-entity-image {
    display: none; }
  .Header-share {
    display: none; } }

@media (min-width: 728px) {
  .Header {
    justify-content: flex-start;
    height: 64px; }
  .Header-sticky {
    position: inherit;
    top: inherit;
    left: inherit;
    box-shadow: none; }
  .Header-logo {
    margin-left: 10px; }
  body.lang-rtl .Header-logo {
    margin-left: 0;
    margin-right: 10px; }
  .Header-logo-icon {
    width: 80px;
    height: 50px; }
  .Header-mobile,
  .Header-entity-image {
    display: none; }
  .Header-desktop-search {
    display: block; }
  .Header-desktop {
    display: flex; } }

@media (prefers-color-scheme: dark) {
  .Header-sticky {
    background-color: #000;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.1); }
  .Header-entity-image {
    background-color: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .Header-menu:active,
  .no-touch .Header-menu:hover,
  .Header-mobile a:active,
  .no-touch .Header-mobile a:hover {
    background-color: #222; }
  .Header-entity-image svg path,
  .Header-menu path,
  .Header-logo path,
  .Header-mobile svg path {
    fill: #fff; }
  .Header-desktop svg path {
    fill: #efefef; }
  .Header-desktop a {
    color: #efefef; }
  .Header-desktop a:active,
  .no-touch .Header-desktop a:hover {
    color: #fff; } }

.HeaderMenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100; }

.HeaderMenu-close:active,
.no-touch .HeaderMenu-close:hover {
  background-color: #fbfbfb; }

.HeaderMenu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8); }

.HeaderMenu-content {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  max-width: 400px;
  overflow-y: scroll;
  background-color: #fff;
  padding: 28px 0;
  padding-left: env(safe-area-inset-left);
  animation: fadeFromLeft 0.3s ease-out; }

body.lang-rtl .HeaderMenu-content {
  animation: fadeFromRight 0.3s ease-out; }

.HeaderMenu-logo {
  width: 66px;
  height: 28px;
  margin-left: 28px; }

body.lang-rtl .HeaderMenu-logo {
  margin-right: 28px; }

.HeaderMenu-close {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer; }

body.lang-rtl .HeaderMenu-close {
  left: 12px;
  right: auto; }

.HeaderMenu-downloads {
  margin-left: 20px; }

.HeaderMenu-app-store,
.HeaderMenu-play-store,
.HeaderMenu-huawei-appgallery {
  display: inline-block;
  padding: 8px; }

.HeaderMenu-app-store svg,
.HeaderMenu-play-store svg,
.HeaderMenu-huawei-appgallery svg {
  width: 94px;
  height: 40px; }

@keyframes fadeFromLeft {
  from {
    left: -100%;
    opacity: 0; }
  to {
    left: 0;
    opacity: 1; } }

@keyframes fadeFromRight {
  from {
    left: 100%;
    opacity: 0; }
  to {
    left: 0;
    opacity: 1; } }

@media (min-width: 728px) {
  .HeaderMenu-content {
    padding-top: 16px; }
  .HeaderMenu-logo {
    width: 80px;
    height: 50px; } }

@media (prefers-color-scheme: dark) {
  .HeaderMenu-close:active,
  .no-touch .HeaderMenu-close:hover {
    background-color: #222; }
  .HeaderMenu-overlay {
    background-color: rgba(0, 0, 0, 0.7); }
  .HeaderMenu-content {
    background-color: #000; }
  .HeaderMenu-logo path,
  .HeaderMenu-close path,
  .HeaderMenu .ListItem path {
    fill: #fff; } }

.SubHeader {
  margin-top: 38px;
  padding-left: 28px; }

body.lang-rtl .SubHeader {
  padding-left: 0;
  padding-right: 28px; }

.SubHeader-text {
  margin: 0; }

.SubHeader-danger {
  color: #ff5100; }

.ListItem {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 48px;
  padding-left: 28px; }

body.lang-rtl .ListItem {
  padding-left: 0;
  padding-right: 28px; }

a.ListItem:active,
.no-touch a.ListItem:hover {
  background-color: #fbfbfb;
  cursor: pointer; }

.ListItem-header {
  margin-top: 16px;
  background-color: #fbfbfb;
  font-weight: 600; }

.ListItem-danger {
  color: #ff5100; }

.ListItem-left {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  margin-left: -12px;
  margin-right: 8px; }

body.lang-rtl .ListItem-left {
  margin-left: 8px;
  margin-right: -12px; }

.ListItem-left img {
  max-width: 24px; }

.ListItem-text,
.ListItem-text-value {
  width: 100%; }

.ListItem-value {
  margin-top: 2px;
  font-size: 12px;
  color: #505050; }

.ListItem-meta {
  margin-left: auto;
  width: 60px;
  min-width: 60px;
  font-size: 12px;
  color: #505050;
  text-align: right;
  text-transform: capitalize;
  overflow: hidden; }

.ListItem-right {
  margin-left: auto;
  width: 48px;
  min-width: 48px;
  height: 48px; }

.ListItem-center-icon .ListItem-left {
  margin: 0 14px 0 0; }

@media (prefers-color-scheme: dark) {
  .ListItem-header {
    background-color: #111; }
  a.ListItem:active,
  .no-touch a.ListItem:hover {
    background-color: #222; }
  .ListItem-value {
    color: #97979d; }
  .ListItem-left path,
  .ListItem-right path {
    fill: #97979d; }
  .ListItem-meta {
    color: #97979d; } }

.Headline {
  font-weight: 600; }

.Headline-h1 {
  font-size: 24px;
  font-weight: 800; }

.Headline-h2 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px; }

.Headline-h3 {
  font-size: 14px;
  letter-spacing: 0.3px; }

.Highlight {
  padding: 12px 12px 0; }

.Highlight ul {
  display: flex;
  flex-flow: wrap; }

.Highlight-item {
  width: 50%;
  text-align: center;
  margin-bottom: 12px; }

.Highlight-link {
  display: flex;
  flex-direction: column; }

a.Highlight-link:active .Highlight-value,
.no-touch a.Highlight-link:hover .Highlight-value {
  text-decoration: underline; }

.Highlight-value {
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px; }

.Highlight-icon {
  width: 22px;
  margin-right: 6px; }

body.lang-rtl .Highlight-icon {
  margin-right: 0;
  margin-left: 6px; }

.Highlight-text {
  font-size: 12px; }

@media (min-width: 300px) {
  .Highlight-item {
    width: 33.3333%; } }

@media (min-width: 728px) {
  .Highlight-item {
    text-align: left;
    padding-left: 16px; }
  body.lang-rtl .Highlight-item {
    text-align: right;
    padding-left: 0;
    padding-right: 16px; }
  .Highlight-value {
    font-size: 14px;
    justify-content: flex-start; }
  .Highlight-text {
    font-size: inherit; } }

.Layout {
  max-width: 1200px;
  margin: 0 auto; }

.Layout:after {
  content: '';
  display: block;
  clear: both; }

.Layout .section {
  float: left;
  width: 46%;
  margin-right: 4%; }

body.lang-rtl .Layout .section {
  float: right;
  margin-left: 4%;
  margin-right: 0; }

.Layout-calendar {
  min-height: calc(100vh - 300px); }

@media (max-width: 728px) {
  .Layout .section {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0; } }

.Loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  overflow: hidden;
  background-color: #c9ceea;
  z-index: 1200; }

.Loading-inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  transition: transform 0.2s linear;
  transform-origin: left;
  background-color: #3f51b5; }

.Loading-inner1 {
  width: auto;
  animation: mui-indeterminate1 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; }

.Loading-inner2 {
  width: auto;
  animation: mui-indeterminate2 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation-delay: 1.15s; }

@keyframes mui-indeterminate1 {
  0% {
    left: -35%;
    right: 100%; }
  60% {
    left: 100%;
    right: -90%; }
  100% {
    left: 100%;
    right: -90%; } }

@keyframes mui-indeterminate2 {
  0% {
    left: -200%;
    right: 100%; }
  60% {
    left: 107%;
    right: -8%; }
  100% {
    left: 107%;
    right: -8%; } }

@media (prefers-color-scheme: dark) {
  .Loading {
    background-color: #1c1c1d; } }

.LineupFormations {
  width: 100%; }

body.lang-rtl .LineupFormations {
  direction: ltr; }

.LineupFormations-pitch {
  width: 100%;
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  overflow: hidden; }

.LineupFormations-pitch-bg {
  min-width: 414px; }

.LineupFormations-team-home,
.LineupFormations-team-away {
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  z-index: 2; }

.LineupFormations-team-away {
  top: auto;
  bottom: 0;
  left: 0;
  flex-direction: column-reverse; }

.LineupFormations-row {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center; }

.LineupFormations-player {
  width: 100%;
  max-width: 50%;
  font-size: 11px;
  text-align: center;
  margin: 0 1px; }

a.LineupFormations-player:active,
.no-touch a.LineupFormations-player:hover {
  text-decoration: underline; }

.LineupFormations-player-text {
  margin-top: 4px; }

.LineupFormations-player-img {
  position: relative; }

.LineupFormations-pitch .LineupFormations-player-img {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: #fff;
  margin: 0 auto; }

.LineupFormations-pitch .LineupFormations-player-img img {
  border-radius: 100%;
  box-shadow: 0 0 0 1px #fff; }

.LineupFormations-digest {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 100%; }

.LineupFormations-digest-goal {
  top: 0;
  left: -12px; }

.LineupFormations-digest-goal-count {
  position: absolute;
  top: -2px;
  left: -18px;
  background-color: #535353;
  color: #fff;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-weight: 600;
  font-size: 10px;
  padding-top: 1px; }

.LineupFormations-digest-card {
  bottom: 0;
  left: -12px; }

.LineupFormations-digest-owngoal {
  top: 0;
  right: -12px; }

.LineupFormations-digest-subs {
  bottom: 0;
  right: -12px; }

.LineupFormations-player-team {
  position: absolute;
  top: 0;
  right: -12px;
  width: 18px;
  height: 18px;
  padding: 1px;
  background-color: #fff;
  border-radius: 100%;
  z-index: 1; }

.LineupFormations-player-img .LineupFormations-player-team img {
  border-radius: 0;
  box-shadow: none; }

.LineupFormations-list-image .LineupFormations-player-team {
  top: -4px;
  width: 16px;
  height: 16px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.05); }

.LineupFormations-list-image {
  width: 24px;
  height: 24px; }

.LineupFormations-list-image .LineupFormations-digest {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.05); }

.LineupFormations-list-image .LineupFormations-digest-goal,
.LineupFormations-list-image .LineupFormations-digest-owngoal {
  top: -4px; }

.LineupFormations-list-image .LineupFormations-digest-goal-count {
  top: -8px; }

.LineupFormations-list-image .LineupFormations-digest-card,
.LineupFormations-list-image .LineupFormations-digest-subs {
  bottom: -4px; }

.LineupFormations-label-home,
.LineupFormations-label-away {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 4px;
  max-width: 40%;
  font-size: 11px;
  background: #fff;
  opacity: .9;
  z-index: 1; }

.LineupFormations-label-away {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  padding-right: 6px; }

.LineupFormations-label-home:after,
.LineupFormations-label-away:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform-origin: bottom left;
  transform: skew(-30deg, 0deg);
  z-index: -1; }

.LineupFormations-label-away:after {
  transform-origin: top left; }

.LineupFormations-label-logo {
  width: 18px;
  min-width: 18px;
  margin-right: 6px; }

.LineupFormations-team-name {
  max-width: calc(100vw * 0.4 - 28px);
  height: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; }

.LineupFormations-team-formation {
  font-size: 10px;
  opacity: .8; }

@media (min-width: 728px) {
  .LineupFormations-pitch .LineupFormations-player-img {
    width: 50px;
    height: 50px; }
  .LineupFormations-digest {
    width: 24px;
    height: 24px; }
  .LineupFormations-player-team {
    width: 24px;
    height: 24px;
    padding: 2px; }
  .LineupFormations-player {
    font-size: 12px; }
  .LineupFormations-player-text {
    margin-top: 6px; }
  .LineupFormations-label-logo {
    width: 26px;
    padding: 2px; } }

@media (prefers-color-scheme: dark) {
  .LineupFormations-label-home,
  .LineupFormations-label-away,
  .LineupFormations-label-home:after,
  .LineupFormations-label-away:after {
    background: #000;
    color: #fff; } }

.MatchDetailsItem {
  position: relative;
  display: block;
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 12px;
  text-align: center; }

.MatchDetailsItem-no-icon {
  padding-top: 18px; }

a.MatchDetailsItem:active .MatchDetailsItem-values,
.no-touch a.MatchDetailsItem:hover .MatchDetailsItem-values {
  text-decoration: underline; }

.MatchDetailsItem:nth-child(odd) {
  background-color: #fcfcfc; }

.MatchDetailsItem-icon img {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 12px 0; }

.MatchDetailsItem-values {
  display: flex; }

.MatchDetailsItem-value {
  width: 100%; }

.MatchDetailsItem-value-home {
  width: 100%;
  text-align: right;
  padding-right: 24px; }

.MatchDetailsItem-value-away {
  width: 100%;
  text-align: left;
  padding-left: 24px; }

body.lang-rtl .MatchDetailsItem-values {
  direction: ltr; }

body.lang-rtl .MatchDetailsItem-value-home,
body.lang-rtl .MatchDetailsItem-value-away {
  direction: rtl; }

.MatchDetailsItem-values span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  margin: 0 2px;
  padding-top: 1px;
  padding-left: 1px;
  font-size: 12px;
  color: #fff;
  border-radius: 100%; }

.MatchDetailsItem-values span.MatchDetailsItem-value-W {
  background-color: #37d431; }

.MatchDetailsItem-values span.MatchDetailsItem-value-D {
  background-color: #505050; }

.MatchDetailsItem-values span.MatchDetailsItem-value-L {
  background-color: #ff5100; }

.MatchDetailsItem-text {
  margin-top: -6px;
  margin-bottom: 6px;
  font-size: 12px;
  color: #505050; }

.MatchDetailsItem-arrow {
  position: absolute;
  top: 50%;
  margin-top: -24px;
  right: 0; }

@media (prefers-color-scheme: dark) {
  .MatchDetailsItem:nth-child(odd) {
    background-color: #111; }
  .MatchDetailsItem-text {
    color: #ddd; }
  .MatchDetailsItem-icon path,
  .MatchDetailsItem-arrow path {
    fill: #ddd; }
  .MatchDetailsItem-icon img {
    background-color: #fff;
    border-radius: 4px; } }

.MatchInfo {
  position: relative;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 48px 0 16px; }

body.lang-rtl .MatchInfo {
  direction: ltr; }

.MatchInfo-sticky {
  padding-top: calc(48px + 88px); }

.MatchInfo-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url("/static/img/match-stadium.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3; }

.MatchInfo-inner {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2; }

.MatchInfo-sticky .MatchInfo-inner {
  position: fixed;
  top: 48px;
  left: 0;
  width: 100%;
  height: 62px;
  background-color: #fff;
  color: #000;
  overflow: hidden;
  z-index: 99; }

.MatchInfo-home,
.MatchInfo-away {
  width: calc(50%);
  padding: 0 5px;
  color: #fff; }

a.MatchInfo-home:active,
.no-touch a.MatchInfo-home:hover,
a.MatchInfo-away:active,
.no-touch a.MatchInfo-away:hover {
  opacity: 0.9; }

.MatchInfo-eliminated-home .MatchInfo-home,
.MatchInfo-eliminated-away .MatchInfo-away {
  text-decoration: line-through; }

.MatchInfo-badge {
  display: flex;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  padding: 10px;
  background: #fff;
  border-radius: 100%; }

.MatchInfo-badge img {
  min-width: 40px; }

.MatchInfo-state {
  width: 64px !important;
  height: 64px !important;
  display: flex;
  flex-direction: column;
  align-items: center; }

.MatchInfo-state-text {
  margin: 12px 0 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
  width: 64px; }

.MatchInfo-state-text2 {
  width: 100%;
  font-size: 12px;
  text-transform: capitalize;
  font-weight: 900;
  letter-spacing: 1px; }

.MatchInfo-summary {
  position: relative;
  font-size: 12px;
  margin-top: 12px;
  z-index: 2; }

.MatchInfo-summary-link {
  display: flex;
  align-items: center;
  min-height: 16px;
  margin: 2px 0;
  color: #fff; }

.MatchInfo-summary a:active .MatchInfo-summary-name,
.no-touch .MatchInfo-summary a:hover .MatchInfo-summary-name {
  text-decoration: underline; }

.MatchInfo-summary-reverse .MatchInfo-summary-link {
  flex-direction: row-reverse; }

.MatchInfo-summary-text {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  width: calc(50% - 24px);
  text-align: right; }

.MatchInfo-summary-reverse .MatchInfo-summary-text {
  flex-direction: row;
  text-align: left; }

.MatchInfo-summary-minute {
  margin: 0 8px;
  opacity: .8; }

.MatchInfo-summary-details {
  width: 48px; }

.MatchInfo-summary-details svg {
  width: 16px;
  height: 16px; }

.MatchInfo-aggregate {
  position: relative;
  padding-top: 12px;
  font-size: 12px;
  z-index: 2; }

.MatchInfo-aggregate-text {
  margin-bottom: 2px; }

/* Overrides */
.MatchInfo-before .MatchInfo-state .MatchInfo-after {
  border: 0; }

.MatchInfo-live .MatchInfo-state-text {
  padding-top: 0;
  font-size: 28px;
  letter-spacing: 2px; }

.MatchInfo-live .MatchInfo-state-text2 {
  top: auto;
  bottom: 0;
  margin-left: 5px;
  color: #37d431; }

.MatchInfo-after .MatchInfo-state-text {
  font-size: 28px;
  letter-spacing: 2px; }

.MatchInfo-iframe {
  top: 0;
  z-index: 900; }

@media (prefers-color-scheme: dark) {
  .MatchInfo-sticky .MatchInfo-inner {
    background-color: #000;
    color: #fff; } }

@media (min-width: 728px) {
  .MatchInfo-sticky {
    padding-top: 48px; }
  .MatchInfo-sticky .MatchInfo-inner {
    position: relative;
    top: inherit;
    left: inherit;
    height: inherit;
    background: transparent;
    color: inherit;
    z-index: 2; } }

.MatchlistHeader {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 48px;
  padding-left: 28px;
  margin-top: 16px; }

body.lang-rtl .MatchlistHeader {
  padding-left: 0;
  padding-right: 28px; }

a.MatchlistHeader {
  background-color: #fbfbfb; }

a.MatchlistHeader:active,
.no-touch a.MatchlistHeader:hover {
  background-color: #f8f8f8; }

.MatchlistHeader-left {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  margin-left: -20px;
  margin-right: 8px; }

body.lang-rtl .MatchlistHeader-left {
  margin-left: 8px;
  margin-right: -20px; }

.MatchlistHeader-left img {
  max-width: 24px; }

.MatchlistHeader-text {
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.4px; }

.MatchlistHeader-meta {
  width: 40%;
  font-size: 11px;
  line-height: 16px;
  color: #505050;
  margin-left: auto;
  margin-right: 8px;
  text-align: right;
  text-transform: capitalize;
  overflow: hidden; }

body.lang-rtl .MatchlistHeader-meta {
  margin-left: 8px;
  margin-right: auto;
  text-align: left; }

.MatchlistHeader-right {
  margin-left: auto;
  width: 48px;
  min-width: 48px;
  height: 48px; }

@media (min-width: 728px) {
  .MatchlistHeader-text {
    font-size: 16px; } }

@media (prefers-color-scheme: dark) {
  a.MatchlistHeader {
    background-color: #111; }
  a.MatchlistHeader:active,
  .no-touch a.MatchlistHeader:hover {
    background-color: #141414; }
  .MatchlistHeader-meta {
    color: #97979d; }
  .MatchlistHeader-left path,
  .MatchlistHeader-right path {
    fill: #fff; } }

.MatchlistItem {
  display: block;
  width: 100%;
  overflow: hidden;
  min-height: 48px; }

.MatchlistItem-link {
  display: block;
  width: 100%;
  overflow: hidden; }

.MatchlistItem:active,
.no-touch .MatchlistItem:hover {
  background-color: #fbfbfb; }

.MatchlistItem-details {
  display: flex;
  max-width: 700px;
  margin: 0 auto;
  min-height: 48px; }

.MatchlistItem-status {
  display: flex;
  width: 60px;
  min-width: 60px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; }

.MatchlistItem-stop-icon {
  width: 60px;
  min-width: 60px; }

.MatchlistItem-date {
  font-size: 10px;
  margin-bottom: 2px; }

.MatchlistItem-score {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  min-width: 30px;
  color: #000;
  background-color: #efefef; }

.MatchlistItem-score span {
  display: flex;
  align-items: center;
  height: 18px;
  margin-top: 2px; }

.MatchlistItem-teams {
  display: inline-flex;
  flex-direction: column;
  justify-content: center; }

.MatchlistItem-eliminated-home .MatchlistItem-teams span:nth-child(1),
.MatchlistItem-eliminated-away .MatchlistItem-teams span:nth-child(2) {
  text-decoration: line-through; }

.MatchlistItem-teams span {
  display: flex;
  height: 16px;
  line-height: 16px;
  margin: 2px 0;
  word-break: break-all;
  overflow: hidden; }

.MatchlistItem-teams .lazyload-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin: 0 8px; }

.MatchlistItem-teams img {
  max-width: 16px;
  max-height: 16px; }

.MatchlistItem-teams-name {
  margin-top: 1px; }

.MatchlistItem-icon {
  margin-left: auto;
  min-width: 48px; }

.MatchlistItem-video-icon {
  margin-left: auto;
  min-width: 48px; }

.MatchlistItem-channels {
  margin-left: auto;
  display: flex; }

body.lang-rtl .MatchlistItem-icon,
body.lang-rtl .MatchlistItem-video-icon,
body.lang-rtl .MatchlistItem-channels {
  margin-left: 0;
  margin-right: auto; }

.MatchlistItem-channel {
  width: 40px;
  height: 40px;
  margin: 4px;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden; }

.MatchlistItem-video-icon + .MatchlistItem-channels,
.MatchlistItem-video-icon + .MatchlistItem-icon {
  margin-left: 0; }

body.lang-rtl .MatchlistItem-video-icon + .MatchlistItem-channels,
body.lang-rtl .MatchlistItem-video-icon + .MatchlistItem-icon {
  margin-left: 0;
  margin-right: 0; }

.MatchlistItem-video-icon circle {
  stroke: transparent; }

.MatchlistItem-video-icon path {
  fill: #505050; }

.MatchlistItem-live .MatchlistItem-status {
  color: #fff;
  background-color: #37d431; }

.MatchlistItem-live .MatchlistItem-date {
  display: none; }

.MatchlistItem-live .MatchlistItem-score {
  color: #fff;
  background-color: #29ae24; }

.MatchlistItem-before .MatchlistItem-score {
  display: none; }

@media (min-width: 728px) {
  .MatchlistItem-video-icon {
    margin-right: 0; } }

@media (prefers-color-scheme: dark) {
  .MatchlistItem:active,
  .no-touch .MatchlistItem:hover {
    background-color: #222; }
  .MatchlistItem-icon path,
  .MatchlistItem-stop-icon path,
  .MatchlistItem-video-icon path {
    fill: #97979d; }
  .MatchlistItem-stop-icon circle {
    stroke: #97979d; }
  .MatchlistItem-score {
    background-color: #111;
    color: #fff; }
  .MatchlistItem-channel {
    background-color: #aaa; } }

body.lang-rtl .MatchStatsItem {
  direction: ltr; }

.MatchStatsItem-title {
  margin: 16px 0 5px;
  text-align: center; }

.MatchStatsItem-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fafafa; }

.MatchStatsItem-color {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; }

.MatchStatsItem-color-item {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.2s ease-out; }
  .MatchStatsItem-color-item:last-child {
    border-left: 1px solid #fff;
    left: auto;
    right: 0; }

.MatchStatsItem-value {
  position: relative;
  padding: 10px 15px;
  font-weight: 600;
  z-index: 2; }

@media (prefers-color-scheme: dark) {
  .MatchStatsItem-row {
    background-color: #000; } }

.NewsItem {
  padding: 28px;
  border-top: 2px dashed #eee; }

.NewsItem:first-child {
  border-top: 0; }

.NewsItem-title {
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1.2em; }

.NewsItem-subtitle {
  font-size: 18px;
  line-height: 1.4em; }

.NewsItem-body {
  font-size: 16px;
  line-height: 1.4em;
  margin: 14px 0 14px; }

.NewsItem-source {
  font-size: 12px;
  margin: 14px 0 4px;
  opacity: .5; }

.NewsItem-meta {
  display: flex;
  margin-top: 14px;
  font-size: 12px;
  opacity: .5; }

.NewsItem-tags {
  text-transform: capitalize; }

.NewsItem-date {
  display: block;
  margin-left: auto; }

.NewsItem-digest-title {
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 600; }

.NewsItem-disclaimer {
  font-size: 12px;
  opacity: .5; }

.NewsItem-entity {
  margin-left: -28px;
  margin-right: -28px; }

.NewsItem-entity-match {
  margin-left: -16px; }

.NewsItem-placeholder {
  position: relative;
  height: 48px; }

.NewsItem-placeholder-inner,
.NewsItem-placeholder-inner::before,
.NewsItem-placeholder-inner::after {
  position: absolute;
  animation-name: placeHolderShimmer;
  animation-duration: 1.25s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  background-image: linear-gradient(to right, #eeeeee 10%, #dddddd 18%, #eeeeee 33%);
  background-size: 800px 104px;
  border-radius: 4px; }

.NewsItem-placeholder-inner {
  width: 32px;
  height: 32px;
  top: 8px;
  left: 0;
  border-radius: 100%; }

.NewsItem-placeholder-inner::before {
  content: '';
  width: 200px;
  height: 8px;
  top: 3px;
  left: 44px; }

.NewsItem-placeholder-inner::after {
  content: '';
  width: 160px;
  height: 8px;
  top: 21px;
  left: 44px; }

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0; }
  100% {
    background-position: 468px 0; } }

@media (prefers-color-scheme: dark) {
  .NewsItem {
    border-color: #222; }
  .NewsItem-placeholder-inner,
  .NewsItem-placeholder-inner::before,
  .NewsItem-placeholder-inner::after {
    background-image: linear-gradient(to right, #222 10%, #333 18%, #222 33%); } }

.PageTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  background-color: #fafafa;
  color: #84848A;
  padding: 0 12px; }

.PageTitle-text {
  font-size: 11px;
  font-weight: 200;
  margin: 0; }

@media (max-width: 728px) {
  .PageTitle {
    justify-content: flex-start; } }

@media (prefers-color-scheme: dark) {
  .PageTitle {
    background-color: #111;
    color: #97979d; } }

.CouponFooter {
  position: fixed;
  width: 100%;
  bottom: 48px;
  left: 0;
  background-color: #001932;
  color: #fff;
  overflow: hidden; }

.CouponFooter-inner {
  display: flex;
  padding: 16px; }

.CouponFooter-summary {
  display: flex;
  width: 60%;
  justify-content: center;
  align-items: center; }

.CouponFooter-summary > div {
  width: 33.3333%; }

.CouponFooter-amount {
  font-weight: 800; }

.CouponFooter-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 36px;
  background-color: #004257;
  text-align: center;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease-out; }

.CouponFooter-valid .CouponFooter-submit {
  background-color: #00befa; }

.CouponFooter-info {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  font-size: 11px;
  color: #fafafa; }

.CouponFooter-info > div:last-child {
  margin-left: auto; }

@media (min-width: 728px) {
  .CouponFooter {
    position: relative; }
  .CouponFooter-info {
    font-size: 12px; }
  .CouponFooter-sticky {
    position: fixed;
    top: 0;
    left: 50%;
    bottom: auto;
    width: inherit;
    max-width: 552px; }
  .CouponFooter-sticky + .CouponFooter-sticky-space {
    height: 104px; } }

.CouponMatch {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 100;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  opacity: 0; }

.CouponMatch-loaded {
  left: 0;
  opacity: 1; }

.CouponMatch-back {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #f29400;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  cursor: pointer; }

.CouponMatch-iframe {
  border: 0;
  width: 100%;
  height: calc(100vh - 60px);
  margin-top: 60px; }

@media (min-width: 728px) {
  .CouponMatch {
    -webkit-transition: left 0.2s ease-out, opacity 0.2s ease-out;
    transition: left 0.2s ease-out, opacity 0.2s ease-out; } }

.CouponResult {
  display: flex;
  color: #fff; }

.CouponResult-correct {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px 0; }

.CouponResult-correct-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.1);
  font-size: 60px;
  font-weight: 800;
  border-radius: 100%;
  text-align: center; }

.CouponResult-correct-inner span {
  display: block;
  width: 100%; }

.CouponResult-correct-inner span:last-child {
  font-size: 14px;
  margin-top: -8px; }

.CouponResult-distribution {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05); }

.CouponResult-distribution li {
  display: flex;
  width: 100%;
  padding: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

.CouponResult-distribution li > div:last-child {
  margin-left: auto; }

.CouponResult-distribution-info {
  font-size: 10px; }

@media (min-width: 728px) {
  .CouponResult-distribution-info {
    font-size: 12px; } }

.CouponRow {
  display: block;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #fafafa; }

.CouponRow-link {
  display: block;
  width: 100%;
  overflow: hidden; }

.CouponRow:active,
.no-touch .CouponRow:hover {
  background-color: #fbfbfb; }

.CouponRow-details {
  display: flex;
  max-width: 700px;
  margin: 0 auto;
  min-height: 48px; }

.CouponRow-index {
  font-size: 10px;
  margin-top: 2px;
  opacity: .85; }

.CouponRow-status {
  display: flex;
  width: 60px;
  min-width: 60px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; }

.CouponRow-stop-icon {
  width: 60px;
  min-width: 60px; }

.CouponRow-date {
  font-size: 10px;
  margin-bottom: 2px; }

.CouponRow-score {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  min-width: 30px;
  color: #000;
  background-color: #efefef; }

.CouponRow-teams {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 14px; }

.CouponRow-selections {
  margin-left: auto;
  min-width: 108px;
  display: flex;
  text-align: center; }

.CouponRow-selection {
  width: 36px; }

.CouponRow-selection-btn {
  width: 30px;
  height: 30px;
  background-color: #fdfdff;
  border: 1px solid #afafb3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  margin-left: 3px;
  font-weight: 600; }

.CouponRow-selection-prediction {
  margin: 4px 0;
  font-size: 12px; }

.CouponRow-selection-selected .CouponRow-selection-btn {
  color: #fff; }

.CouponRow-selection-correct .CouponRow-selection-btn {
  box-shadow: 0 0 0 2px #ff5100; }

.CouponRow-selection-selected.CouponRow-selection-correct .CouponRow-selection-btn {
  box-shadow: 0 0 0 2px #37d431; }

.CouponRow-statistics {
  margin-bottom: 10px; }

.CouponRow-statistics-item {
  display: flex;
  align-items: center;
  min-height: 18px;
  font-size: 12px; }

.CouponRow-statistics-label {
  margin-left: 74px; }

.CouponRow-statistics-list {
  display: flex;
  margin-left: auto; }

.CouponRow-statistics-list li {
  width: 36px;
  text-align: center; }

.CouponRow-live .CouponRow-status {
  color: #fff;
  background-color: #37d431; }

.CouponRow-live .CouponRow-date {
  display: none; }

.CouponRow-live .CouponRow-score {
  color: #fff;
  background-color: #29ae24; }

.CouponRow-before .CouponRow-score {
  display: none; }

@media (prefers-color-scheme: dark) {
  .CouponRow:active,
  .no-touch .CouponRow:hover {
    background-color: #222; }
  .CouponRow-selection-btn {
    color: #000; } }

.PlayerPropertyListItem {
  padding: 8px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px; }

.PlayerPropertyListItem:nth-child(odd) {
  background-color: #fafafa; }

.PlayerPropertyListItem-icon-value {
  display: flex;
  align-items: center;
  margin-left: auto; }

body.lang-rtl .PlayerPropertyListItem-icon-value {
  margin-left: inherit;
  margin-right: auto; }

.PlayerPropertyListItem-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px; }

body.lang-rtl .PlayerPropertyListItem-icon {
  margin-left: 8px;
  margin-right: 0; }

.PlayerPropertyListItem-next {
  margin-right: -24px; }

@media (prefers-color-scheme: dark) {
  .PlayerPropertyListItem:nth-child(odd) {
    background-color: #111; }
  .PlayerPropertyListItem-next path {
    fill: #eee; } }

.PlayoffRounds {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  padding: 0 14px 28px; }

.PlayoffRounds-round {
  width: 100%;
  max-width: 288px;
  padding: 0 14px; }

.PlayoffRounds .MatchlistHeader {
  padding-left: 0;
  text-align: center; }

.PlayoffRounds-matches {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: calc(100% - 48px); }

.PlayoffRounds-group {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  margin-bottom: 16px; }

.PlayoffRounds-double-legged .PlayoffRounds-group {
  justify-content: center; }

.PlayoffRounds-group::after {
  content: '';
  position: absolute;
  right: -14px;
  width: 12px;
  height: 50%;
  border: 2px solid #efefef;
  border-left: 0; }

.PlayoffRounds-round:last-child .PlayoffRounds-group::after {
  content: none; }

.lang-rtl .PlayoffRounds-group::after {
  left: -14px;
  right: auto;
  transform: rotate(180deg); }

.PlayoffRounds-double-legged .PlayoffRounds-group .PlayoffRounds-group::after {
  content: none; }

.PlayoffRounds-double-legged .PlayoffRounds-group::after {
  margin-top: -17px;
  height: calc(50% - 2px); }

.PlayoffRounds-group .MatchlistItem {
  position: relative;
  box-shadow: 0 0 0 2px #efefef;
  margin-bottom: 8px;
  min-width: 260px;
  overflow: visible; }

.PlayoffRounds-double-legged .MatchlistItem {
  margin-bottom: 2px; }

.PlayoffRounds-group .MatchlistItem::before {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  left: -14px;
  width: 14px;
  height: 2px;
  background-color: #efefef; }

.PlayoffRounds-round:first-child .PlayoffRounds-group .MatchlistItem::before {
  content: none; }

.PlayoffRounds-double-legged .PlayoffRounds-group .MatchlistItem:first-child::before {
  top: 100%; }

.PlayoffRounds-double-legged .PlayoffRounds-group .MatchlistItem:last-child::before {
  content: none; }

.lang-rtl .PlayoffRounds-group .MatchlistItem::before {
  right: -14px;
  left: auto;
  transform: rotate(180deg); }

.Predict {
  margin-bottom: 28px;
  text-align: center;
  font-size: 14px; }

body.lang-rtl .Predict {
  direction: ltr; }

.Predict-options,
.Predict-values {
  display: flex;
  max-width: 460px;
  margin: 0 auto; }

.Predict-button {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 8px 4px;
  background: transparent;
  color: #222;
  border: 0;
  font-size: 14px; }

.Predict-button:focus {
  outline: 0; }

.Predict-vote .Predict-button {
  cursor: pointer; }

.Predict-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 12px;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0 0 0 2px #efefef;
  transition: all 0.2s ease-out; }

.Predict-vote .Predict-button:active .Predict-button-icon,
.no-touch .Predict-vote .Predict-button:hover .Predict-button-icon {
  background-color: #fbfbfb;
  transform: scale(1.1); }

.Predict-results .Predict-button-icon {
  background-color: #fbfbfb;
  box-shadow: none; }

.Predict-value {
  width: 100%;
  font-weight: 600;
  margin: 0; }

.Predict-button p,
.Predict-total {
  margin: 12px 0 0; }

@media (prefers-color-scheme: dark) {
  .Predict-button {
    color: #fff; }
  .Predict-button-icon {
    color: #222; }
  .Predict-vote .Predict-button:active .Predict-button-icon,
  .no-touch .Predict-vote .Predict-button:hover .Predict-button-icon {
    opacity: .9; } }

.SeasonProgress {
  display: flex;
  align-items: center;
  margin: 0 12px 18px; }

.SeasonProgress-start,
.SeasonProgress-end {
  display: flex;
  flex-direction: column;
  width: 60px;
  height: 100%;
  text-align: center; }

.SeasonProgress-date {
  font-weight: 600;
  letter-spacing: 1px; }

.SeasonProgress-month {
  font-size: 10px; }

.SeasonProgress-progress {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #fafafa;
  height: 4px;
  border-radius: 6px;
  position: relative; }

.SeasonProgress-progress-value {
  background-color: #e2eece;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 6px; }

body.lang-rtl .SeasonProgress-progress-value {
  left: auto;
  right: 0; }

@media (prefers-color-scheme: dark) {
  .SeasonProgress-progress {
    background-color: #222; } }

.EventState {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px; }

.SubText {
  margin: 12px 0 0 28px;
  line-height: 20px; }

body.lang-rtl .SubText {
  margin-left: 0;
  margin-right: 28px; }

.SubText-center {
  margin-left: 0;
  text-align: center; }

body.lang-rtl .SubText-center {
  margin-right: 0; }

/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 [object Object]
 *
 * Released under the MIT License
 *
 * Released on: August 9, 2019
 */
.swiper-container {
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0); }

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

.swiper-container {
  margin: 0; }

.swiper-slide {
  padding: 0; }

.Swiper-match .Swiper-inner {
  max-width: 700px;
  margin: 0 auto; }

.Swiper-match .Swiper-inner-full {
  max-width: 100%; }

.TabBar {
  position: relative;
  width: 100%;
  height: 48px;
  max-width: 1200px;
  margin: 0 auto; }

.TabBar-item a:active,
.no-touch .TabBar-item a:hover {
  color: #000; }

.TabBar-item a:active .TabBar-item-icon circle,
.no-touch .TabBar-item a:hover .TabBar-item-icon circle {
  stroke: #000; }

.TabBar-item a:active .TabBar-item-icon path,
.no-touch .TabBar-item a:hover .TabBar-item-icon path {
  fill: #000; }

.TabBar:before {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 4px;
  height: 2px;
  background: #eee;
  z-index: -1; }

.TabBar-sticky {
  position: sticky;
  top: 48px;
  left: 0;
  background-color: #fff;
  z-index: 98; }

.TabBar-match.TabBar-sticky {
  top: calc(48px + 60px); }

.TabBar-more-indicator:before,
.TabBar-more-indicator:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 40px;
  pointer-events: none; }

.TabBar-more-indicator:before {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%); }

.TabBar-more-indicator:after {
  left: auto;
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%); }

.TabBar ul {
  display: inline-flex;
  width: 100%;
  height: 100%;
  overflow-x: scroll;
  padding: 0 12px; }

.TabBar-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  height: 100%;
  font-size: 12px;
  color: #767676;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  transition: color .2s ease-out; }

.TabBar-item:last-child a {
  margin-right: 12px; }

.TabBar-item-active a {
  position: relative;
  color: #000; }

.TabBar-item-active a:before {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 4px;
  height: 2px;
  background-color: #000; }

.TabBar-item-icon {
  margin-left: -12px; }

.TabBar-item-icon circle {
  stroke: #767676; }

.TabBar-item-active .TabBar-item-icon circle {
  stroke: #000; }

.TabBar-item-icon path {
  fill: #767676; }

.TabBar-item-active .TabBar-item-icon path {
  fill: #000; }

.TabBar-item-value {
  margin-top: -1px;
  margin-left: 6px;
  padding: 4px 6px 3px;
  font-size: 12px;
  background-color: #efefef;
  border-radius: 8px; }

.TabBar-item-live .TabBar-item-value {
  background-color: #29ae24;
  color: #fff; }

.TabBar-match.TabBar:before,
.TabBar-match .TabBar-item-active a:before {
  bottom: 0; }

.TabBar-match .TabBar-item-icon {
  margin-left: inherit; }

.TabBar-match .TabBar-item-text {
  display: none; }

.TabBar-match ul {
  justify-content: space-between;
  padding: 0 24px; }

.TabBar-match .TabBar-item a {
  padding: 0;
  margin: 0; }

@media (min-width: 728px) {
  .TabBar-sticky,
  .TabBar-match.TabBar-sticky {
    position: relative;
    top: inherit;
    left: inherit; }
  .TabBar-match ul {
    justify-content: center; }
  .TabBar-item a {
    font-size: 14px; }
  .TabBar-match .TabBar-item a {
    padding: 0 16px;
    min-width: 140px; }
  .TabBar-match .TabBar-item-icon {
    display: none; }
  .TabBar-match .TabBar-item-text {
    display: block; } }

@media (prefers-color-scheme: dark) {
  .TabBar-item a:active,
  .no-touch .TabBar-item a:hover {
    color: #fff; }
  .TabBar-item a:active .TabBar-item-icon circle,
  .no-touch .TabBar-item a:hover .TabBar-item-icon circle {
    stroke: #fff; }
  .TabBar-item a:active .TabBar-item-icon path,
  .no-touch .TabBar-item a:hover .TabBar-item-icon path {
    fill: #fff; }
  .TabBar:before {
    background: #222; }
  .TabBar-sticky {
    background-color: #000; }
  .TabBar-more-indicator:before {
    background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0) 100%); }
  .TabBar-more-indicator:after {
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, black 100%); }
  .TabBar-item a {
    color: #97979d; }
  .TabBar-item-active a {
    color: #fff; }
  .TabBar-item-active a:before {
    background-color: #fff; }
  .TabBar-item-active .TabBar-item-icon circle {
    stroke: #fff; }
  .TabBar-item-active .TabBar-item-icon path {
    fill: #fff; }
  .TabBar-item-value {
    background-color: #222; } }

.TableItem {
  display: flex;
  align-items: center;
  height: 48px;
  padding-left: 32px; }

.TableItem-position {
  display: flex;
  min-width: 32px;
  margin-left: -8px;
  align-items: center;
  justify-content: center; }

.TableItem-text {
  padding-left: 8px;
  width: 100%;
  font-size: 14px;
  text-align: left; }

.TableItem-data {
  width: 100%;
  display: flex;
  margin-right: 8px; }

.TableItem-data-item {
  margin-left: auto;
  width: 32px;
  height: 10px; }

.TableItem-left {
  display: flex;
  width: 100%;
  align-items: center; }

.TableItem-separator {
  border-top: 1px solid #efefef; }

.TableItem-playing .TableItem-position {
  border-radius: 50%;
  background-color: #37d431;
  min-height: 32px; }

.TableRow {
  position: relative;
  display: flex;
  align-items: center;
  height: 48px;
  padding-left: 28px;
  min-width: 0; }

body.lang-rtl .TableRow {
  padding-left: 0;
  padding-right: 28px; }

a.TableRow:active,
.no-touch a.TableRow:hover {
  background-color: #f4f4f4;
  cursor: pointer; }

.TableRow-title {
  margin-top: 28px; }

.TableRow:nth-child(even) {
  background-color: #fafafa; }

.TableRow-position {
  display: flex;
  min-width: 32px;
  margin-left: -8px;
  align-items: center;
  justify-content: center;
  font-weight: bold; }

body.lang-rtl .TableRow-position {
  margin-left: 0;
  margin-right: -8px; }

.TableRow-icon {
  display: flex;
  align-items: center;
  width: 24px;
  height: 24px;
  min-width: 24px; }

.TableRow-text {
  width: 100%;
  padding-left: 8px;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

body.lang-rtl .TableRow-text {
  padding-left: 0;
  padding-right: 8px; }

.TableRow-title .TableRow-text {
  font-weight: 800;
  padding-left: 0;
  white-space: normal; }

body.lang-rtl .TableRow-title .TableRow-text {
  padding-right: 0; }

.TableRow-data {
  width: 144px;
  display: flex;
  text-align: center;
  justify-content: flex-end; }

.TableRow-data-item {
  width: 48px; }

body.lang-rtl .TableRow-data-item {
  direction: ltr; }

/* Special cases */
.TableRow-highlight .TableRow-text {
  font-weight: 800; }

.TableRow-separator {
  border-top: 2px solid #efefef; }

.TableRow-summary {
  display: none; }

.TableRow-summary.TableRow-highlight {
  display: flex;
  background-color: inherit;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef; }

.TableRow-summary.TableRow-highlight .TableRow-text {
  font-weight: inherit; }

.TableRow-promotion-1:before,
.TableRow-promotion-2:before,
.TableRow-promotion-3:before,
.TableRow-relegation-1:before,
.TableRow-relegation-2:before,
.TableRow-relegation-3:before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: 4px;
  height: 36px;
  border-radius: 2px; }

body.lang-rtl .TableRow-promotion-1:before,
body.lang-rtl .TableRow-promotion-2:before,
body.lang-rtl .TableRow-promotion-3:before,
body.lang-rtl .TableRow-relegation-1:before,
body.lang-rtl .TableRow-relegation-2:before,
body.lang-rtl .TableRow-relegation-3:before {
  left: auto;
  right: 6px; }

.TableRow-promotion-1:before {
  background-color: #37d431; }

.TableRow-promotion-2:before {
  background-color: #1f841b; }

.TableRow-promotion-3:before {
  background-color: #155913; }

.TableRow-relegation-1:before {
  background-color: #ff5100; }

.TableRow-relegation-2:before {
  background-color: #993100; }

.TableRow-relegation-3:before {
  background-color: #662000; }

@media (prefers-color-scheme: dark) {
  a.TableRow:active,
  .no-touch a.TableRow:hover {
    background-color: #222; }
  .TableRow:nth-child(even) {
    background-color: #111; }
  .TableRow-separator {
    border-top: 2px solid #444; } }

.TableRowIndicator {
  position: relative;
  display: block;
  padding-left: 28px; }

body.lang-rtl .TableRowIndicator {
  padding-left: 0;
  padding-right: 28px; }

.TableRowIndicator:first-child {
  margin-top: 12px; }

.TableRowIndicator-promotion-1:before,
.TableRowIndicator-promotion-2:before,
.TableRowIndicator-promotion-3:before,
.TableRowIndicator-relegation-1:before,
.TableRowIndicator-relegation-2:before,
.TableRowIndicator-relegation-3:before {
  content: '';
  position: absolute;
  top: 0;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 100%; }

body.lang-rtl .TableRowIndicator-promotion-1:before,
body.lang-rtl .TableRowIndicator-promotion-2:before,
body.lang-rtl .TableRowIndicator-promotion-3:before,
body.lang-rtl .TableRowIndicator-relegation-1:before,
body.lang-rtl .TableRowIndicator-relegation-2:before,
body.lang-rtl .TableRowIndicator-relegation-3:before {
  left: auto;
  right: 4px; }

.TableRowIndicator-promotion-1:before {
  background-color: #37d431; }

.TableRowIndicator-promotion-2:before {
  background-color: #1f841b; }

.TableRowIndicator-promotion-3:before {
  background-color: #155913; }

.TableRowIndicator-relegation-1:before {
  background-color: #ff5100; }

.TableRowIndicator-relegation-2:before {
  background-color: #993100; }

.TableRowIndicator-relegation-3:before {
  background-color: #662000; }

.TabMenuMobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  min-width: 258px;
  height: 48px;
  min-height: calc(48px + env(safe-area-inset-bottom));
  border-top: 1px solid #eee;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  overflow: hidden;
  z-index: 50; }

.TabMenuMobile-sticky-space {
  height: 48px; }

.TabMenuMobile-item a:active svg,
.no-touch .TabMenuMobile-item a:hover svg {
  transform: scale(0.9); }

.TabMenuMobile ul {
  display: flex; }

.TabMenuMobile-item {
  width: 100%; }

.TabMenuMobile-item.TabMenuMobile-item-active {
  box-shadow: inset 0 0 10px 10px rgba(0, 0, 0, 0.03); }

.TabMenuMobile-item a {
  position: relative;
  display: flex;
  justify-content: center;
  height: 48px; }

.TabMenuMobile-item-icon {
  width: 48px;
  height: 48px;
  margin-top: -7px; }

.TabMenuMobile-item-text {
  position: absolute;
  bottom: 4px;
  height: 10px;
  font-size: 10px;
  text-align: center;
  overflow: hidden; }

@media (min-width: 728px) {
  .TabMenuMobile,
  .TabMenuMobile-sticky-space {
    display: none; } }

@media (prefers-color-scheme: dark) {
  .TabMenuMobile {
    border-top-color: #222;
    background-color: rgba(0, 0, 0, 0.9); }
  .TabMenuMobile-item-icon svg path {
    fill: #fff; }
  .TabMenuMobile-item.TabMenuMobile-item-active {
    box-shadow: inset 0 0 10px 10px rgba(255, 255, 255, 0.05); } }

.TextInput {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding-left: 28px; }

body.lang-rtl .TextInput {
  padding-left: 0;
  padding-right: 28px; }

.TextInput-left {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  margin-left: -12px;
  margin-right: 8px; }

.TextInput-left img {
  max-width: 24px; }

.TextInput-text {
  width: 100%; }

.TextInput-text-value {
  width: 100%; }

.TextInput-text-value .TextInput-text {
  font-size: 12px;
  color: #505050; }

.TextInput-input {
  display: block;
  width: 100%;
  min-height: 20px;
  line-height: 20px;
  max-width: 100%;
  border: 0;
  border-bottom: 1px solid #efefef;
  padding: 0 0 2px;
  background-color: #fff;
  -webkit-appearance: none;
  -webkit-touch-callout: auto;
  user-select: auto;
  border-radius: 0; }
  .TextInput-input:focus {
    outline: 0;
    border-color: #37d431; }

.TextInput-right {
  margin-left: auto;
  width: 48px;
  height: 48px; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .TextInput-input {
    font-size: 16px; } }

input::-webkit-outer-spin-button,
::-webkit-inner-spin-button,
::-webkit-clear-button {
  -webkit-appearance: none;
  display: none;
  margin: 0; }

input:-webkit-autofill {
  -webkit-transition-property: background-color !important;
  -webkit-transition-delay: 99999s; }

@media (prefers-color-scheme: dark) {
  .TextInput-text-value .TextInput-text {
    color: #fff; }
  .TextInput-input {
    background-color: #000;
    color: #fff;
    border-bottom-color: #444; } }

.VideoItem {
  position: relative;
  margin-bottom: 16px;
  overflow: hidden; }

.VideoItem-preview {
  position: relative;
  padding-top: 56.25%;
  /* Player ratio: 100 / (1280 / 720) */
  cursor: pointer;
  background-color: #efefef; }

.VideoItem-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  transition: background 0.2s ease-out;
  z-index: 1; }

.VideoItem-preview:active::before,
.no-touch .VideoItem-preview:hover::before {
  background-color: transparent; }

.VideoItem-no-thumbnail .VideoItem-preview {
  padding-top: 0;
  min-height: 60px; }

.VideoItem-no-thumbnail .VideoItem-meta {
  min-height: 60px;
  padding: 16px; }

.VideoItem-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px); }

.VideoItem-title {
  font-weight: 600; }

.VideoItem-text {
  font-size: 12px;
  margin-top: 5px; }

.VideoItem-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.VideoItem-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.VideoItem-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-top: -10px;
  transform: translate(-50%, -50%);
  z-index: 2; }

.VideoItem-embed {
  position: relative;
  padding-top: 56.25%; }

.VideoItem-embed-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; }

/* Video highlights summary for postmatch */
.VideoItem-summary {
  min-height: 65px;
  margin-bottom: 2px; }

.VideoItem-summary .VideoItem-preview {
  display: flex;
  padding-top: 0; }

.VideoItem-summary .VideoItem-preview::before {
  background-color: rgba(0, 0, 0, 0.05); }

.VideoItem-summary .VideoItem-thumb {
  position: relative;
  width: 100px; }

.VideoItem-summary .VideoItem-play-icon {
  width: 50px;
  height: 50px;
  margin-top: 0; }

.VideoItem-summary .VideoItem-meta {
  position: relative; }

@media (min-width: 728px) {
  .VideoItem-meta {
    padding: 16px; }
  .VideoItem-play-icon {
    width: 200px;
    height: 200px; } }

@media (prefers-color-scheme: dark) {
  .VideoItem-meta {
    background-color: rgba(0, 0, 0, 0.5); }
  .VideoItem-preview {
    background-color: #333; }
  .VideoItem-summary .VideoItem-preview::before {
    background-color: rgba(255, 255, 255, 0.05); } }

.WidgetFooter {
  background: #fafafa;
  margin: 28px 0;
  text-align: center; }

.WidgetFooter a {
  display: block;
  padding: 16px; }

.WidgetFooter a:active span,
.WidgetFooter a:hover span {
  border-bottom: 1px solid #000; }

@media (prefers-color-scheme: dark) {
  .WidgetFooter {
    background-color: #1c1c1d; }
  .WidgetFooter a:active span,
  .WidgetFooter a:hover span {
    border-bottom: 1px solid #fff; } }
