@charset "UTF-8";
/* FONT FAMILY */
/* FONT SIZE*/
/* COLOR */
/* MIXIN */
/* Mixin for background image with webp support */
/* MEDIA QUERIES */
/* SF PRO DISPLAY */
@font-face {
  font-family: "SF-Pro-Display-Black";
  src: url("../fonts/sf-pro-display/SF-Pro-Display-Black.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF-Pro-Display-Bold";
  src: url("../fonts/sf-pro-display/SF-Pro-Display-Bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF-Pro-Display-Heavy";
  src: url("../fonts/sf-pro-display/SF-Pro-Display-Heavy.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF-Pro-Display-Light";
  src: url("../fonts/sf-pro-display/SF-Pro-Display-Light.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF-Pro-Display-Medium";
  src: url("../fonts/sf-pro-display/SF-Pro-Display-Medium.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF-Pro-Display-Regular";
  src: url("../fonts/sf-pro-display/SF-Pro-Display-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF-Pro-Display-Semibold";
  src: url("../fonts/sf-pro-display/SF-Pro-Display-Semibold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF-Pro-Display-Thin";
  src: url("../fonts/sf-pro-display/SF-Pro-Display-Thin.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF-Pro-Display-Ultralight";
  src: url("../fonts/sf-pro-display/SF-Pro-Display-Ultralight.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* ----- PREFIXED DROPDOWN CORE ----- */
/* TRIGGER BUTTON */
/* DROPDOWN MENU */
/* open state */
/* each option item */
@keyframes jumpUpDown {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 10px);
  }
}
.match-dropdown {
  position: relative;
  display: inline-block;
  width: 16rem;
  font-family: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.match-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: #ffffff;
  border-radius: 1rem;
  padding: 0.75rem 1.2rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(4px);
}
.match-dropdown-trigger:hover {
  border-color: #cbd5e1;
  background-color: #fefefe;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
.match-dropdown-trigger:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  border-color: #3b82f6;
}

.trigger-text-group {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  pointer-events: none;
}

.match-dropdown-container {
  width: 10rem;
  border: 1px solid #BAC9D3;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.4rem;
  border-radius: 2rem;
}

.sort-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  letter-spacing: -0.01em;
}

.selected-value {
  font-size: 16px;
  font-weight: 400;
  color: #0f172a;
  padding: 0.15rem 0.5rem 0.15rem 0;
  border-radius: 2rem;
  line-height: 1.4;
  transition: background 0.15s;
}

.match-dropdown-arrow {
  font-size: 0.75rem;
  color: #5b6e8c;
  transition: transform 0.25s ease;
  margin-left: auto;
  line-height: 1;
  pointer-events: none;
}

.match-dropdown-menu {
  position: absolute;
  top: calc(100% - 0.5rem);
  left: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.02);
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.match-dropdown.open .match-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.match-dropdown.open .match-dropdown-arrow {
  transform: rotate(180deg);
}

.match-dropdown-option {
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.12s linear;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.match-dropdown-option:hover {
  background-color: #f8fafc;
  color: #0f172a;
}
.match-dropdown-option:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: -2px;
  background-color: #eff6ff;
}
.match-dropdown-option:not(:last-child) {
  border-bottom: 1px solid #f1f5f9;
}

.match-dropdown-option.selected {
  background-color: #eef2ff;
  color: #1e40af;
  font-weight: 600;
  position: relative;
}
.match-dropdown-option.selected::after {
  content: "✓";
  font-size: 0.85rem;
  font-weight: 600;
  color: #2563eb;
  margin-left: auto;
}

html[lang=id-id] .predict-info button.result-btn {
  font-size: 0.65rem;
}

html[lang^="en"] [data-i18n="MiniHowTerms.35"],
html[lang^="en"] [data-i18n="MainHowTerms.45"] {
  display: none;
}

html[lang^="zh"] .footer-seo {
  display: none !important;
}

html[lang="en-sg"] .footer-seo,
html[lang="zh-sg"] .footer-seo {
  display: none !important;
}

@media screen and (max-width: 767.98px) {
  html[lang^="zh"] .footer-link {
    display: none !important;
  }
}

body {
  background-color: #ffffff;
  font-family: "SF-Pro-Display-Light", sans-serif !important;
}

button:focus {
  outline: none;
  box-shadow: none;
}

html[lang=th-th] h1 {
  font-family: "th-regular";
}
html[lang=th-th] h2 {
  font-family: "th-regular";
}
html[lang=th-th] h3 {
  font-family: "th-regular";
}
html[lang=th-th] h4 {
  font-family: "th-regular";
}
html[lang=th-th] h5 {
  font-family: "th-regular";
}
html[lang=th-th] h6 {
  font-family: "th-regular";
}
html[lang=th-th] p {
  font-family: "th-regular";
}
html[lang=th-th] div {
  font-family: "th-regular";
}
html[lang=th-th] span {
  font-family: "th-regular";
}
html[lang=th-th] label {
  font-family: "th-regular";
}
html[lang=th-th] a {
  font-family: "th-regular";
}
html[lang=th-th] button {
  font-family: "th-regular";
}

html[lang=vi-vn] h1 {
  font-family: "nunito";
}
html[lang=vi-vn] h2 {
  font-family: "nunito";
}
html[lang=vi-vn] h3 {
  font-family: "nunito";
}
html[lang=vi-vn] h4 {
  font-family: "nunito";
}
html[lang=vi-vn] h5 {
  font-family: "nunito";
}
html[lang=vi-vn] h6 {
  font-family: "nunito";
}
html[lang=vi-vn] p {
  font-family: "nunito";
}
html[lang=vi-vn] div {
  font-family: "nunito";
}
html[lang=vi-vn] span {
  font-family: "nunito";
}
html[lang=vi-vn] label {
  font-family: "nunito";
}
html[lang=vi-vn] a {
  font-family: "nunito";
}
html[lang=vi-vn] button {
  font-family: "nunito";
}

body.no-scroll {
  overflow-y: hidden;
}

.primary-btn {
  height: 2rem;
  border-radius: 0.6rem;
  font-size: 1rem;
  width: 100%;
  color: #ffffff;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: auto;
  padding: 0.4rem 0.7rem;
  background: linear-gradient(277.14deg, #004FE3 14.9%, #0084FF 94.48%);
  transition: transform 0.1s ease-in-out;
}
.primary-btn:hover {
  transform: scale(1.02);
  text-decoration: none;
}
.primary-btn:focus {
  outline: none;
  box-shadow: none;
}

.secondary-btn {
  height: 2rem;
  border-radius: 0.6rem;
  font-size: 1rem;
  width: 100%;
  color: #ffffff;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: auto;
  padding: 0.4rem 0.7rem;
  background: linear-gradient(277.14deg, #004FE3 14.9%, #0084FF 94.48%);
  transition: transform 0.1s ease-in-out;
  background: #B7B7B7;
  transition: transform 0.1s ease-in-out;
}
.secondary-btn:hover {
  transform: scale(1.02);
  text-decoration: none;
  transform: scale(1.1);
}
.secondary-btn:focus {
  outline: none;
  box-shadow: none;
}

.primary-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.disabled.secondary-btn {
  opacity: 0.6;
  cursor: not-allowed;
}

.primary-btn.predict.disabled {
  background: #B7B7B7;
}

.predict.disabled.secondary-btn {
  background: #B7B7B7;
}

.primary-btn.fade {
  opacity: 0.6;
}

.fade.secondary-btn {
  opacity: 0.6;
}

.secondary-btn.predict.disabled {
  background: #B7B7B7;
}

section {
  margin-bottom: 3rem;
}

.alert.alert-msg {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.alert.alert-msg img {
  margin-top: 0.1rem;
}
.alert.alert-msg h4 {
  margin-bottom: 0;
  align-items: center;
  color: #FF0000;
  font-weight: 600;
  font-size: 1rem;
}

.alert-error {
  color: #FF0018;
  line-height: 1.2;
  margin-top: 0.2rem;
  font-size: 1rem;
  margin: 0.7rem 0;
  font-weight: 600;
}

.alert-error.middle {
  text-align: center;
}

.show-more-btn {
  color: #7F7F7F;
  text-align: center;
  cursor: pointer;
  display: none;
  margin-bottom: 2rem;
}

.show-more-btn.active {
  display: block;
}

.showmoreless-btn {
  color: #FF8A00;
  text-decoration: underline;
  font-size: 12px;
  cursor: pointer;
}

.section-title {
  margin: 50px 0 20px;
  display: flex;
  justify-content: space-between;
}
.section-title h3 {
  font-size: 1.2rem;
  color: #143cdb;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 800;
}
.section-title a {
  color: #7f7f7f;
  font-size: 1rem;
}

.row-sort {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

/* Desktop Show Only */
.dkOnly {
  display: flex !important;
}
@media screen and (max-width: 575px) {
  .dkOnly {
    display: none !important;
  }
}

/* Mobile Show Only */
.mbOnly {
  display: none !important;
}
@media screen and (max-width: 575px) {
  .mbOnly {
    display: flex !important;
  }
}

/* Navbar Country */
.country-menu {
  min-width: 10rem;
  width: 15.5rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  top: 130% !important;
  right: 0 !important;
  left: auto !important;
  position: absolute;
  background-color: #ffffff;
  z-index: 99;
  display: none;
}
.country-menu .country-name {
  font-family: "SF-Pro-Display-Regular", sans-serif;
  font-size: 14px;
}
.country-menu .country-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.country-menu .country-item .country-flag img {
  width: 25px;
  height: 25px;
}
.country-menu .country-item .country-dec a.country-lang {
  padding: 0;
  color: #9e9b96;
  cursor: pointer;
  font-size: 14px;
}
.country-menu .country-item .country-dec a.country-lang:hover {
  text-decoration: none;
  color: #005AE2;
}
.country-menu .country-item .country-dec a.country-lang.active {
  color: #0524dd;
}
.country-menu .country-item .country-dec .country-lang-container {
  display: flex;
  gap: 0.5rem;
}
.country-menu .country-item .country-dec .country-lang-container .separator {
  color: #8697a2;
}

.country-menu.is-open {
  display: block;
  margin-top: 8px;
}

.rotate-180 {
  transform: rotate(180deg);
}

.input-hide {
  display: none !important;
}

.menu.active {
  left: 0;
  overflow-y: auto;
}
.menu.active::-webkit-scrollbar {
  width: 10px;
}
.menu.active::-webkit-scrollbar-track {
  background-color: transparent;
}
.menu.active::-webkit-scrollbar-thumb {
  background-color: #d6dee1;
  border-radius: 10px;
  background-clip: content-box;
  z-index: 20;
}
.menu.active::-webkit-scrollbar-thumb:hover {
  background-color: #B2BEC3;
  overflow: overlay;
}

.menu-overlay.active {
  display: block;
}

#nav-lang .modal-content {
  border: none;
  background-color: unset;
  display: flex;
  align-items: center;
}
#nav-lang .nav-lang-list {
  border-radius: 1.2rem;
  color: black;
  background-color: #ffffff;
  padding: 1rem 2rem;
  z-index: 10;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 21rem;
  position: relative;
}
#nav-lang .nav-lang-list .nav-item-list {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
#nav-lang .nav-lang-list .nav-item-list img {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.3rem;
}
#nav-lang .nav-lang-list .nav-item-list p {
  margin-bottom: 0;
  color: black;
}
#nav-lang .nav-lang-list .nav-item-list .nav-item-region ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.4rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
#nav-lang .nav-lang-list .nav-item-list .nav-item-region ul li {
  white-space: nowrap;
  position: relative;
  color: #8697A2;
  cursor: pointer;
}
#nav-lang .nav-lang-list .nav-item-list .nav-item-region ul li:not(:last-child)::after {
  content: " | ";
  margin-left: 0.5rem;
  color: #8697A2;
}
#nav-lang .nav-lang-list .nav-item-list .nav-item-region ul li a {
  color: unset;
}
#nav-lang .nav-lang-list .nav-item-list .nav-item-region ul li.active {
  color: #0071E3;
}
#nav-lang .nav-lang-list hr {
  border: 0.5px solid #eaecee;
}
#nav-lang .nav-lang-list .modal-close {
  position: absolute;
  right: -3%;
  top: -2%;
  z-index: 10;
  font-size: 2rem;
  cursor: pointer;
  background: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  filter: drop-shadow(0 0 0.03rem #6c6c6c);
}

.tab-selection {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.tab-selection .tab-login {
  flex: 1;
}
.tab-selection .tab-login a {
  width: 100%;
}
.tab-selection .tab-login a.primary-btn {
  background: #7F7F7F;
}
.tab-selection .tab-login a.secondary-btn {
  background: #7F7F7F;
}
.tab-selection .tab-login a.primary-btn.active {
  background: #FF8A00;
}
.tab-selection .tab-login a.active.secondary-btn {
  background: #FF8A00;
}
.tab-selection .tab-register {
  flex: 1;
}
.tab-selection .tab-register a {
  width: 100%;
}
.tab-selection .tab-register a.primary-btn {
  background: #7F7F7F;
}
.tab-selection .tab-register a.secondary-btn {
  background: #7F7F7F;
}
.tab-selection .tab-register a.primary-btn.active {
  background: #FF8A00;
}
.tab-selection .tab-register a.active.secondary-btn {
  background: #FF8A00;
}

.tab-content-container .label-text {
  color: #8697a2;
}
.tab-content-container .label-text img {
  width: 0.8rem;
}
.tab-content-container .label-text.aff-pointer {
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  display: flex;
}
.tab-content-container .field {
  margin-bottom: 1rem;
}
.tab-content-container .field input {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.tab-content-container .field input:focus-visible {
  outline: 1px solid #ced4da;
}
.tab-content-container .field select {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.tab-content-container .field select:focus-visible {
  outline: 1px solid #ced4da;
}
.tab-content-container .required {
  color: red;
}
.tab-content-container .help-container {
  width: 80%;
  margin: auto;
  text-align: center;
}
.tab-content-container .help-container a {
  color: #FF8A00;
  font-weight: 500;
}
.tab-content-container .help-container a:hover {
  text-decoration: none;
}
.tab-content-container .tab-content {
  display: none;
}
.tab-content-container .tab-content.active {
  display: block;
}
.tab-content-container .no-container {
  display: flex;
  gap: 0.5rem;
  position: relative;
}
.tab-content-container .no-container .no-dropdown {
  display: flex;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  position: relative;
}
.tab-content-container .no-container .no-dropdown .no-dropdown-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.375rem 0.6rem;
  cursor: pointer;
  white-space: nowrap;
}
.tab-content-container .no-container .no-dropdown .no-dropdown-header img:not(.phone-arrow) {
  width: 1.3rem;
  height: auto;
}
.tab-content-container .no-container .no-dropdown .no-dropdown-header span {
  font-size: 0.9rem;
  color: #495057;
}
.tab-content-container .no-container .no-dropdown .no-dropdown-header .flag-wrapper {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.tab-content-container .no-container .no-dropdown .no-dropdown-header .flag-wrapper img {
  width: 1.3rem;
  height: auto;
}
.tab-content-container .no-container .no-dropdown .no-dropdown-header .flag-wrapper span {
  font-size: 0.9rem;
  color: #495057;
}
.tab-content-container .no-container .no-dropdown .no-dropdown-header .phone-arrow {
  width: 0.65rem;
  height: auto;
  transition: transform 0.2s ease;
}
.tab-content-container .no-container .no-dropdown .no-dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  z-index: 100;
  background: white;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  min-width: 5.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.tab-content-container .no-container .no-dropdown .no-dropdown-content .no-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
}
.tab-content-container .no-container .no-dropdown .no-dropdown-content .no-dropdown-item img {
  width: 1.2rem;
  height: auto;
}
.tab-content-container .no-container .no-dropdown .no-dropdown-content .no-dropdown-item .no-dropdown-name {
  font-size: 0.85rem;
  color: #495057;
  white-space: nowrap;
}
.tab-content-container .no-container .no-dropdown .no-dropdown-content .no-dropdown-item:hover {
  background-color: #f5f6fa;
}
.tab-content-container .no-container .no-dropdown.open .no-dropdown-content {
  display: block;
}
.tab-content-container .no-container .no-dropdown.open .phone-arrow {
  transform: rotate(180deg);
}
.tab-content-container .no-container .no-digit {
  flex: 1;
  min-width: 0;
}
.tab-content-container .input-container {
  display: flex;
  gap: 0.5rem;
  position: relative;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.tab-content-container .input-wrapper {
  position: relative;
  display: inline-block;
}
.tab-content-container .input-wrapper .country-icon {
  position: absolute;
  top: 50%;
  left: 0.3rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
}
.tab-content-container .input-wrapper .input {
  padding-left: 2.6rem;
  border: none;
  height: 3rem;
}
.tab-content-container .input-select {
  width: 100%;
  padding: 0.5rem 2.5rem 0.5rem 0.5rem;
  border: none;
  height: 3rem;
  position: relative;
  border: 1px solid #ced4da;
}
.tab-content-container .input-select:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #333 transparent transparent transparent;
}

.odds-main-grid.result {
  display: flex;
  justify-content: space-between;
}

.odds-main-grid .odds-info-selection {
  background-color: #E3E3E3;
  border-radius: 5px;
  padding: 10px 1rem;
  align-items: center;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.odds-main-grid .odds-info-selection .odds-info h4 {
  font-weight: bold;
}
.odds-main-grid .odds-info-selection.active {
  background-color: #FF8A00;
  color: #ffffff;
}

.odds-main-grid.summary {
  display: flex;
  justify-content: space-between;
}

.custom-dropdown {
  position: relative;
  width: 100%;
}

.custom-dropdown .options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 5px 5px;
}
.custom-dropdown .options .option {
  padding: 5px 10px;
  cursor: pointer;
}
.custom-dropdown .options .option:hover {
  background-color: #f9f9f9;
}
.custom-dropdown .right-value {
  float: right;
}


/* Card Header */
.matchday-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  cursor: pointer;
}
.matchday-overlay .matchday-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26rem;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: auto;
  background-color: #ffffff;
}
.matchday-overlay .matchday-header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #304FFE;
  padding: 0.85rem 1rem;
  position: relative;
  flex-shrink: 0;
}
.matchday-overlay .matchday-header .font {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.matchday-overlay .matchday-header img.cross {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.7rem;
  filter: brightness(0) invert(1);
  cursor: pointer;
}
.matchday-overlay .matchday-body {
  background-color: #f5f6fa;
  overflow-y: auto;
  flex: 1;
  padding: 1rem;
  cursor: auto;
}
.matchday-overlay .matchday-body::-webkit-scrollbar {
  width: 10px;
}
.matchday-overlay .matchday-body::-webkit-scrollbar-track {
  background-color: transparent;
}
.matchday-overlay .matchday-body::-webkit-scrollbar-thumb {
  background-color: #d6dee1;
  border-radius: 10px;
  background-clip: content-box;
  z-index: 20;
}
.matchday-overlay .matchday-body::-webkit-scrollbar-thumb:hover {
  background-color: #B2BEC3;
  overflow: overlay;
}
.matchday-overlay .matchday-modal {
  display: none;
}
.matchday-overlay .matchday-modal.active {
  display: block;
}
.matchday-overlay .matchday-country-info {
  background: white;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.matchday-overlay .matchday-country-info .matchday-country-details {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.matchday-overlay .matchday-country-info .matchday-country-details .matchday-list:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.matchday-overlay .matchday-country-info .matchday-country-details .matchday-list:nth-child(2) {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-width: 0;
  gap: 1.1rem;
}
.matchday-overlay .matchday-country-info .matchday-country-details .country-cell {
  gap: 0.35rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.matchday-overlay .matchday-country-info .matchday-country-details .country-cell:nth-child(1) {
  margin-left: 2rem;
}
.matchday-overlay .matchday-country-info .matchday-country-details .country-cell:nth-child(2) {
  margin-top: 1rem;
}
.matchday-overlay .matchday-country-info .matchday-country-details .country-cell:nth-child(3) {
  margin-right: 2rem;
}
.matchday-overlay .matchday-country-info .matchday-country-details .country-cell .country-flag img {
  width: 5rem;
  height: 100%;
}
.matchday-overlay .matchday-country-info .matchday-country-details .country-cell .score-value {
  font-size: 1.5rem;
  font-weight: 600;
}
.matchday-overlay .matchday-country-info .matchday-country-details .country-cell .team-role {
  font-size: 0.75rem;
  color: #8697A2;
}
.matchday-overlay .matchday-country-info .matchday-country-details .country-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
}
.matchday-overlay .matchday-country-info .matchday-country-details .country-item img {
  width: 4rem;
  height: 2.75rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}
.matchday-overlay .matchday-country-info .matchday-country-details .country-item span {
  font-size: 0.85rem;
}
.matchday-overlay .matchday-country-info .matchday-event-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.matchday-overlay .matchday-country-info .matchday-event-details .match-meta {
  font-size: 0.75rem;
  color: #8697A2;
  text-align: center;
  white-space: nowrap;
}
.matchday-overlay .matchday-country-info .matchday-event-details .match-meta .date {
  display: inline;
}
.matchday-overlay .matchday-country-info .matchday-event-details .match-meta .day-today {
  display: inline;
}
.matchday-overlay .matchday-country-info .matchday-event-details .time {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
}
.matchday-overlay .matchday-country-info .matchday-event-details .matchday-score {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}
.matchday-overlay .matchday-odds-country {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-radius: 0.5rem;
  padding: 0.55rem 0.75rem;
  margin-bottom: 1rem;
}
.matchday-overlay .matchday-odds-country .odds-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: #1a1a1a;
}
.matchday-overlay .matchday-odds-country .odds-dropdown {
  position: relative;
  width: auto;
  min-width: 8rem;
}
.matchday-overlay .matchday-odds-country .odds-dropdown .selected-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: space-between;
  border-radius: 0.4rem;
  padding: 0.3rem 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: initial;
}
.matchday-overlay .matchday-odds-country .odds-dropdown .selected-value i {
  font-size: 0.7rem;
  transition: transform 0.2s;
}
.matchday-overlay .matchday-odds-country .odds-dropdown .selected-value.open i {
  transform: rotate(180deg);
}
.matchday-overlay .matchday-odds-country .odds-dropdown .options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 100%;
  width: -moz-max-content;
  width: max-content;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 0.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 50;
  overflow: hidden;
}
.matchday-overlay .matchday-odds-country .odds-dropdown .options .option {
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  cursor: pointer;
  color: #1a1a1a;
  white-space: nowrap;
}
.matchday-overlay .matchday-odds-country .odds-dropdown .options .option:hover {
  background: #eef0ff;
  color: #304FFE;
}
.matchday-overlay .matchday-odds-country .odds-dropdown .options .option.active {
  background: #eef0ff;
  color: #304FFE;
  font-weight: 600;
}
.matchday-overlay .handicap {
  margin-bottom: 1.5rem;
}
.matchday-overlay .handicap .section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.matchday-overlay .handicap .odds-info.main-odds {
  display: flex;
  gap: 0.5rem;
}
.matchday-overlay .odds-main-grid {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.matchday-overlay .odds-main-grid.handicap {
  grid-template-columns: 1fr 1fr;
}
.matchday-overlay .odds-main-grid.overunder {
  grid-template-columns: 1fr 1fr;
}
.matchday-overlay .odds-main-grid.onextwo {
  grid-template-columns: 1fr 1fr 1fr;
}
.matchday-overlay .odds-main-grid.onextwo .odds-info-selection {
  text-align: center;
  gap: 0.1rem;
}
.matchday-overlay .odds-main-grid.summary {
  display: flex;
  justify-content: space-between;
}
.matchday-overlay .odds-main-grid.result {
  display: flex;
  justify-content: space-between;
}
.matchday-overlay .odds-info-selection {
  background: white;
  border: 1.5px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.5rem 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.matchday-overlay .odds-info-selection .odds-info h4 {
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}
.matchday-overlay .odds-info-selection .odds-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
}
.matchday-overlay .odds-info-selection:hover:not(.active) {
  border-color: #b0b0b0;
}
.matchday-overlay .odds-info-selection.active {
  background: #304ffe;
  opacity: 0.8;
}
.matchday-overlay .odds-info-selection.active .odds-info h4 {
  color: #ffffff;
}
.matchday-overlay .odds-info-selection.active .odds-value {
  color: #ffffff;
}
.matchday-overlay .coin-meter .qty-container {
  display: flex;
  align-items: center;
  background: white;
  border: 1.5px solid #e0e0e0;
  border-radius: 2rem;
  padding: 0.3rem 0.4rem;
  gap: 0.4rem;
  justify-content: space-between;
}
.matchday-overlay .coin-meter .qty-container .qty-value {
  display: flex;
}
.matchday-overlay .coin-meter .qty-container .qty-value input.input-qty {
  flex: 1;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  width: 2.5rem;
  min-width: 0;
}
.matchday-overlay .coin-meter .qty-container .qty-value input.input-qty:focus {
  outline: none;
}
.matchday-overlay .coin-meter .qty-container p {
  font-size: 0.75rem;
  color: #8697A2;
  margin: 0;
  white-space: nowrap;
}
.matchday-overlay .coin-meter .qty-container.resultbar {
  border-radius: 0.4rem;
  border: 1px solid #00BA5D;
  background: #D5FFEA;
  justify-content: center;
}
.matchday-overlay .coin-meter .qty-container.resultbar p {
  font-size: 0.95rem;
  font-weight: 700;
  color: #00BA5D;
}
.matchday-overlay .coin-meter .qty-container.resultbar.loss {
  border: 1px solid #FF0000;
  background-color: #FFECEC;
}
.matchday-overlay .coin-meter .qty-container.resultbar.loss p {
  color: #E53935;
}
.matchday-overlay .qty-btn-minus {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  background: #e0e0e0;
  color: #555;
}
.matchday-overlay .qty-btn-minus:focus {
  outline: none;
  box-shadow: none;
}
.matchday-overlay .qty-btn-minus:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.matchday-overlay .qty-btn-plus {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  background: #304FFE;
  color: #ffffff;
}
.matchday-overlay .qty-btn-plus:focus {
  outline: none;
  box-shadow: none;
}
.matchday-overlay .qty-btn-plus:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.matchday-overlay .custom-dropdown.correctscore {
  position: relative;
  margin-bottom: 0.6rem;
}
.matchday-overlay .custom-dropdown.correctscore .selected-value {
  background: white;
  border: 1.5px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.55rem 2rem 0.55rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 16 16'%3E%3Cpath fill='%238697A2' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}
.matchday-overlay .custom-dropdown.correctscore .options {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 0 0 0.5rem 0.5rem;
  z-index: 10;
  max-height: 10rem;
  overflow-y: auto;
}
.matchday-overlay .custom-dropdown.correctscore .options::-webkit-scrollbar {
  width: 10px;
}
.matchday-overlay .custom-dropdown.correctscore .options::-webkit-scrollbar-track {
  background-color: transparent;
}
.matchday-overlay .custom-dropdown.correctscore .options::-webkit-scrollbar-thumb {
  background-color: #d6dee1;
  border-radius: 10px;
  background-clip: content-box;
  z-index: 20;
}
.matchday-overlay .custom-dropdown.correctscore .options::-webkit-scrollbar-thumb:hover {
  background-color: #B2BEC3;
  overflow: overlay;
}
.matchday-overlay .custom-dropdown.correctscore .options .option {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  cursor: pointer;
}
.matchday-overlay .custom-dropdown.correctscore .options .option:hover {
  background-color: #f5f6fa;
}
.matchday-overlay .matchday-stake-row {
  border-top: 1px solid #e0e0e0;
  padding-top: 0.75rem;
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}
.matchday-overlay .matchday-stake-row .odds-main-grid.summary {
  align-items: center;
}
.matchday-overlay .matchday-stake-row .odds-main-grid.summary h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}
.matchday-overlay .matchday-stake-row .odds-main-grid.summary h4.remaining-coin {
  font-weight: 700;
  font-size: 1rem;
}
.matchday-overlay .matchday-stake-row .odds-main-grid.summary .odds-info-grid .odds-info {
  display: flex;
  gap: 0.5rem;
}
.matchday-overlay .matchday-form-details .summary-grid {
  background-color: #ffffff;
  padding: 0.5rem 1rem;
}
.matchday-overlay .matchday-form-details .summary-grid .summary-page .odds-info.hundred {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}
.matchday-overlay .matchday-form-details .summary-grid .summary-page .odds-info.hundred h4 {
  font-weight: 600;
}
.matchday-overlay .matchday-form-details .summary-grid .summary-page .sum-odds {
  text-align: initial;
  background-color: initial;
  border-radius: initial;
  padding: initial;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}
.matchday-overlay .matchday-form-details .summary-grid .summary-page .sum-odds h4 {
  color: #0EBA15;
  font-weight: 800;
}
.matchday-overlay .matchday-form-details .summary-grid .summary-page .sum-odds.loss h4 {
  color: #FF0000;
}
.matchday-overlay .matchday-form-details .summary-grid:nth-child(3) {
  border: 1px solid #B9C6CB;
  border-radius: 0.5rem;
}
.matchday-overlay .matchday-form-details .handicap.under h4 span {
  font-weight: 600;
}
.matchday-overlay .matchday-form-details .handicap.under .odds-info-grid .odds-info {
  display: flex;
  gap: 0.5rem;
}
.matchday-overlay .matchday-form-details .handicap.under .odds-info-grid .odds-info h4 {
  font-weight: bold;
  font-size: 1.1rem;
}
.matchday-overlay .prediction-wrap .prediction-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem 1rem;
  gap: 0.75rem;
  min-height: 43vh;
  justify-content: center;
}
.matchday-overlay .prediction-wrap .prediction-submit img {
  width: 5rem;
}
.matchday-overlay .prediction-wrap .prediction-submit p {
  margin: 0;
  color: #1a1a1a;
}
.matchday-overlay .prediction-wrap .prediction-submit p:first-of-type {
  font-weight: 600;
  font-size: 1rem;
}
.matchday-overlay .prediction-wrap .prediction-submit p:last-of-type {
  font-size: 0.85rem;
  color: #8697A2;
}
.matchday-overlay .prediction-wrap .prediction-submit .primary-btn {
  margin-top: 0.5rem;
}
.matchday-overlay .prediction-wrap .prediction-submit .secondary-btn {
  margin-top: 0.5rem;
}
.matchday-overlay .odd-wrapper .odds-main-grid.result .correct-score h4 {
  font-size: 0.85rem;
  font-weight: 600;
}
.matchday-overlay .odd-wrapper .odds-main-grid.result .correct-scores h4 {
  font-size: 1.2rem;
  font-weight: 700;
}
.matchday-overlay .odd-wrapper hr {
  border-color: #e0e0e0;
  margin: 0.75rem 0;
}
.matchday-overlay p.oddpowered {
  font-size: 0.75rem;
  color: #8697A2;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}
.matchday-overlay p.oddpowered img {
  width: 2.5rem;
  vertical-align: middle;
  margin-left: 0.3rem;
}
.matchday-overlay .primary-btn + .primary-btn {
  margin-top: 0.5rem;
}
.matchday-overlay .primary-btn + .secondary-btn {
  margin-top: 0.5rem;
  margin-top: 0.5rem;
}
.matchday-overlay .secondary-btn + .primary-btn {
  margin-top: 0.5rem;
}
.matchday-overlay .secondary-btn + .secondary-btn {
  margin-top: 0.5rem;
  margin-top: 0.5rem;
}

.matchday-overlay.active {
  display: block;
}

.dateinfo p {
  margin-bottom: 0;
  font-weight: bold;
}

.result-btn {
  font-size: 0.75rem;
}

.result-btn.check {
  font-size: 1rem;
}

.match-icon-grid.match-result {
  position: relative;
  display: grid;
}
.match-icon-grid.match-result .match-county::after {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 20%;
  right: 35%;
  width: 2px;
  background-color: #D9D9D9;
}
.match-icon-grid.match-result .match-country-item {
  display: flex;
  margin-bottom: 1.3rem;
  align-items: center;
}
.match-icon-grid.match-result .match-country-item img {
  width: 2rem;
  height: 2rem;
  margin: 0 1rem;
}
.match-icon-grid.match-result .match-country-item h4 {
  font-size: 1rem;
  margin-bottom: 0;
}
.match-icon-grid.match-result .match-score h4 {
  width: 5rem;
  height: 2rem;
  margin-bottom: 1.4rem;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 2rem;
  margin-left: 4rem;
}

.section-result-detail .check-info.result-check-info h3 {
  padding: 10px;
}

.leaderboard-user-ranking h5 {
  background-color: #000000;
  color: #ffffff;
  padding: 10px 0px 10px 0;
  text-align: center;
  font-size: 1rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.leaderboard-user-ranking .board-list {
  display: grid;
  grid-template-columns: 7rem 1fr 13rem 13rem;
  background-color: #fcfcfc;
  border-radius: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  flex-wrap: nowrap;
  padding: 10px 0;
  border: 1px solid #b9c6cb;
  text-align: center;
  padding: 1rem 3rem;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.7rem;
}
.leaderboard-user-ranking .board-list .board-user-profile {
  display: flex;
  min-width: 0;
  align-items: center;
}
.leaderboard-user-ranking .board-list .board-user-profile img {
  width: 2.5rem;
  flex-shrink: 0;
  padding: 0;
  margin: 0 1rem;
}
.leaderboard-user-ranking .board-list .board-user-profile .username {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
  padding-left: 1rem;
  font-weight: 600;
}
.leaderboard-user-ranking .board-list .board-coins {
  display: grid;
  grid-template-columns: 70% 30%;
  text-align: end;
  gap: 0;
  align-items: center;
}
.leaderboard-user-ranking .board-list .board-coins .coin-amount {
  font-family: "FWC2026";
  font-weight: 900;
  font-size: 2rem;
  color: #7F7F7F;
}
.leaderboard-user-ranking .board-list .board-coins .coins {
  color: #7F7F7F;
  font-weight: 600;
}
.leaderboard-user-ranking .board-list .board-reward {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  align-items: center;
  padding-right: 3rem;
  font-family: "FWC2026";
  font-weight: 900;
  font-size: 2rem;
  color: #7F7F7F;
}
.leaderboard-user-ranking .board-list .board-rank-value {
  font-family: "FWC2026";
  font-weight: 900;
  font-size: 2rem;
  color: #7F7F7F;
}
.leaderboard-user-ranking .board-list.top-1 {
  background: linear-gradient(90deg, #ECA200 0.48%, #FF6F00 96.63%);
}
.leaderboard-user-ranking .board-list.top-2 {
  background: linear-gradient(90deg, #004BE2 0%, #75ABF1 100%);
}
.leaderboard-user-ranking .board-list.top-3 {
  background: linear-gradient(90deg, #00BA5D 0%, #AACF54 96.5%);
}
.leaderboard-user-ranking .board-list.top-4 {
  background: linear-gradient(90deg, #D321FF 3.5%, #D683FF 100%);
}
.leaderboard-user-ranking .board-list.top-5 {
  background: linear-gradient(90deg, #FF418D 0%, #FF88D5 96.5%);
}
.leaderboard-user-ranking .board-list.trophy .board-rank-value {
  color: #ffffff;
}
.leaderboard-user-ranking .board-list.trophy .board-user-profile .username {
  color: #ffffff;
}
.leaderboard-user-ranking .board-list.trophy .board-coins .coin-amount {
  color: #ffffff;
}
.leaderboard-user-ranking .board-list.trophy .board-coins .coins {
  color: #ffffff;
}
.leaderboard-user-ranking .board-list.trophy .board-reward {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  align-items: center;
  padding-right: 0;
  color: #ffffff;
}
.leaderboard-user-ranking .board-list.trophy .board-reward:after {
  content: "";
  display: block;
  width: 2rem;
  height: 3rem;
  background-image: url(../images/components/trophy.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 0.5rem;
  transform: scale(1.5);
}

.leaderboard-user-ranking.my-rank .board-list {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.betimg-mb {
  display: none;
}

.error-overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.error-overlay .error-container {
  position: relative;
  background: white;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem 2rem;
  width: 22rem;
  max-width: 90vw;
  text-align: center;
}
.error-overlay .error-close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1.5px solid #d0d0d0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #555;
  cursor: pointer;
}
.error-overlay .error-close:focus {
  outline: none;
  box-shadow: none;
}
.error-overlay .error-icon-wrap {
  margin: 0 auto 1.25rem;
}
.error-overlay .error-icon-wrap img {
  width: 5.5rem;
  height: 5.5rem;
}
.error-overlay .error-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
.error-overlay .error-desc {
  font-size: 0.95rem;
  color: #8697A2;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.error-overlay .error-okay-btn {
  border-radius: 0.6rem;
}

.error-overlay.active {
  display: flex;
}

.auth-overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  cursor: pointer;
}
.auth-overlay .auth-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28rem;
  border-radius: 0.75rem;
  background-color: #ffffff;
  cursor: auto;
}
.auth-overlay .auth-header {
  display: flex;
  justify-content: start;
  align-items: center;
  background-color: #0524dd;
  color: #ffffff;
  padding: 1rem;
  border-radius: 0.75rem 0.75rem 0 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.auth-overlay .auth-header .auth-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #ffffff;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}
.auth-overlay .auth-header .auth-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  background-color: #ffffff;
  border-radius: 50px;
  color: #0524dd;
}
.auth-overlay .auth-body {
  padding: 1.5rem;
  background-color: #f3f5f6;
  border-radius: 0 0 0.75rem 0.75rem;
  overflow-y: auto;
  max-width: 90vw;
  max-height: 90vh;
}
.auth-overlay .auth-body::-webkit-scrollbar {
  width: 10px;
}
.auth-overlay .auth-body::-webkit-scrollbar-track {
  background-color: transparent;
}
.auth-overlay .auth-body::-webkit-scrollbar-thumb {
  background-color: #d6dee1;
  border-radius: 10px;
  background-clip: content-box;
  z-index: 20;
}
.auth-overlay .auth-body::-webkit-scrollbar-thumb:hover {
  background-color: #B2BEC3;
  overflow: overlay;
}
.auth-overlay .auth-body .tab-content-container {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.auth-overlay .auth-social {
  text-align: center;
  margin-bottom: 1rem;
}
.auth-overlay .auth-social .auth-social-label {
  color: #8697A2;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.auth-overlay .auth-social .auth-social-icons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.auth-overlay .auth-social .auth-social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.2rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #555;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.auth-overlay .auth-social .auth-social-icon:hover {
  transform: scale(1.1);
  text-decoration: none;
}
.auth-overlay .auth-or-divider {
  display: flex;
  align-items: center;
  color: #8697A2;
  margin: 1rem 0;
  font-size: 0.85rem;
}
.auth-overlay .auth-or-divider::before {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}
.auth-overlay .auth-or-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}
.auth-overlay .auth-or-divider span {
  padding: 0 0.75rem;
}
.auth-overlay .auth-password-field {
  position: relative;
}
.auth-overlay .auth-password-field input {
  padding-right: 2.5rem !important;
}
.auth-overlay .auth-password-field .toggle-password {
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #8697A2;
  padding: 0;
  font-size: 1rem;
}
.auth-overlay .auth-password-field .toggle-password:focus {
  outline: none;
  box-shadow: none;
}
.auth-password-field input[type="password"]::-ms-reveal,
.auth-password-field input[type="password"]::-ms-clear {
  display: none;
}
.auth-overlay .auth-select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%238697A2' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.auth-overlay .auth-aff-group {
  border-top: 1px solid #eee;
  padding-top: 0.75rem;
}
.auth-overlay .auth-aff-group .aff-pointer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}
.auth-overlay .auth-aff-group .aff-pointer .aff-chevron {
  transition: transform 0.2s ease;
  color: #8697A2;
}
.auth-overlay .auth-aff-group .aff-pointer .aff-chevron.open {
  transform: rotate(180deg);
}
.auth-overlay .auth-disclaimer {
  font-size: 0.75rem;
  color: #8697A2;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.auth-overlay .auth-disclaimer a {
  color: #304FFE;
  font-weight: 500;
}
.auth-overlay .auth-disclaimer a:hover {
  text-decoration: none;
}
.auth-overlay .auth-switch-link {
  font-size: 0.85rem;
  color: #8697A2;
  text-align: center;
  margin-bottom: 0;
}
.auth-overlay .auth-switch-link .auth-switch-to-login {
  color: #304FFE;
  font-weight: 600;
}
.auth-overlay .auth-switch-link .auth-switch-to-login:hover {
  text-decoration: none;
}
.auth-overlay .primary-btn {
  background: #0524dd;
  border-radius: 5px;
}

.auth-register-overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  cursor: pointer;
}
.auth-register-overlay .auth-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28rem;
  border-radius: 0.75rem;
  background-color: #ffffff;
  cursor: auto;
}
.auth-register-overlay .auth-header {
  display: flex;
  justify-content: start;
  align-items: center;
  background-color: #0524dd;
  color: #ffffff;
  padding: 1rem;
  border-radius: 0.75rem 0.75rem 0 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.auth-register-overlay .auth-header .auth-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #ffffff;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}
.auth-register-overlay .auth-header .auth-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  background-color: #ffffff;
  border-radius: 50px;
  color: #0524dd;
}
.auth-register-overlay .auth-body {
  padding: 1.5rem;
  background-color: #f3f5f6;
  border-radius: 0 0 0.75rem 0.75rem;
  overflow-y: auto;
  max-width: 90vw;
  max-height: 90vh;
}
.auth-register-overlay .auth-body::-webkit-scrollbar {
  width: 10px;
}
.auth-register-overlay .auth-body::-webkit-scrollbar-track {
  background-color: transparent;
}
.auth-register-overlay .auth-body::-webkit-scrollbar-thumb {
  background-color: #d6dee1;
  border-radius: 10px;
  background-clip: content-box;
  z-index: 20;
}
.auth-register-overlay .auth-body::-webkit-scrollbar-thumb:hover {
  background-color: #B2BEC3;
  overflow: overlay;
}
.auth-register-overlay .auth-body .tab-content-container {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.auth-register-overlay .auth-social {
  text-align: center;
  margin-bottom: 1rem;
}
.auth-register-overlay .auth-social .auth-social-label {
  color: #8697A2;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.auth-register-overlay .auth-social .auth-social-icons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.auth-register-overlay .auth-social .auth-social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.2rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #555;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.auth-register-overlay .auth-social .auth-social-icon:hover {
  transform: scale(1.1);
  text-decoration: none;
}
.auth-register-overlay .auth-or-divider {
  display: flex;
  align-items: center;
  color: #8697A2;
  margin: 1rem 0;
  font-size: 0.85rem;
}
.auth-register-overlay .auth-or-divider::before {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}
.auth-register-overlay .auth-or-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}
.auth-register-overlay .auth-or-divider span {
  padding: 0 0.75rem;
}
.auth-register-overlay .auth-password-field {
  position: relative;
}
.auth-register-overlay .auth-password-field input {
  padding-right: 2.5rem !important;
}
.auth-register-overlay .auth-password-field .toggle-password {
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #8697A2;
  padding: 0;
  font-size: 1rem;
}
.auth-register-overlay .auth-password-field .toggle-password:focus {
  outline: none;
  box-shadow: none;
}
.auth-register-overlay .auth-select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%238697A2' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.auth-register-overlay .auth-aff-group {
  border-top: 1px solid #eee;
  padding-top: 0.75rem;
}
.auth-register-overlay .auth-aff-group .aff-pointer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}
.auth-register-overlay .auth-aff-group .aff-pointer .aff-chevron {
  transition: transform 0.2s ease;
  color: #8697A2;
}
.auth-register-overlay .auth-aff-group .aff-pointer .aff-chevron.open {
  transform: rotate(180deg);
}
.auth-register-overlay .auth-disclaimer {
  font-size: 0.75rem;
  color: #8697A2;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.auth-register-overlay .auth-disclaimer a {
  color: #304FFE;
  font-weight: 500;
}
.auth-register-overlay .auth-disclaimer a:hover {
  text-decoration: none;
}
.auth-register-overlay .auth-switch-link {
  font-size: 0.85rem;
  color: #8697A2;
  text-align: center;
  margin-bottom: 0;
}
.auth-register-overlay .auth-switch-link .auth-switch-to-login {
  color: #304FFE;
  font-weight: 600;
}
.auth-register-overlay .auth-switch-link .auth-switch-to-login:hover {
  text-decoration: none;
}
.auth-register-overlay .primary-btn {
  background: #0524dd;
  border-radius: 5px;
}

.login-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 350px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  padding: 1.35rem 1.25rem 1.25rem;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}
.login-dropdown.active {
  display: block;
}

/* .navLogin has .predict-info; style.css .predict-info button { width:100%; blue bg; color:#fff !important } otherwise hits close + toggle + submit */
.predict-info .login-dropdown .login-dropdown-close {
}
.predict-info .login-dropdown .auth-password-field .toggle-password {
  width: auto !important;
  min-width: 2.25rem;
  max-width: none;
  height: auto !important;
  min-height: 0 !important;
  padding: 0.2rem !important;
  margin: 0 !important;
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border-radius: 4px;
  color: #4a5568 !important;
  font-size: 1.1rem !important;
}
.predict-info .login-dropdown .primary-btn.login-button {
  width: 100%;
  height: auto;
  min-height: 2.5rem;
  padding: 0.65rem !important;
  margin: 0 !important;
  background: #0524dd !important;
  background-color: #0524dd !important;
  background-image: none !important;
  color: #ffffff !important;
  font-family: "SF-Pro-Display-Regular", "avenir-semibold", avenir, sans-serif !important;
  font-size: 0.9rem !important;
  border-radius: 6px;
}

.login-dropdown-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  transition: background-color 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .login-dropdown-close {
    transition: none;
  }
}
.login-dropdown-close:focus-visible {
  outline: 2px solid #304ffe;
  outline-offset: 2px;
}
.login-dropdown-close svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: #a2a2a2;
}
.login-dropdown-close svg path {
  fill: #5c5c5c;
}
.login-dropdown-body {
  padding-top: 0.35rem;
}
.login-dropdown .form-group {
  margin-bottom: 0.75rem;
}
.login-dropdown .form-group .label-text {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
}
.login-dropdown .form-group .label-text .required {
  color: #e60000;
}
.login-dropdown .form-group .field .input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 0.875rem;
  background-color: #f5f5f5;
  color: #333333;
  height: 2.35rem;
}
.login-dropdown .form-group .field .input:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #304ffe;
  box-shadow: 0 0 0 1px rgba(48, 79, 254, 0.2);
}
.login-dropdown .form-group .field .input:focus-visible {
  outline: 2px solid #304ffe;
  outline-offset: 1px;
}
.login-dropdown .auth-password-field {
  position: relative;
}
.login-dropdown .form-group .field.auth-password-field input {
  padding-right: 3rem;
}
.login-dropdown .auth-password-field .toggle-password {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245, 245, 245, 0.9);
  border: none;
  cursor: pointer;
  color: #8697a2;
  padding: 0 0.25rem;
  font-size: 1rem;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.2s ease;
}
.login-dropdown .auth-password-field .toggle-password:hover,
.login-dropdown .auth-password-field .toggle-password:focus {
  color: #304ffe;
}
.login-dropdown .auth-password-field .toggle-password:focus-visible {
  outline: 2px solid #304ffe;
  outline-offset: 2px;
}
.login-dropdown .forgot-password-wrap {
  text-align: left;
  margin-bottom: 0.75rem;
}
.login-dropdown .forgot-password-link {
  color: #304FFE;
  font-size: 0.75rem;
  text-decoration: underline;
}
.login-dropdown .primary-btn {
  display: block;
  width: 100%;
  background: #0524dd;
  border-radius: 6px;
  border: none;
  color: #ffffff;
  padding: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "SF-Pro-Display-Regular", "avenir-semibold", avenir, sans-serif;
  cursor: pointer;
  text-align: center;
  min-height: 2.5rem;
  height: auto;
}
.login-dropdown .primary-btn:focus-visible {
  outline: 2px solid #304ffe;
  outline-offset: 2px;
}
.login-dropdown-footer {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  color: #1a1a1a !important;
  margin-top: 0.85rem !important;
  margin-bottom: 0;
  text-align: center !important;
}
/* Plain text inherits .navLogin / .storyLink white; force readable copy on white panel */
.login-dropdown .login-dropdown-footer-prompt,
.navLogin.storyLink.predict-info .login-dropdown .login-dropdown-footer,
.navLogin.storyLink.predict-info .login-dropdown .login-dropdown-footer-prompt {
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
}
.login-dropdown-footer a,
.login-dropdown .login-dropdown-footer a.join-now {
  color: #304ffe !important;
  -webkit-text-fill-color: #304ffe !important;
  font-weight: 600;
  text-decoration: underline;
}
.login-dropdown-footer a:focus-visible {
  outline: 2px solid #304ffe;
  outline-offset: 2px;
  border-radius: 2px;
}
.login-dropdown .forgot-password-link:focus-visible {
  outline: 2px solid #304ffe;
  outline-offset: 2px;
  border-radius: 2px;
}

.login-dropdown .alert-error {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
}

.navBar .timePart .navBtnGrid .storyLink.navLogin {
  position: relative;
}

.error-main-description, .error-sub-description {
  color: #ABABAB;
  padding: 0 0.5rem 0 0;
}


@media screen and (max-width: 767.98px) {
  .navInfo.mobileLoginReg {
    overflow: visible;
  }
  .navInfo.mobileLoginReg .navLogin {
    position: relative;
    overflow: visible;
  }
  .login-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: auto;
    transform: none;
    width: min(350px, calc(100vw - 1rem));
    max-width: 360px;
  }
}

.auth-overlay.active {
  display: block;
}

.auth-register-overlay.active {
  display: block;
}

@media screen and (max-width: 767.98px) {
  .sort-label {
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .selected-value {
    font-size: 0.8rem;
  }
  .trigger-text-group {
    flex-wrap: nowrap;
    align-items: center;
  }
  .match-dropdown {
    max-width: 11rem;
  }
  .match-dropdown-container {
    width: 11rem;
  }
  .match-dropdown-trigger {
    justify-content: flex-end;
    padding: 0.75rem 0;
  }
  section {
    margin-bottom: 1.5rem;
  }
  .alert.alert-msg h4 {
    font-size: 0.8rem;
  }
  .alert-error {
    font-size: 0.8rem;
  }
  .navBar .navInfo.dkOnly {
    display: none;
  }
  .navBar .navBtnGrid {
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }
  .navBar .navBtnGrid .navLogin {
    margin-left: 0;
    padding: 0;
  }
  .navBar .navBtnGrid .navLogin p {
    margin: 0;
  }
  .navBar .navBtnGrid .navLogin > a {
    color: #1a1a1a;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
  }
  .navBar .navBtnGrid .navReg p {
    margin: 0;
  }
  .navBar .navgrid {
    padding: 0;
  }
  .navBar .menu .navCred {
    margin-top: 1rem;
  }
  .navBar .menu .navCred .lang-dropdown.mobile {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 5px;
  }
  .navBar .menu .navCred .lang-dropdown.mobile .flagLink {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
  }
  .navBar .menu .navCred .lang-dropdown.mobile .flagLink img {
    width: 1.8rem;
    height: auto;
    border-radius: 2px;
  }
  .navBar .menu .navCred .lang-dropdown.mobile .flagLink #langFlag {
    flex: 1;
    font-size: 0.9rem;
    color: #1a1a1a;
  }
  .navBar .menu .navCred .lang-dropdown.mobile .flagLink i.chevRon {
    font-size: 0.75rem;
    color: #8697A2;
  }
  .navbar-mobile-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navCred .nav-link.dropdown-toggle {
    margin: 0;
  }
  .menu.active {
    width: 50%;
  }
  .menu ul {
    font-size: 0.8rem;
  }
  .country-menu .country-item {
    gap: 0.8rem;
  }
  .country-menu .country-item .country-flag img {
    width: 22px;
  }
  .country-menu .country-item .country-dec {
    font-size: 0.8rem;
  }
  .tab-content-container .help-container {
    width: 100%;
  }
  .bg-banner {
    position: relative;
  }
  .bg-banner img {
    margin-top: 0 !important;
  }
  .bg-banner .arrow-down {
    display: block;
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation: jumpUpDown 0.6s infinite alternate;
    width: 2.5rem;
  }
  .odds-main-grid .handicap h4 {
    font-size: 0.9rem;
  }
  .card-header.main {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .card-header.main::-webkit-scrollbar {
    height: 5px;
  }
  .card-header.main::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .card-header.main::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 10px;
    background-clip: content-box;
    z-index: 20;
  }
  .card-header.main::-webkit-scrollbar-thumb:hover {
    background-color: #B2BEC3;
    overflow: overlay;
  }
  .owl-carousel {
    padding: 0 1rem;
  }
  .matchday-overlay .matchday-container {
    width: 95vw;
    max-height: 92vh;
  }
  .matchday-overlay .matchday-country-info .matchday-country-details .country-cell .country-item img {
    width: 3rem;
    height: 2rem;
  }
  .matchday-overlay .matchday-country-info .matchday-country-details .country-item img {
    width: 3rem;
    height: 2rem;
  }
  .match-icon-grid {
    grid-template-columns: 65% 5% 30%;
  }
  .match-icon-grid .vbar {
    width: 1.5px;
  }
  .match-icon-grid .match-icon-info.country-info img {
    width: 1.75rem;
  }
  .match-icon-grid .match-icon-info p.date {
    margin-bottom: 0.2rem;
  }
  .match-icon-grid .dateinfo h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
  .match-icon-grid .dateinfo {
    padding: 0;
  }
  .match-icon-grid .predict-info button {
    font-size: 0.7rem;
  }
  .section-matchday .match-info {
    margin-bottom: 0.7rem;
  }
  .section-result-detail .match-grid.result-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0.8rem;
  }
  .section-result-detail .match-grid.result-grid .match-country-item {
    gap: 0.5rem;
  }
  .section-result-detail .match-grid.result-grid .match-country-item img {
    width: 1.7rem;
    height: 1.7rem;
    margin: 0;
  }
  .section-result-detail .match-grid.result-grid .match-country-item h4 {
    font-size: 0.8rem;
  }
  .section-result-detail .match-grid.result-grid .match-score h4 {
    font-size: 0.8rem;
    height: 1.7rem;
    padding-left: 0;
    margin-top: 0rem;
    margin-right: 0rem;
    margin-left: 0;
  }
  .match-icon-grid.match-result .match-county::after {
    top: 9%;
    bottom: 25%;
    width: 1px;
  }
  .leaderboard-user-ranking .board-list {
    grid-template-columns: 15% 1fr 15% 15%;
    padding: 1rem;
  }
  .leaderboard-user-ranking .board-list .board-rank-value {
    font-size: 1.5rem;
  }
  .leaderboard-user-ranking .board-list .board-user-profile img {
    margin: 0;
  }
  .leaderboard-user-ranking .board-list .board-coins {
    padding-right: 0;
    display: block;
  }
  .leaderboard-user-ranking .board-list .board-coins .coins {
    display: none;
  }
  .leaderboard-user-ranking .board-list .board-coins .coin-amount {
    font-size: 1.5rem;
  }
  .leaderboard-user-ranking .board-list .board-reward {
    padding-right: 0;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 1.5rem;
  }
  .leaderboard-user-ranking .board-list .board-reward::after {
    display: none;
  }
  .leaderboard-user-ranking .board-list.trophy .board-reward:after {
    display: none;
  }
  .rank-grid {
    grid-template-columns: 15% 50% 16% 18%;
  }
  .betimg-mb {
    display: block;
    width: 100%;
  }
  .betimg-dk {
    display: none;
  }
  .bet-para p {
    font-size: 0.8rem;
  }
  .bet-para h4 {
    font-size: 1.5rem;
  }
  .tab-pane.tabcontent:nth-child(5) {
    margin-bottom: 2rem;
  }
  footer .footer-container {
    flex-direction: column;
  }
  footer .footer-container:nth-of-type(2) .footer-left picture {
    width: 100%;
  }
  footer .footer-container:nth-of-type(2) .footer-left picture img {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
  }
  footer .footer-container:nth-of-type(2) .footer-right .award img[alt=ecr-award] {
    display: none;
  }
  footer .footer-container:nth-of-type(2) .footer-right .award picture {
    width: 100%;
  }
  footer .footer-container:nth-of-type(2) .footer-right .award picture img {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
  }
  footer .footer-container.info {
    display: none;
  }
  footer .footer-container.info-mobile {
    display: block;
  }
  footer .footer-container.info-mobile #footer-accordion .card-header {
    padding: 0.75rem 0;
  }
  footer .footer-container.info-mobile #footer-accordion .btn-link {
    color: black;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    padding: 0.375rem 1.25rem;
  }
  footer .footer-container.info-mobile #footer-accordion .btn-link:focus {
    box-shadow: none;
  }
  footer .footer-container.info-mobile #footer-accordion .item-list {
    display: flex;
    gap: 1rem;
  }
  footer .footer-container.info-mobile #footer-accordion .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  footer .footer-container.info-mobile #footer-accordion .btn i {
    transition: transform 0.3s ease;
  }
  footer .footer-container.info-mobile #footer-accordion .btn:not(.collapsed) i {
    transform: rotate(180deg);
  }
  footer .footer-container.info-mobile #footer-accordion .btn.collapsed i {
    transform: rotate(0deg);
  }
  footer .footer-container.info-mobile .gaming-license {
    padding: 1rem 1.25rem;
  }
  footer .footer-container.info-mobile .gaming-license .list-item {
    color: #697882;
    margin-bottom: 1rem;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 538.98px) {
  .match-dropdown {
    max-width: 9rem;
  }
  .match-dropdown-container {
    width: 9rem;
  }
  .trigger-text-group {
    gap: 0.35rem;
  }
  .selected-value {
    font-size: 0.85rem;
  }
  .primary-btn {
    font-size: 0.8rem;
  }
  .secondary-btn {
    font-size: 0.8rem;
  }
  .menu-btn {
    padding: 0 0.5rem 0 0;
  }
  .menu-btn .btn-line {
    width: 20px;
  }
  .navLogin {
    margin: 0;
    margin-left: 0.5rem;
  }
  .menu.active {
    width: 60%;
  }
  .handicap h4 {
    font-size: 0.75rem;
  }
  .custom-dropdown .selected-value {
    font-size: 16px;
  }
  .match-icon-grid {
    grid-template-columns: 60% 5% 35%;
  }
  .match-icon-grid .predict-info button {
    font-size: 0.6rem;
    white-space: nowrap;
  }
  .with-bg h4 span {
    font-size: 0.9rem;
  }
  .section-result-detail .match-grid.result-grid .match-country-item img {
    width: 1.5rem;
    height: 1.5rem;
  }
  .section-result-detail .match-grid.result-grid .match-score h4 {
    width: auto;
    padding-left: 1.25rem;
  }
  .match-icon-grid.match-result {
    grid-template-columns: 75% 25%;
  }
  .match-icon-grid.match-result .match-county::after {
    right: 25%;
  }
  .leaderboard-user-ranking .board-list {
    grid-template-columns: 12% 1fr 18% 18%;
    padding: 1rem;
    gap: 0.65rem;
  }
  .leaderboard-user-ranking .board-list .board-rank-value {
    font-size: 1.35rem;
  }
  .leaderboard-user-ranking .board-list .board-user-profile img {
    margin: 0;
    width: 1.85rem;
  }
  .leaderboard-user-ranking .board-list .board-user-profile .username {
    padding-left: 0.5rem;
  }
  .leaderboard-user-ranking .board-list .board-coins {
    padding-right: 0;
    display: block;
  }
  .leaderboard-user-ranking .board-list .board-coins .coins {
    display: none;
  }
  .leaderboard-user-ranking .board-list .board-coins .coin-amount {
    font-size: 1.35rem;
  }
  .leaderboard-user-ranking .board-list .board-reward {
    padding-right: 0;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 1.35rem;
  }
  .leaderboard-user-ranking .board-list .board-reward::after {
    display: none;
  }
  .leaderboard-user-ranking .board-list.trophy .board-reward:after {
    display: none;
  }
  .rank-grid {
    grid-template-columns: 12% 1fr 20% 20%;
  }
  .rank-grid h5 {
    white-space: nowrap;
    font-size: 0.8rem;
  }
  .tab-pane {
    padding: 0;
  }
  footer .footer-container:nth-of-type(1) .footer-right {
    display: none;
  }
  footer .footer-container .footer-left .item-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  footer .footer-container .footer-left .item-wrapper .item-list {
    flex: 0 0 auto;
  }
  footer .footer-container .footer-left .item-wrapper .item-list:nth-of-type(2) {
    flex-wrap: wrap;
    text-align: center;
  }
  footer .footer-container .footer-left .item-wrapper .item-list:nth-of-type(3) {
    grid-column: 1/-1;
  }
  footer .footer-container .footer-left .item-wrapper .item-list:nth-of-type(3) .sponsor-item {
    display: flex;
    gap: 1rem;
  }
  footer .footer-container .footer-left .item-wrapper .item-list:nth-of-type(3) .sponsor-item img {
    width: 100%;
    height: 4.3rem;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
    min-width: 0;
    max-width: 100%;
  }
  footer .footer-container .footer-left .item-wrapper .item-list:nth-of-type(4) {
    display: block;
  }
  footer .footer-container .footer-left .item-wrapper .item-list:nth-of-type(4) .sponsor-list img {
    width: auto;
    height: 4.3rem;
  }
  .auth-overlay .auth-container {
    width: 95vw;
  }
  .auth-register-overlay .auth-container {
    width: 95vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .alert.alert-msg h4 {
    font-size: 0.8rem;
  }
  .alert-error {
    font-size: 0.8rem;
  }
  .card-header.main {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .card-header.main::-webkit-scrollbar {
    height: 5px;
  }
  .card-header.main::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .card-header.main::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 10px;
    background-clip: content-box;
    z-index: 20;
  }
  .card-header.main::-webkit-scrollbar-thumb:hover {
    background-color: #B2BEC3;
    overflow: overlay;
  }
  .matchday-overlay .matchday-container {
    width: 50%;
  }
  .predict-info button {
    font-size: 0.6rem;
  }
  .predict-info button.result-btn {
    font-size: 0.5rem;
  }
  .match-icon-grid {
    grid-template-columns: 55% 5% 40%;
  }
  .match-icon-grid .vbar {
    width: 1px;
  }
  .match-icon-grid .fulltime-info h3 {
    font-size: 1rem;
  }
  .fulltime-info h3 {
    font-size: 0.9rem;
  }
  .price-grid {
    grid-template-columns: 20% 35% 30% 15%;
    padding: 0;
  }
  .price-load {
    margin-bottom: 0.2rem;
  }
  .price-info img {
    width: 35px;
  }
  .price-info img.top-3 {
    width: 40px;
  }
  .leaderboard-user-ranking .board-list {
    padding: 1rem;
    grid-template-columns: 4rem 1fr 7rem 7rem;
  }
  .leaderboard-user-ranking .board-list .board-reward {
    padding-right: 0;
  }
  .leaderboard-user-ranking .board-list .board-coins .coins {
    display: none;
  }
  .leaderboard-user-ranking .board-list.trophy .board-reward:after {
    content: "";
    display: none;
  }
  .rank-grid {
    grid-template-columns: 15% 1fr 17% 20%;
  }
  .rank-grid h5[data-i18n=username] {
    margin-right: 4rem;
  }
  footer p.title-regular {
    margin-bottom: 1rem;
  }
  footer .footer-container {
    flex-direction: column;
  }
}
@media screen and (min-width: 992px) and (max-width: 1279.98px) {
  .odds-info h4 span {
    font-size: 1rem;
  }
  .price-grid {
    grid-template-columns: 23% 35% 22% 20%;
  }
  .predict-info button.result-btn {
    font-size: 0.7rem;
  }
  footer .footer-container {
    gap: 1rem;
  }
  footer .footer-container:nth-of-type(1) {
    gap: 0;
  }
  footer .footer-container:nth-of-type(1) .footer-left {
    flex: unset;
  }
  footer .footer-container:nth-of-type(1) .footer-left .item-wrapper {
    gap: 1rem;
  }
  footer .footer-container:nth-of-type(1) .footer-right {
    flex: unset;
  }
  footer .footer-container:nth-of-type(2) {
    justify-content: unset;
    gap: 1rem;
  }
  footer .footer-container:nth-of-type(2) .footer-left img {
    width: 15rem;
  }
  footer .footer-container:nth-of-type(2) .footer-right .award img {
    width: 9rem;
  }
}
@media screen and (min-width: 608px) and (max-width: 767.98px) {
  .matchday-overlay .matchday-container {
    width: 70%;
  }
}
@media screen and (min-width: 1422px) and (max-width: 1599.98px) {
  .matchday-overlay .matchday-container {
    width: 30%;
    width: 32%;
    max-width: 32%;
  }
}
@media screen and (min-width: 1600px) {
  .matchday-overlay .matchday-container {
    width: 27%;
    width: 27%;
    max-width: 27%;
  }
}
/* GENERAL STYLES */
@media screen and (max-width: 767.98px) {
  .container {
    max-width: 720px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "SF-Pro-Display-bold", sans-serif;
  margin: 0;
}

button {
  font-family: "SF-Pro-Display-Light", sans-serif;
}
button:focus, button:hover, button:active {
  box-shadow: none;
  outline: none;
}

.modal .modal-dialog .modal-content {
  border-radius: 0.75rem;
  border: none;
}
.modal .modal-dialog .modal-content .modal-header {
  display: flex;
  justify-content: start;
  align-items: center;
  background-color: #0524dd;
  color: #ffffff;
  padding: 1rem;
  border-radius: 0.75rem 0.75rem 0 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.modal .modal-dialog .modal-content .modal-header h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #ffffff;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}
.modal .modal-dialog .modal-content .modal-header button {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  background-color: #ffffff;
  border-radius: 50px;
  color: #0524dd;
}
@media screen and (min-width: 576px) {
  .modal#loginProceed .modal-dialog,
  .modal#incompleteSection .modal-dialog,
  .modal#insufficientTicket .modal-dialog,
  .modal#errorMessage .modal-dialog {
    max-width: 678px;
  }
}
.modal#confirmPredictionMini .modal-body .selected-group {
  background-color: #0524dd;
  border-radius: 50px;
  color: #ffffff;
  padding: 10px 25px;
}
@media screen and (max-width: 575px) {
  .modal#confirmPredictionMini .modal-body .selected-group {
    justify-content: center !important;
    display: flex;
  }
}
.modal#confirmPredictionMini .modal-body .selected-group .country-flag {
  margin: 8px;
  border-radius: 8px;
  border: 1px solid #ababab;
}
.modal#confirmPredictionMini .modal-body .selected-group .country-flag img {
  border-radius: 8px;
}
@media screen and (max-width: 575px) {
  .modal#confirmPredictionMini .modal-body .selected-group .country-flag img {
    height: 30px;
  }
}
@media screen and (max-width: 767.98px) {
  .modal#confirmPredictionMini .modal-body h5 {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .modal#confirmPredictionMini .modal-body h5 {
    font-size: 12px;
    text-align: center;
  }
}
.modal#confirmPredictionMini .modal-body .selected-countries-name {
  padding: 5px 20px;
  width: 100%;
  display: flex;
  line-height: 14px;
}
@media screen and (max-width: 575px) {
  .modal#confirmPredictionMini .modal-body .selected-countries-name {
    font-size: 12px;
  }
}
.modal#confirmPredictionMini .modal-body a.cta-primary {
  border-radius: 10px;
}
.modal#confirmPredictionMini .modal-body .available-tickets {
  font-size: 14px;
  color: #666666;
}
@media screen and (max-width: 575px) {
  .modal#confirmPredictionMini .modal-body .available-tickets {
    font-size: 12px;
  }
}
.modal#confirmPredictionMain .modal-body .round-title {
  font-size: 28px;
  color: #0524dd;
  font-family: "SF-Pro-Display-Bold", sans-serif;
}
.modal#confirmPredictionMain .modal-body .message.confirm-submit-message {
  padding-bottom: 30px;
}
@media screen and (max-width: 575px) {
  .modal#confirmPredictionMain .modal-body .message {
    font-size: 12px;
  }
}
.modal#confirmPredictionMain .modal-body .match-result {
  background: #EDEDED;
  border-radius: 8px;
}
@media screen and (max-width: 575px) {
  .modal#confirmPredictionMain .modal-body .match-result {
    padding: 0.5rem 0 !important;
  }
}
.modal#confirmPredictionMain .modal-body .match-result h5,
.modal#confirmPredictionMain .modal-body .match-result h6 {
  color: #666666;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}
.modal#confirmPredictionMain .modal-body .match-result h5 {
  font-size: 14px;
}
.modal#confirmPredictionMain .modal-body .match-result h6 {
  font-size: 12px;
}
.modal#confirmPredictionMain .modal-body .match-result h6 .confirm-date-weekday {
  margin-left: 0.5em;
}
.modal#confirmPredictionMain .modal-body .match-result .confirm-match-teams {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  justify-content: center;
  align-items: start;
  column-gap: 1rem;
  --confirm-flag-row-height: 50px;
}
@media screen and (max-width: 575px) {
  .modal#confirmPredictionMain .modal-body .match-result .confirm-match-teams {
    --confirm-flag-row-height: 40px;
  }
}
@media screen and (max-width: 420px) {
  .modal#confirmPredictionMain .modal-body .match-result .confirm-match-teams {
    --confirm-flag-row-height: 30px;
  }
}
.modal#confirmPredictionMain .modal-body .match-result .home-away {
  position: relative;
  align-self: start;
  width: auto;
  min-width: 0;
  margin: 0 !important;
  padding-bottom: 3.25em;
}
@media screen and (max-width: 420px) {
  .modal#confirmPredictionMain .modal-body .match-result .home-away {
    padding-bottom: 2.75em;
  }
}
.modal#confirmPredictionMain .modal-body .match-result .home-away .country-flag {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: auto;
  flex-shrink: 0;
  min-height: var(--confirm-flag-row-height);
}
.modal#confirmPredictionMain .modal-body .match-result .home-away .confirm-team-labels {
  position: absolute;
  top: var(--confirm-flag-row-height);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal#confirmPredictionMain .modal-body .match-result .home-away span.t-home, .modal#confirmPredictionMain .modal-body .match-result .home-away span.t-away {
  font-size: 12px;
  color: #ababab;
  text-align: center;
  flex-shrink: 0;
}
.modal#confirmPredictionMain .modal-body .match-result .home-away .country-name {
  text-align: center !important;
  width: 100%;
  max-width: 120px;
  min-width: 0;
  padding: 5px 0 0 0;
  font-family: "SF-Pro-Display-Bold", sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
  line-height: 1.2;
}
@media screen and (max-width: 575px) {
  .modal#confirmPredictionMain .modal-body .match-result .home-away .country-name {
    font-size: 14px;
    font-family: "SF-Pro-Display-Medium", sans-serif;
    padding: 0;
  }
}
@media screen and (max-width: 420px) {
  .modal#confirmPredictionMain .modal-body .match-result .home-away .country-name {
    line-height: 14px;
    font-size: 12px;
    padding: 5px 0 0 0;
  }
}
.modal#confirmPredictionMain .modal-body .match-result .home-away .country-flag img {
  border: 1px solid #CBCBCB;
  border-radius: 6px;
  display: block;
}
@media screen and (max-width: 575px) {
  .modal#confirmPredictionMain .modal-body .match-result .home-away .country-flag img {
    height: 40px;
  }
}
@media screen and (max-width: 420px) {
  .modal#confirmPredictionMain .modal-body .match-result .home-away .country-flag img {
    height: 30px;
  }
}
.modal#confirmPredictionMain .modal-body .match-result .final-result {
  border: 1px solid #CBCBCB;
  background: #ffffff;
  height: 36px;
  width: 26px;
  border-radius: 5px;
  align-self: start;
  margin-top: calc((var(--confirm-flag-row-height) - 36px) / 2);
}
.modal#confirmPredictionMain .modal-body .match-result .final-result span {
  font-size: 14px;
}
.modal#confirmPredictionMain .modal-body .match-result .match-time {
  font-family: "SF-Pro-Display-Light", sans-serif;
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--confirm-flag-row-height);
  padding: 0 8px;
  margin-top: 0;
}
.modal#confirmPredictionMain .modal-body .match-result .match-time label {
  font-size: 22px;
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .modal#confirmPredictionMain .modal-body .match-result .match-time label {
    font-size: 18px;
  }
}
.modal#confirmPredictionMain .modal-body .cta-square-secondary {
  background: #ff8a00;
  border: none;
}
.modal#confirmPredictionMain .modal-body .available-tickets {
  color: #666666;
  font-size: 12px;
}
.modal#confirmPredictionMain .modal-body .login-content h6 {
  color: #ababab;
  margin: 0;
  font-size: 16px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}
.modal#confirmPredictionMain .modal-body .login-content span {
  color: #ababab;
  font-size: 14px;
}
.modal#confirmPredictionMain .modal-body .login-content a {
  color: #0524dd;
  font-size: 14px;
}

.cta-primary {
  border-radius: 25px;
  color: #ffffff;
  background-color: #ff8a00;
  border: 1px solid #ff8a00;
  outline: none;
  font-weight: 300;
  font-size: 14px;
  padding: 8px;
}
.cta-primary:hover {
  filter: grayscale(1);
}
.cta-primary:disabled {
  background-color: #CBCBCB;
  opacity: 1;
  border: 1px solid #CBCBCB;
}
.cta-secondary {
  border-radius: 25px;
  color: #ffffff;
  border: 1px solid transparent;
  background: linear-gradient(#1d3793, #1d3793) padding-box, linear-gradient(180deg, #00c2f3, #0362e6) border-box; /* border gradient */
  border-radius: 20px;
  outline: none;
  font-weight: 300;
  font-size: 14px;
  padding: 8px;
}
.cta-secondary:hover {
  filter: grayscale(1);
}
.cta-line-primary {
  border-radius: 5px;
  color: #005AE2;
  background-color: #ffffff;
  border: 1px solid #005AE2;
  outline: none;
  font-weight: 300;
  font-size: 14px;
  padding: 8px;
}
.cta-line-primary:hover {
  filter: grayscale(1);
}
.cta-line-primary:disabled {
  background-color: #CBCBCB;
  opacity: 1;
  border: 1px solid #CBCBCB;
}
.cta-square-primary {
  border-radius: 5px;
  color: #ffffff;
  background-color: #005AE2;
  border: 1px solid #005AE2;
  outline: none;
  font-weight: 300;
  font-size: 14px;
  padding: 8px;
}
.cta-square-primary:hover {
  filter: grayscale(1);
}
.cta-square-primary:disabled {
  background-color: #CBCBCB;
  opacity: 1;
  border: 1px solid #CBCBCB;
}

@media screen and (max-width: 575px) {
  .bg-banner {
    padding: 0 8px;
  }
}
.bg-banner img {
  width: 100%;
  height: auto;
}
.bg-banner .arrow-down {
  display: none;
}

.btn:focus {
  box-shadow: none;
}

.accordion {
  color: #666666;
}
@media screen and (max-width: 575px) {
  .accordion {
    font-size: 14px;
  }
}
@media screen and (max-width: 420px) {
  .accordion {
    font-size: 12px;
  }
}
.accordion ol {
  font-family: "SF-Pro-Display-Semibold", sans-serif;
}
.accordion ol li::marker {
  padding-left: 1px;
}
.accordion ul {
  list-style: disc;
}
.accordion ul li {
  font-family: "SF-Pro-Display-Light", sans-serif;
}
.accordion label {
  font-family: "SF-Pro-Display-Bold", sans-serif;
}
@media screen and (max-width: 575px) {
  .accordion label {
    font-size: 16px;
  }
}
@media screen and (max-width: 420px) {
  .accordion label {
    font-size: 14px;
  }
}
.accordion .card {
  border: none;
  background-color: transparent;
}
.accordion .card .card-header {
  outline: none;
  border: none;
  border-radius: 5px;
  background-color: #EDEDED;
}
.accordion .card .card-header .arrow-icon {
  transition: transform 0.3s ease;
}
.accordion .card .card-header [aria-expanded=true] .arrow-icon {
  transform: rotate(180deg);
}
.accordion .card .card-header button {
  font-size: 18px;
  font-family: "SF-Pro-Display-Bold", sans-serif;
  color: #666666;
  outline: none;
  border: none;
}
.accordion .card .card-header button:hover, .accordion .card .card-header button:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.accordion table {
  border: 1px solid #666666;
  text-align: center;
  margin-left: -20px;
}
.accordion table td, .accordion table th {
  border: 1px solid #666666;
  color: #666666 !important;
  font-weight: 300 !important;
}
.accordion table thead th, .accordion table thead td {
  font-family: "SF-Pro-Display-Medium", sans-serif;
}
.accordion table tbody th, .accordion table tbody td {
  font-family: "SF-Pro-Display-Light", sans-serif;
}

.card {
  background: transparent;
}
@media screen and (max-width: 575px) {
  .card .card-header {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
    scrollbar-width: none; /* hide scrollbar Firefox */
    -ms-overflow-style: none;
  }
}
.card .card-header.results-tab, .card .card-header.my-record-tab, .card .card-header.winners-tab {
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .card .card-header.results-tab .card-header-tabs, .card .card-header.my-record-tab .card-header-tabs, .card .card-header.winners-tab .card-header-tabs {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .card .card-header.results-tab .card-header-tabs .nav-item, .card .card-header.my-record-tab .card-header-tabs .nav-item, .card .card-header.winners-tab .card-header-tabs .nav-item {
    width: 50%;
  }
}
.card .card-header.main {
  background-color: #ffffff;
  border: none;
}
.card .card-header.main .card-header-tabs {
  gap: 1rem;
}
.card .card-header.main .card-header-tabs .nav-item {
  white-space: nowrap;
  flex: 0 1 auto;
}
.card .card-header.main .card-header-tabs .nav-item .nav-link {
  color: #ababab;
  width: 100%;
  padding: 0.8rem;
  font-weight: 300;
  border-bottom: 2px solid transparent;
}
.card .card-header.main .card-header-tabs .nav-item .nav-link:hover {
  border-bottom: 2px solid #ff8a00;
  cursor: pointer;
}
.card .card-header.main .card-header-tabs .nav-item .nav-link.active {
  color: #0524dd;
  border-bottom: 2px solid #ff8a00;
}
.card .card-header.main .card-header-tabs .nav-item .nav-link.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.card .card-header.main .card-header-tabs .nav-item .nav-link.disabled:hover {
  border-bottom-color: transparent;
}
.card .card-header.main-tab, .card .card-header.results-tab, .card .card-header.my-record-tab, .card .card-header.winners-tab {
  background-color: #EDEDED;
  border: none;
  border-radius: 50px;
  margin-left: 0;
}
@media screen and (max-width: 767.98px) {
  .card .card-header.main-tab, .card .card-header.results-tab, .card .card-header.my-record-tab, .card .card-header.winners-tab {
    width: auto;
  }
}
@media screen and (max-width: 575px) {
  .card .card-header.main-tab, .card .card-header.results-tab, .card .card-header.my-record-tab, .card .card-header.winners-tab {
    width: 100%;
  }
}
.card .card-header.main-tab .card-header-tabs, .card .card-header.results-tab .card-header-tabs, .card .card-header.my-record-tab .card-header-tabs, .card .card-header.winners-tab .card-header-tabs {
  padding: 3px;
}
.card .card-header.main-tab .card-header-tabs .nav-item, .card .card-header.results-tab .card-header-tabs .nav-item, .card .card-header.my-record-tab .card-header-tabs .nav-item, .card .card-header.winners-tab .card-header-tabs .nav-item {
  white-space: nowrap;
  flex: 0 1 auto;
}
.card .card-header.main-tab .card-header-tabs .nav-item .nav-link, .card .card-header.results-tab .card-header-tabs .nav-item .nav-link, .card .card-header.my-record-tab .card-header-tabs .nav-item .nav-link, .card .card-header.winners-tab .card-header-tabs .nav-item .nav-link {
  color: #252525;
  width: 100%;
  padding: 10px 25px;
  font-weight: 300;
  border: none;
  margin: 0;
}
.card .card-header.main-tab .card-header-tabs .nav-item .nav-link:hover, .card .card-header.results-tab .card-header-tabs .nav-item .nav-link:hover, .card .card-header.my-record-tab .card-header-tabs .nav-item .nav-link:hover, .card .card-header.winners-tab .card-header-tabs .nav-item .nav-link:hover {
  color: #005AE2;
  border-radius: 50px;
  border: none;
}
.card .card-header.main-tab .card-header-tabs .nav-item .nav-link.active, .card .card-header.results-tab .card-header-tabs .nav-item .nav-link.active, .card .card-header.my-record-tab .card-header-tabs .nav-item .nav-link.active, .card .card-header.winners-tab .card-header-tabs .nav-item .nav-link.active {
  color: #ffffff;
  background: #005AE2;
  border-radius: 50px;
  border: none;
}
.card .card-header.main-tab {
  width: auto !important;
}
@media screen and (max-width: 767.98px) {
  .card .card-header.main-tab {
    width: 100% !important;
  }
}
@media screen and (max-width: 767.98px) {
  .card .card-header.main-tab {
    overflow: hidden;
  }
  .card .card-header.main-tab .card-header-tabs {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: -10px;
  }
  .card .card-header.main-tab .card-header-tabs::-webkit-scrollbar {
    display: none;
  }
}

.title-message {
  line-height: 20px;
}
.title-message label {
  font-family: "SF-Pro-Display-Bold", sans-serif;
  font-size: 20px;
}
@media screen and (max-width: 575px) {
  .title-message label {
    font-size: 16px;
  }
}
@media screen and (max-width: 420px) {
  .title-message label {
    font-size: 14px;
  }
}
.title-message span {
  color: #ababab;
  font-family: "SF-Pro-Display-Light", sans-serif;
  font-size: 14px;
}
.title-message span.message {
  color: #666666;
}
@media screen and (max-width: 420px) {
  .title-message span.message {
    font-size: 12px;
  }
}

.table-responsive table {
  color: #666666;
  font-family: "SF-Pro-Display-Light", sans-serif;
}
@media screen and (max-width: 575px) {
  .table-responsive table {
    font-size: 14px;
  }
}
.table-responsive table thead tr {
  border-top: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}
.table-responsive table thead tr th {
  background: #EDF1F5;
  color: #252525;
}
.table-responsive table thead tr th:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.table-responsive table thead tr th:last-of-type {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.table-responsive table tbody tr {
  border-top: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
}
.table-responsive table tbody tr td {
  background: #f6f6f6;
  border: none;
}
.table-responsive table tbody tr td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.table-responsive table tbody tr td:last-of-type {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.table-responsive table tbody tr.no-winners td, .table-responsive table tbody tr.no-record td {
  text-align: center;
  text-transform: unset;
  padding: 100px 0;
  font-family: "SF-Pro-Display-Light", sans-serif;
  font-size: 16px;
  color: #CBCBCB;
}

.table-pagination {
  width: 100%;
  overflow-x: hidden;
}
.table-pagination nav {
  max-width: 100%;
  min-width: 0;
}
.table-pagination .pagination {
  margin: 25px 0;
  max-width: 100%;
  min-width: 0;
  flex-wrap: wrap;
  row-gap: 8px;
}
.table-pagination .pagination .page-item {
  color: #252525;
}
.table-pagination .pagination .page-item .page-link {
  border: none;
  width: 35px;
  height: 35px;
  padding: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  color: #252525;
  background: transparent;
}
.table-pagination .pagination .page-item .page-link i {
  font-size: 20px;
}
.table-pagination .pagination .page-item .page-link:hover {
  color: #005AE2;
  background: transparent;
}
.table-pagination .pagination .page-item .page-link:focus {
  box-shadow: none;
}
.table-pagination .pagination .page-item.previous .page-link, .table-pagination .pagination .page-item.next .page-link {
  width: auto;
  padding: 0 10px;
}
.table-pagination .pagination .page-item.previous {
  margin-right: 8px;
}
.table-pagination .pagination .page-item.next {
  margin-left: 8px;
}
.table-pagination .pagination .page-item.disabled {
  color: #666666;
}
.table-pagination .pagination .page-item.disabled .page-link {
  opacity: 0.5;
}
.table-pagination .pagination .page-item.active .page-link {
  background: #005AE2;
  color: #ffffff;
  border-radius: 50px;
}

select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../images/icons/dropdown.png");
  background-repeat: no-repeat;
  background-position: right 12px center; /* ← change position here */
  background-size: 12px;
  padding-right: 32px;
}

.page-content {
  position: relative;
  overflow: hidden;
}
.page-content .fifa-2026 {
  height: 400px;
  width: 200px;
  bottom: -25px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 575px) {
  .page-content .fifa-2026 {
    height: 280px;
    width: 140px;
  }
}

/* Nav Desktop & Mobile */
/* Navigation Bar Desktop */
.navBar {
  background-color: #ffffff;
  padding: 15px 0;
}
@media screen and (max-width: 767.98px) {
  .navBar {
    padding: 5px 0 !important;
  }
}
.navBar .timePart.logged-in .navDetails {
  display: flex;
  gap: 8px;
  text-align: left;
  align-items: center;
  margin-right: 5px;
}
.navBar .timePart.logged-in .navDetails .user-img img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  padding: 0;
}
.navBar .timePart.logged-in .navDetails .user-details {
  min-width: 5rem;
  line-height: 18px;
}
.navBar .timePart.logged-in .navDetails .user-details .user-name {
  color: #0524dd;
  font-family: "SF-Pro-Display-Medium", sans-serif;
  display: inline-block;
  max-width: 10ch;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.navBar .timePart.logged-in .navDetails .user-details .user-ticket {
  color: #252525;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  line-height: 14px;
}
.navBar .timePart.logged-in .navBtnGrid .storyLink.navLogout a {
  background-color: #FF2323;
}
.navBar .timePart .forgotPass {
  font-size: 12px;
}
.navBar .timePart .forgotPass .forgot-password-btn {
  color: #00c2f3;
  text-decoration-line: underline;
}
.navBar .timePart .navBtnGrid {
  gap: 0;
}
.navBar .timePart .navBtnGrid .storyLink {
  padding: 0 5px;
  margin: 0;
}
.navBar .timePart .navBtnGrid .storyLink > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "SF-Pro-Display-Light", sans-serif;
  font-size: 14px;
  color: #ffffff;
  width: 120px;
  height: 35px;
}
.navBar .timePart .navBtnGrid .storyLink > a:hover {
  filter: grayscale(1);
}
.navBar .timePart .navBtnGrid .storyLink.navLogin > a {
  background-color: #0524dd;
}
.navBar .timePart .navBtnGrid .storyLink.navReg > a {
  background-color: #ff8a00;
}
.navBar .timePart .navCred {
  width: auto;
}
.navBar .timePart .navCred .lang-dropdown {
  background-color: #EDEDED;
  border-radius: 23px;
  padding: 5px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.navBar .timePart .navCred .lang-dropdown img {
  margin-right: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767.98px) {
  .navBar .timePart .navCred .lang-dropdown img {
    width: 100% !important;
  }
}

/* Navigation Bar Mobile */
@media screen and (max-width: 991.98px) {
  .navbar-mobile-grid {
    padding: 8px;
  }
}
@media screen and (max-width: 767.98px) {
  .navbar-mobile-grid {
    display: flex !important;
  }
}
.navbar-mobile-grid .menu-btn-wrapper {
  left: 15px;
  top: 10px;
  margin: 0;
  padding: 0;
}
.navbar-mobile-grid .slidemenu-info .logo {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767.98px) {
  .navbar-mobile-grid .slidemenu-info .logo {
    height: 36px;
  }
}
@media screen and (max-width: 575px) {
  .navbar-mobile-grid .slidemenu-info .logo {
    height: 32px;
  }
}
@media screen and (max-width: 575px) {
  .navbar-mobile-grid .slidemenu-info .logo {
    height: 28px;
    margin: 8px 0;
  }
}
@media screen and (max-width: 575px) {
  .navbar-mobile-grid .navbar-mobile-grid-left {
    border-bottom: 1px solid #EDEDED;
    padding-bottom: 8px !important;
  }
}
@media screen and (max-width: 360px) {
  .navbar-mobile-grid .navbar-mobile-grid-left {
    justify-content: center !important;
    display: flex;
  }
}
@media screen and (max-width: 767.98px) {
  .navbar-mobile-grid .navbar-mobile-grid-left .navCred {
    width: auto;
  }
}
@media screen and (max-width: 575px) {
  .navbar-mobile-grid .navbar-mobile-grid-left .navCred {
    margin: 0 5px;
  }
}
.navbar-mobile-grid .navbar-mobile-grid-left .navCred img {
  width: 100% !important;
}
@media screen and (max-width: 575px) {
  .navbar-mobile-grid .navbar-mobile-grid-left .navCred img {
    width: 26px;
    height: 26px;
  }
}
.navbar-mobile-grid .navbar-mobile-grid-left .navDetails {
  display: flex;
  gap: 8px;
  text-align: left;
  align-items: center;
  margin-right: 10px;
}
.navbar-mobile-grid .navbar-mobile-grid-left .navDetails .user-img img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  padding: 0;
}
@media screen and (max-width: 575px) {
  .navbar-mobile-grid .navbar-mobile-grid-left .navDetails .user-img img {
    width: 2rem;
    height: 2rem;
  }
}
@media screen and (max-width: 420px) {
  .navbar-mobile-grid .navbar-mobile-grid-left .navDetails .user-img img {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.navbar-mobile-grid .navbar-mobile-grid-left .navDetails .user-details {
  line-height: 18px;
}
@media screen and (max-width: 575px) {
  .navbar-mobile-grid .navbar-mobile-grid-left .navDetails .user-details {
    line-height: 14px;
  }
}
.navbar-mobile-grid .navbar-mobile-grid-left .navDetails .user-details .user-name {
  color: #0524dd;
  font-family: "SF-Pro-Display-Medium", sans-serif;
  display: inline-block;
  max-width: 10ch;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 575px) {
  .navbar-mobile-grid .navbar-mobile-grid-left .navDetails .user-details .user-name {
    font-size: 14px;
  }
}
@media screen and (max-width: 420px) {
  .navbar-mobile-grid .navbar-mobile-grid-left .navDetails .user-details .user-name {
    font-size: 12px;
  }
}
.navbar-mobile-grid .navbar-mobile-grid-left .navDetails .user-details .user-ticket {
  color: #252525;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  line-height: 14px;
}
@media screen and (max-width: 767.98px) {
  .navbar-mobile-grid .navbar-mobile-grid-left .navDetails .user-details .user-ticket {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .navbar-mobile-grid .navbar-mobile-grid-left .navDetails .user-details .user-ticket {
    font-size: 14px;
  }
}
@media screen and (max-width: 420px) {
  .navbar-mobile-grid .navbar-mobile-grid-left .navDetails .user-details .user-ticket {
    font-size: 12px;
  }
}
.navbar-mobile-grid .navbar-mobile-grid-left .storyLink.navLogout a {
  background-color: #FF2323;
}
@media screen and (max-width: 767.98px) {
  .navbar-mobile-grid .navbar-mobile-grid-left .storyLink.navLogout a {
    font-size: 14px;
  }
}
@media screen and (max-width: 420px) {
  .navbar-mobile-grid .navbar-mobile-grid-left .storyLink.navLogout a {
    font-size: 12px;
  }
}

.navInfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .navInfo {
    display: none !important;
  }
}
@media screen and (max-width: 575px) {
  .navInfo {
    padding: 0 8px;
  }
}
@media screen and (max-width: 767.98px) {
  .navInfo.mobileLoginReg:not(.logged-in) {
    display: flex !important;
    width: 96%;
    margin: 0 auto;
  }
}
.navInfo img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 575px) {
  .navInfo .navLogin,
  .navInfo .navReg {
    background: #0524dd;
    color: #ffffff;
    margin: 0;
    justify-content: center;
    display: flex;
    height: 40px;
    align-items: center;
  }
}
@media screen and (max-width: 767.98px) {
  .navInfo .navLogin > a,
  .navInfo .navReg > a {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .navInfo .navLogin > a,
  .navInfo .navReg > a {
    padding: 0;
    font-size: 14px;
    font-family: "SF-Pro-Display-Regular", sans-serif;
  }
}
@media screen and (max-width: 767.98px) {
  .navInfo .navLogin {
    background: #0524dd;
    border-radius: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    color: #ffffff;
    margin: 0;
    justify-content: center;
    display: flex;
    height: 40px;
    align-items: center;
  }
}
@media screen and (max-width: 767.98px) {
  .navInfo .navReg {
    background: #FF2323;
    border-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #ffffff;
    margin: 0;
    justify-content: center;
    display: flex;
    height: 40px;
    align-items: center;
  }
}

/* Reuse for Mini Event, Main Event, Results & Winners */
.p-session-jackpot {
  color: #ffffff;
}
.p-session-jackpot .session-content {
  background-color: #005AE2;
}
.p-session-jackpot .session-content .icon {
  width: 60px;
}
@media screen and (max-width: 575px) {
  .p-session-jackpot .session-content .icon {
    width: 55px;
  }
}
.p-session-jackpot .session-content .icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 575px) {
  .p-session-jackpot .session-content .icon img {
    height: 45px;
  }
}
@media screen and (max-width: 420px) {
  .p-session-jackpot .session-content .icon img {
    height: 38px;
  }
}
.p-session-jackpot .session-content .time {
  width: calc(100% - 60px);
}
.p-session-jackpot .session-content .time label {
  font-size: 20px;
  font-family: "SF-Pro-Display-Semibold", sans-serif;
  margin: 0;
}
@media screen and (max-width: 575px) {
  .p-session-jackpot .session-content .time label {
    font-size: 14px;
  }
}
@media screen and (max-width: 420px) {
  .p-session-jackpot .session-content .time label {
    font-size: 12px;
  }
}
.p-session-jackpot .session-content .time span {
  font-size: 16px;
  font-family: "SF-Pro-Display-Light", sans-serif;
}
@media screen and (max-width: 575px) {
  .p-session-jackpot .session-content .time span {
    font-size: 12px;
  }
}
.p-session-jackpot .session-content .session-timer span {
  font-size: 24px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
}
@media screen and (max-width: 575px) {
  .p-session-jackpot .session-content .session-timer span {
    font-size: 16px;
  }
}
@media screen and (max-width: 420px) {
  .p-session-jackpot .session-content .session-timer span {
    font-size: 14px;
  }
}
.p-session-jackpot .session-content .session-timer span.title {
  font-size: 14px;
  text-transform: lowercase;
  font-family: "SF-Pro-Display-Light", sans-serif;
}
@media screen and (max-width: 575px) {
  .p-session-jackpot .session-content .session-timer span.title {
    font-size: 10px;
  }
}
.p-session-jackpot .jackpot-content img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1599.98px) {
  .p-session-jackpot .jackpot-content img {
    height: 100px;
  }
}
@media screen and (max-width: 1441.98px) {
  .p-session-jackpot .jackpot-content img {
    height: 90px;
  }
}
@media screen and (max-width: 1023.98px) {
  .p-session-jackpot .jackpot-content img {
    height: 80px;
  }
}
@media screen and (max-width: 991.98px) {
  .p-session-jackpot .jackpot-content img {
    height: 70px;
  }
}
@media screen and (max-width: 767.98px) {
  .p-session-jackpot .jackpot-content img {
    height: 60px;
  }
}
@media screen and (max-width: 575px) {
  .p-session-jackpot .jackpot-content img {
    height: 60px;
  }
}

/* PREDICTION PAGE */
@media screen and (max-width: 575px) {
  .p-banner {
    padding: 0 8px;
  }
}
.p-banner .banner {
  max-height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-banner .mascot .clutch {
  position: absolute;
  top: -5px;
  left: 21%;
  transform: scale(1.1);
  max-height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 575px) {
  .p-banner .mascot .clutch {
    left: 10%;
    width: 10%;
  }
}
.p-banner .mascot .maple {
  position: absolute;
  bottom: 0;
  right: 21%;
  max-height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 575px) {
  .p-banner .mascot .maple {
    right: 10%;
    width: 10%;
  }
}

/* Overview */
@media screen and (max-width: 767.98px) {
  .p-overview > div {
    overflow: auto !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    display: flex !important;
  }
}
.p-overview .card {
  color: #ffffff;
  background: #005AE2;
  background: linear-gradient(180deg, #005ae2 0%, #213b98 100%);
  border-radius: 20px;
  margin: 8px;
}
@media screen and (max-width: 767.98px) {
  .p-overview .card {
    min-width: 360px;
  }
}
@media screen and (max-width: 575px) {
  .p-overview .card {
    min-width: 260px;
  }
}
.p-overview .card .mascot .zayu {
  position: absolute;
  bottom: -15px;
  left: -33%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
}
@media screen and (max-width: 1023.98px) {
  .p-overview .card .mascot .zayu {
    left: -40%;
  }
}
@media screen and (max-width: 767.98px) {
  .p-overview .card .mascot .zayu {
    display: none;
  }
}
.p-overview .card .mascot .clutch {
  position: absolute;
  bottom: -15px;
  right: -33%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
}
@media screen and (max-width: 1023.98px) {
  .p-overview .card .mascot .clutch {
    right: -40%;
  }
}
@media screen and (max-width: 767.98px) {
  .p-overview .card .mascot .clutch {
    display: none;
  }
}
.p-overview .card > .event-details {
  flex-direction: column;
  display: flex;
}
.p-overview .card > .event-details::before {
  content: "";
  position: absolute;
  background-image: url("../images/content/number-white-d.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-position: top;
  opacity: 0.05;
  background-size: contain;
  top: 0;
  right: 0;
  width: 96%;
  height: 100%;
}
.p-overview .card > .event-details .o-title {
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 575px) {
  .p-overview .card > .event-details .o-title {
    font-size: 16px;
  }
}
.p-overview .card > .event-details .o-date {
  font-size: 14px;
  font-weight: 300;
}
@media screen and (max-width: 575px) {
  .p-overview .card > .event-details .o-date {
    font-size: 12px;
  }
}
.p-overview .card > .event-details .o-status {
  border-radius: 50px;
}
.p-overview .card > .event-details .o-status span {
  font-size: 14px;
}
@media screen and (max-width: 575px) {
  .p-overview .card > .event-details .o-status span {
    font-size: 12px;
  }
}
.p-overview .card > .event-details .o-status.inprogress {
  background-color: #13BA9E;
}
.p-overview .card > .event-details .o-status.upcoming {
  background-color: #ABABAB;
}
.p-overview .card > .event-details .o-status.ended {
  background-color: #E02C0C;
}
.p-overview .card > .event-details .o-jackpot h5 {
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  .p-overview .card > .event-details .o-jackpot h5 {
    font-size: 26px;
  }
}
.p-overview .card > .event-details .o-jackpot label {
  font-family: "SF-Pro-Display-bold", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 575px) {
  .p-overview .card > .event-details .o-jackpot label {
    font-size: 16px;
  }
}
.p-overview .card > .event-details .o-timer {
  border: 1px solid transparent;
  background: linear-gradient(#154ebc, #154ebc) padding-box, linear-gradient(180deg, #00c2f3, #0362e6) border-box; /* border gradient */
  border-radius: 15px; /* works with border-radius unlike border-image */
}
.p-overview .card > .event-details .o-timer span {
  font-size: 26px;
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  .p-overview .card > .event-details .o-timer span {
    font-size: 20px;
  }
}
.p-overview .card > .event-details .o-timer span.title {
  font-size: 14px;
  font-weight: 300;
}
@media screen and (max-width: 575px) {
  .p-overview .card > .event-details .o-timer span.title {
    font-size: 12px;
  }
}
.p-overview .card > .event-details .o-timer .mini-event > div::before,
.p-overview .card > .event-details .o-timer .main-event > div::before {
  content: ":";
  position: absolute;
  top: 0;
  right: -50%;
  width: 100%;
  height: 100%;
  font-size: 36px;
}
.p-overview .card > .event-details .o-timer .mini-event > div:last-child::before,
.p-overview .card > .event-details .o-timer .main-event > div:last-child::before {
  display: none;
}
.p-overview .card > .event-details .o-time-remaining h6 {
  font-size: 12px;
  font-weight: 300;
}

/* Mini Event */
@media screen and (max-width: 767.98px) {
  .p-mini-event .dkOnly {
    display: none !important;
  }
}
@media screen and (max-width: 767.98px) {
  .p-mini-event .mbOnly {
    display: flex !important;
  }
}
@media screen and (max-width: 767.98px) {
  .p-mini-event .match-group {
    overflow: auto !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    display: flex !important;
  }
}
.p-mini-event .card {
  margin: 10px 0;
}
@media screen and (max-width: 767.98px) {
  .p-mini-event .card {
    min-width: 360px;
  }
}
@media screen and (max-width: 575px) {
  .p-mini-event .card {
    min-width: 260px;
  }
}
.p-mini-event .card .card-content {
  color: #ffffff;
  background: #005AE2;
  background: linear-gradient(180deg, #005ae2 0%, #213b98 100%);
  border-radius: 20px;
  margin: 8px;
}
@media screen and (max-width: 575px) {
  .p-mini-event .card .card-content {
    margin: 4px;
  }
}
.p-mini-event .card .card-content > .match-details {
  flex-direction: column;
  display: flex;
}
.p-mini-event .card .card-content > .match-details::before {
  content: "";
  position: absolute;
  background-image: url("../images/content/number-white-d.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-position: top;
  opacity: 0.05;
  background-size: contain;
  top: 0;
  right: 0;
  width: 96%;
  height: 100%;
}
.p-mini-event .card .card-content > .match-details .match-header {
  background: #0524dd;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
}
.p-mini-event .card .card-content > .match-details .match-header::before {
  content: "";
  position: absolute;
  background-image: url("../images/content/group-header.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-position: right;
  background-size: contain;
  border-top-right-radius: 20px;
  top: 0;
  right: 0;
  width: 96%;
  height: 100%;
}
.p-mini-event .card .card-content > .match-details .match-header h3 {
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 1023.98px) {
  .p-mini-event .card .card-content > .match-details .match-header h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .p-mini-event .card .card-content > .match-details .match-header h3 {
    font-size: 16px;
  }
}
.p-mini-event .card .card-content > .match-details .match-header h6 {
  font-family: "SF-Pro-Display-Light", sans-serif;
  font-size: 16px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 1023.98px) {
  .p-mini-event .card .card-content > .match-details .match-header h6 {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .p-mini-event .card .card-content > .match-details .match-header h6 {
    font-size: 12px;
  }
}
.p-mini-event .card .card-content > .match-details .match-body a.match-option {
  background: #ffffff;
  border-radius: 50px;
  padding: 13px 20px;
  flex-wrap: nowrap;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 575px) {
  .p-mini-event .card .card-content > .match-details .match-body a.match-option {
    padding: 10px 15px;
  }
}
.p-mini-event .card .card-content > .match-details .match-body a.match-option .country-flag img {
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 0 2px #ededed);
}
@media screen and (max-width: 575px) {
  .p-mini-event .card .card-content > .match-details .match-body a.match-option .country-flag img {
    height: 23px;
  }
}
.p-mini-event .card .card-content > .match-details .match-body a.match-option .country-name {
  color: #252525;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  font-size: 16px;
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}
@media screen and (max-width: 575px) {
  .p-mini-event .card .card-content > .match-details .match-body a.match-option .country-name {
    font-size: 12px;
  }
}
.p-mini-event .card .card-content > .match-details .match-body a.match-option.active {
  text-decoration: none;
  background: #f4bb20;
}
@media (hover: hover) {
  .p-mini-event .card .card-content > .match-details .match-body a.match-option:hover {
    text-decoration: none;
    background: #f4bb20;
  }
}
/* Main Event */
@media screen and (max-width: 767.98px) {
  .p-main-event .dkOnly {
    display: none !important;
  }
}
@media screen and (max-width: 767.98px) {
  .p-main-event .mbOnly {
    display: flex !important;
  }
}
.p-main-event .predict-match {
  background-color: #f6f6f6;
  border-radius: 10px;
}
@media screen and (max-width: 575px) {
  .p-main-event .predict-match {
    padding: 0 !important;
  }
}
.p-main-event .predict-match.ended {
  opacity: 0.6;
}
.p-main-event .predict-match.ended::before {
  content: "";
  background: rgba(37, 37, 37, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  border-radius: 10px;
}
.p-main-event .predict-match.upcoming .final-result,
.p-main-event .predict-match.closed .final-result {
  color: #ababab;
}
.p-main-event .predict-match.predicted .final-result {
  font-weight: 700;
}
.p-main-event .predict-match .predict-date {
  line-height: 14px;
}
@media screen and (max-width: 575px) {
  .p-main-event .predict-match .predict-date {
    color: #ffffff;
    background: #0524dd;
    padding: 8px 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    align-items: end;
    line-height: unset;
  }
}
@media screen and (max-width: 575px) {
  .p-main-event .predict-match .predict-date label {
    font-family: "SF-Pro-Display-Regular", sans-serif;
    font-size: 16px;
  }
}
.p-main-event .predict-match .predict-date span {
  color: #666666;
  font-size: 14px;
}
@media screen and (max-width: 575px) {
  .p-main-event .predict-match .predict-date span {
    color: #ffffff;
  }
}
@media screen and (max-width: 1023.98px) {
  .p-main-event .predict-match .predict-details .home-away {
    justify-content: center;
    max-width: 180px;
  }
}
@media screen and (max-width: 991.98px) {
  .p-main-event .predict-match .predict-details .home-away {
    max-width: 160px;
  }
}
@media screen and (max-width: 767.98px) {
  .p-main-event .predict-match .predict-details .home-away {
    max-width: 140px;
  }
}
@media screen and (max-width: 575px) {
  .p-main-event .predict-match .predict-details .home-away {
    max-width: 120px;
  }
}
@media screen and (max-width: 420px) {
  .p-main-event .predict-match .predict-details .home-away {
    max-width: 90px;
  }
}
.p-main-event .predict-match .predict-details .home-away span.t-home, .p-main-event .predict-match .predict-details .home-away span.t-away {
  display: none;
}
@media screen and (max-width: 1023.98px) {
  .p-main-event .predict-match .predict-details .home-away span.t-home, .p-main-event .predict-match .predict-details .home-away span.t-away {
    order: 3;
    font-size: 12px;
    color: #ababab;
    display: flex;
  }
}


.p-main-event .predict-match .predict-details .home-away .country-flag img {
  border: 1px solid #CBCBCB;
  border-radius: 6px;
}


@media screen and (min-width: 1024px) {
  .p-main-event .predict-match .predict-details {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .p-main-event .predict-match .predict-details .home-away:first-child {
    justify-content: flex-end;
  }

  .p-main-event .predict-match .predict-details .home-away:last-child {
    justify-content: flex-start;
  }

  .p-main-event .predict-match .predict-details .home-away {
    display: flex;
    align-items: center;
    height: 46px;
    flex: 1 1 0;
    min-width: 0;
  }
  .p-main-event .predict-match .predict-details .home-away .country-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
    font-size: 14px;
  }
}
@media screen and (max-width: 1023.98px) {
  .p-main-event .predict-match .predict-details .home-away .country-name {
    text-align: center !important;
    width: 100%;
    order: 2;
    padding: 5px 0;
  }
}
@media screen and (max-width: 575px) {
  .p-main-event .predict-match .predict-details .home-away .country-name {
    font-size: 14px;
    font-family: "SF-Pro-Display-Medium", sans-serif;
    padding: 0;
  }
}
@media screen and (max-width: 420px) {
  .p-main-event .predict-match .predict-details .home-away .country-name {
    line-height: 14px;
    font-size: 12px;
    padding: 5px 0;
  }
}

/* @media screen and (max-width: 575px) {
  .p-main-event .predict-match .predict-details .home-away .country-flag img {
    height: 40px;
  }
}
@media screen and (max-width: 420px) {
  .p-main-event .predict-match .predict-details .home-away .country-flag img {
    height: 30px;
  }
} */
.p-main-event .predict-match .predict-details .final-result {
  border: 1px solid #CBCBCB;
  background: #ffffff;
  height: 46px;
  width: 36px;
  border-radius: 5px;
  overflow: hidden;
}

@media screen and (max-width: 575px) {
  .p-main-event .predict-match .predict-details .final-result {
    margin-top: 5px;
    height: 36px;
    width: 26px;
  }
  .p-main-event .predict-match .predict-details .final-result span,
  .p-main-event .predict-match .predict-details .final-result .spinner input {
    font-size: 14px;
  }
}
.p-main-event .predict-match .predict-details .final-result .spinner {
  cursor: pointer;
  line-height: 2;
  height: 12em;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.p-main-event .predict-match .predict-details .final-result .spinner .items {
  list-style: none;
  margin: 0;
  padding: 4.6em 0;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 575px) {
  .p-main-event .predict-match .predict-details .final-result .spinner .items {
    padding: 4.9em 0;
  }
}
.p-main-event .predict-match .predict-details .final-result .spinner .item {
  opacity: 0.3333333333;
  transition: opacity 0.1s;
  padding: 0;
  height: 46px;
  width: 36px;
  padding: 0;
  border: none;
  align-items: center;
  justify-content: center;
  display: flex;
}
@media screen and (max-width: 575px) {
  .p-main-event .predict-match .predict-details .final-result .spinner .item {
    height: 36px;
    width: 26px;
  }
}
.p-main-event .predict-match .predict-details .final-result .spinner .item._active {
  opacity: 1;
}
.p-main-event .predict-match .predict-details .final-result .spinner:before,
.p-main-event .predict-match .predict-details .final-result .spinner input {
  border-radius: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: inherit;
  transform: translate3d(-50%, -50%, 0);
  height: 46px;
  width: 36px;
}
@media screen and (max-width: 575px) {
  .p-main-event .predict-match .predict-details .final-result .spinner:before,
  .p-main-event .predict-match .predict-details .final-result .spinner input {
    height: 36px;
    width: 26px;
  }
}
.p-main-event .predict-match .predict-details .final-result .spinner:before {
  content: "";
}
.p-main-event .predict-match .predict-details .final-result .spinner input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.p-main-event .predict-match .predict-details .final-result .spinner input:focus {
  box-shadow: none;
  outline: none;
}
.p-main-event .predict-match .predict-details .final-result .spinner .spinner:before,
.p-main-event .predict-match .predict-details .final-result .spinner input:focus {
  background: #ffffff;
}
.p-main-event .predict-match .predict-details .match-time {
  font-family: "SF-Pro-Display-Light", sans-serif;
}
@media screen and (max-width: 767.98px) {
  .p-main-event .predict-match .predict-details .match-time {
    margin-top: 5px;
  }
}
@media screen and (max-width: 575px) {
  .p-main-event .predict-match .predict-details .match-time {
    margin-top: 15px;
    padding: 0 8px !important;
  }
}
.p-main-event .predict-match .predict-details .match-time label {
  font-size: 22px;
}
@media screen and (max-width: 575px) {
  .p-main-event .predict-match .predict-details .match-time label {
    font-size: 18px;
  }
}
@media screen and (max-width: 420px) {
  .p-main-event .predict-match .predict-details .match-time label {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .p-main-event .predict-match .cta-square-primary {
    position: absolute;
    bottom: 10px;
    padding: 2px 10px;
  }
}

/* Results */
@media screen and (max-width: 767.98px) {
  .p-results .container.custom {
    padding: 0;
    margin: 0;
    max-width: unset;
  }
}
@media screen and (max-width: 767.98px) {
  .p-results .predict-session {
    padding: 0;
    margin: 0;
    max-width: unset;
  }
}
@media screen and (max-width: 767.98px) {
  .p-results .card-header.results-tab {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 767.98px) {
  .p-results .card-body.tab-content {
    width: 96%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 575px) {
  .p-results .match-sort {
    width: 100%;
  }
}
.p-results .match-sort .custom-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
}
.p-results .match-sort .custom-dropdown-trigger {
  display: flex;
  height: 38px;
  padding: 8px 16px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  width: 100%;
  border-radius: 24px;
  border: 1px solid #EDEDED;
  background-color: #FFF;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
}
.p-results .match-sort .custom-dropdown-trigger .bi-chevron-down {
  transition: transform 0.2s ease;
}
.p-results .match-sort .custom-dropdown.open .custom-dropdown-trigger .bi-chevron-down {
  transform: rotate(180deg);
}
.p-results .match-sort .custom-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 9999;
  display: none;
  min-width: 100%;
  padding: 11px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  border-radius: 15px;
  box-shadow: 0 2px 6px 0 rgba(136, 136, 136, 0.25);
  background-color: #FFF;
  list-style: none;
  margin: 0;
  opacity: 1;
}
.p-results .match-sort .custom-dropdown.open .custom-dropdown-menu {
  display: flex;
}
.p-results .match-sort .custom-dropdown-option {
  width: 100%;
  padding: 0;
  font-size: 14px;
  color: #9CA3AF;
  cursor: pointer;
  white-space: nowrap;
}
.p-results .match-sort .custom-dropdown-option.selected {
  color: var(--text-dark);
}
.p-results .match-sort.desktop-sort {
  display: block;
}
@media screen and (max-width: 575px) {
  .p-results .match-sort.desktop-sort {
    display: none !important;
  }
}
.p-results .match-sort.mobile-sort {
  display: none;
}
@media screen and (max-width: 575px) {
  .p-results .match-sort.mobile-sort {
    display: block;
    width: 100%;
    padding: 0 15px;
  }
  .p-results .match-sort.mobile-sort .custom-dropdown {
    max-width: none;
  }
}
@media screen and (min-width: 576px) {
  .p-results .match-sort.mobile-sort {
    display: none !important;
  }
}
.p-results .group-result:nth-child(odd) {
  padding-left: 0 !important;
}
@media screen and (max-width: 575px) {
  .p-results .group-result:nth-child(odd) {
    padding: 0.5rem 0 !important;
  }
}
.p-results .group-result:nth-child(even) {
  padding-right: 0 !important;
}
@media screen and (max-width: 575px) {
  .p-results .group-result:nth-child(even) {
    padding: 0.5rem 0 !important;
  }
}
.p-results .group-result .results-group-name label {
  font-size: 14px;
  font-family: "SF-Pro-Display-Bold", sans-serif;
}
.p-results .group-result .results-group-country {
  background-color: #f6f6f6;
  border-radius: 10px;
  border: 1px solid rgba(37, 37, 37, 0.1);
}
.p-results .group-result .results-group-country > div:not(.active) {
  opacity: 0.4;
}
.p-results .group-result .results-group-country .country-flag img {
  filter: drop-shadow(0 0 2px #ededed);
}
@media screen and (max-width: 767.98px) {
  .p-results .group-result .results-group-country .country-flag img {
    height: 54px;
  }
}
@media screen and (max-width: 575px) {
  .p-results .group-result .results-group-country .country-flag img {
    height: 40px;
  }
}
.p-results .group-result .results-group-country > .col {
  min-width: 0;
  flex: 1 1 0;
  max-width: 100%;
  overflow: hidden;
}
.p-results .group-result .results-group-country .country-name {
  font-family: "SF-Pro-Display-Light", sans-serif;
  font-size: 14px;
  padding: 10px 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
@media screen and (max-width: 575px) {
  .p-results .group-result .results-group-country .country-name {
    padding: 4px 2px;
    font-size: 12px;
    line-height: 14px;
  }
}
.p-results .predict-result {
  background-color: #f6f6f6;
  border-radius: 10px;
}

@media screen and (max-width: 575px) {
  .p-results .predict-result {
    padding: 0 !important;
  }
}
.p-results .predict-result .match-date {
  color: #666666;
  line-height: 14px;
}
@media screen and (max-width: 575px) {
  .p-results .predict-result .match-date {
    color: #ffffff;
    background: #0524dd;
    padding: 8px 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    align-items: end;
    line-height: unset;
  }
}
@media screen and (max-width: 575px) {
  .p-results .predict-result .match-date span {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .p-results .predict-result .match-date label {
    font-family: "SF-Pro-Display-Regular", sans-serif;
    font-size: 16px;
  }
}
@media screen and (max-width: 1023.98px) {
  .p-results .predict-result .match-result .home-away {
    justify-content: center;
    max-width: 180px;
  }
}
@media screen and (max-width: 991.98px) {
  .p-results .predict-result .match-result .home-away {
    max-width: 160px;
  }
}
@media screen and (max-width: 767.98px) {
  .p-results .predict-result .match-result .home-away {
    max-width: 140px;
  }
}
@media screen and (max-width: 575px) {
  .p-results .predict-result .match-result .home-away {
    max-width: 120px;
  }
}
@media screen and (max-width: 420px) {
  .p-results .predict-result .match-result .home-away {
    max-width: 90px;
  }
}
.p-results .predict-result .match-result .home-away span.t-home, .p-results .predict-result .match-result .home-away span.t-away {
  display: none;
}
@media screen and (max-width: 1023.98px) {
  .p-results .predict-result .match-result .home-away span.t-home, .p-results .predict-result .match-result .home-away span.t-away {
    order: 3;
    font-size: 12px;
    color: #ababab;
    display: flex;
  }
}
@media screen and (max-width: 1023.98px) {
  .p-results .predict-result .match-result .home-away .country-name {
    text-align: center !important;
    width: 100%;
    order: 2;
    padding: 5px 0;
  }
}
@media screen and (max-width: 575px) {
  .p-results .predict-result .match-result .home-away .country-name {
    font-size: 14px;
    font-family: "SF-Pro-Display-Medium", sans-serif;
    padding: 0;
  }
}
@media screen and (max-width: 420px) {
  .p-results .predict-result .match-result .home-away .country-name {
    line-height: 14px;
    font-size: 12px;
    padding: 5px 0;
  }
}
/* Shared score box styles — applies to all screen sizes */
.p-results .predict-result .match-result .final-result {
  border: 1px solid #CBCBCB;
  background: #ffffff;
  height: 46px;
  width: 36px;
  min-width: 36px;
  flex-shrink: 0;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.p-results .predict-result .match-result .final-result span {
  font-size: 20px;
}

/* Align score boxes and flags consistently — DESKTOP ONLY */
@media screen and (min-width: 1024px) {
  .p-results .predict-result .match-result {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Home side: push content to the right so flag sits next to score box */
  .p-results .predict-result .match-result .home-away:first-child {
    justify-content: flex-end;
  }

  /* Away side: keep content at the start */
  .p-results .predict-result .match-result .home-away:last-child {
    justify-content: flex-start;
  }

  .p-results .predict-result .match-result .home-away {
    display: flex;
    align-items: center;
    height: 46px;
    flex: 1 1 0;
    min-width: 0;
  }

  .p-results .predict-result .match-result .home-away .country-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
  }
}

.p-results .predict-result .match-result .home-away .country-flag img {
  border: 1px solid #CBCBCB;
  border-radius: 6px;
}

/* Mobile rules for predict-result flags and score boxes */
@media screen and (max-width: 575px) {
  .p-results .predict-result .match-result .final-result {
    margin-top: 5px;
    height: 36px;
    width: 26px;
    min-width: 26px;
  }
}

.p-results .predict-result .match-result .match-time {
  font-family: "SF-Pro-Display-Light", sans-serif;
}
@media screen and (max-width: 767.98px) {
  .p-results .predict-result .match-result .match-time {
    margin-top: 5px;
  }
}
@media screen and (max-width: 575px) {
  .p-results .predict-result .match-result .match-time {
    margin-top: 10px;
    padding: 0 8px !important;
  }
}
.p-results .predict-result .match-result .match-time label {
  font-size: 22px;
}
@media screen and (max-width: 575px) {
  .p-results .predict-result .match-result .match-time label {
    font-size: 18px;
  }
}
.p-results .predict-result .match-details {
  font-family: "SF-Pro-Display-Light", sans-serif;
  font-size: 14px;
  color: #ABABAB;
}
.p-results .predict-result .match-details.dkOnly {
  display: block !important;
}
@media screen and (max-width: 575px) {
  .p-results .predict-result .match-details.dkOnly {
    display: none !important;
  }
}
.p-results .predict-result.ongoing .final-result {
  color: #ababab;
}

/* My Record */
.p-my-record .my-record {
  box-shadow: 0 5px 10px 0 rgba(171, 171, 171, 0.4);
  border-radius: 15px;
  background: #ffffff;
}
@media screen and (max-width: 575px) {
  .p-my-record .my-record {
    box-shadow: none;
  }
}
.p-my-record .my-record h5 {
  text-transform: capitalize;
  font-family: "SF-Pro-Display-Medium", sans-serif;
  color: #252525;
  font-size: 18px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 575px) {
  .p-my-record .table-responsive.mbOnly table tbody tr td:first-child {
    padding-left: 0;
  }
}
.p-my-record .table-responsive table thead tr th {
  text-align: center;
}
.p-my-record .table-responsive table thead tr th:first-child {
  text-align: start;
}
.p-my-record .table-responsive table thead tr th i {
  font-size: 20px;
  top: 3px;
  position: relative;
  color: #252525;
}
.p-my-record .table-responsive table tbody tr td {
  background: transparent;
}
.p-my-record .table-responsive table tbody tr td span {
  padding: 12px 8px;
  text-transform: none;
}
.p-my-record .table-responsive table tbody tr td.group-name {
  padding: 12px 0;
}
.p-my-record .table-responsive table tbody tr td.group-name span.my-record-group-line,
.p-my-record .table-responsive table tbody tr td.group-country span.my-record-group-line {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 0.25em;
}
.p-my-record .table-responsive table tbody tr td.group-name span.my-record-country-name,
.p-my-record .table-responsive table tbody tr td.group-country span.my-record-country-name,
.p-my-record .table-responsive table tbody tr td span.my-record-country-name,
.p-my-record .table-responsive table tbody tr td span.my-record-fixture-separator {
  display: inline;
  width: auto;
  padding: 0;
}
.p-my-record .table-responsive table tbody tr td.group-status [data-value=Correct] {
  color: #00C951;
}
.p-my-record .table-responsive table tbody tr td.group-status [data-value="In Progress"] {
  color: #f4bb20;
}
.p-my-record .table-responsive table tbody tr td.group-status [data-value=Incorrect] {
  color: #FF2323;
}
.p-my-record .table-responsive table tbody tr td.match-type span {
  padding-left: 0;
}
.p-my-record .table-responsive table tbody tr td .m-group-name {
  text-transform: capitalize;
  font-family: "SF-Pro-Display-Medium", sans-serif;
  padding-left: 0;
  padding-right: 0;
}
.p-my-record .table-responsive table tbody tr td .m-group-name span.my-record-group-line {
  padding-left: 0;
  padding-right: 0;
}
.p-my-record .table-responsive table tbody tr td .m-match-type {
  font-family: "SF-Pro-Display-Medium", sans-serif;
  padding-left: 0;
  padding-right: 0;
}
.p-my-record .table-responsive table tbody tr td .m-group-country {
  font-size: 14px;
  font-family: "SF-Pro-Display-Regular", sans-serif;
  padding-left: 0;
  padding-right: 0;
}
.p-my-record .table-responsive table tbody tr td .m-group-country span {
  padding: 0;
}
.p-my-record .table-responsive table tbody tr td .m-group-country span.my-record-group-line {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 420px) {
  .p-my-record .table-responsive table tbody tr td .m-group-country {
    font-size: 12px;
  }
}
.p-my-record .table-responsive table tbody tr td .m-record-datetime {
  font-size: 12px;
  color: #ababab;
}

/* Winners */
@media screen and (max-width: 767.98px) {
  .p-winners .container.custom {
    padding: 0;
    margin: 0;
    max-width: unset;
  }
}
@media screen and (max-width: 767.98px) {
  .p-winners .predict-session {
    padding: 0;
    margin: 0;
    max-width: unset;
  }
}
@media screen and (max-width: 767.98px) {
  .p-winners .card-header.winners-tab {
    margin: 0 15px;
  }
}
@media screen and (max-width: 767.98px) {
  .p-winners .card-body.tab-content {
    width: 96%;
    margin: 0 auto;
  }
}

/* Footer */
footer {
  background: #005AE2;
  color: #ffffff;
}
@media screen and (max-width: 767.98px) {
  footer .dkOnly {
    display: none !important;
  }
}
@media screen and (max-width: 767.98px) {
  footer .mbOnly {
    display: flex !important;
  }
}
footer .footer-click .link {
  cursor: pointer;
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 767.98px) {
  footer .footer-click .link {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  footer .footer-click .link {
    font-size: 12px;
  }
}
footer .footer-click .link:hover span {
  color: #74AAFF;
}
footer .footer-section {
  border-bottom: 1px solid #ffffff;
  gap: 8rem;
}
@media screen and (max-width: 1023.98px) {
  footer .footer-section {
    gap: 0;
  }
}
@media screen and (max-width: 767.98px) {
  footer .footer-section {
    border-bottom: none;
  }
}
@media screen and (max-width: 575px) {
  footer .footer-section .col-lg-auto {
    border-bottom: 1px solid #ffffff;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}
@media screen and (max-width: 575px) {
  footer .footer-section .col-lg-auto.social-media {
    border-bottom: 1px solid transparent;
  }
}
footer .footer-section .footer-title {
  color: #74AAFF;
  font-size: 12px;
}
@media screen and (max-width: 767.98px) {
  footer .footer-section .footer-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  footer .footer-section .footer-title {
    font-size: 12px;
  }
}
footer .footer-section img {
  margin: 0 10px 5px 0;
}
footer .footer-section img.line {
  border-left: 1px solid #ffffff;
  padding: 0px 0px 0px 10px;
}
footer .footer-section .footer-payment-icon {
  position: relative;
  display: inline-block;
  line-height: 0;
  margin: 0 10px 5px 0;
  flex-shrink: 0;
}
footer .footer-section .footer-payment-icon__img {
  display: block;
  margin: 0;
  transition: opacity 0.15s ease;
}
footer .footer-section .footer-payment-icon__img img {
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
  object-fit: contain;
}
footer .footer-section .footer-payment-icon__img--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
footer .footer-section .footer-payment-icon--tng,
footer .footer-section .footer-payment-icon--18plus {
  width: 33px;
  height: 33px;
}
footer .footer-section .footer-payment-icon--tng .footer-payment-icon__img,
footer .footer-section .footer-payment-icon--18plus .footer-payment-icon__img {
  width: 33px;
  height: 33px;
}
footer .footer-section .footer-payment-icon--boost,
footer .footer-section .footer-payment-icon--grabpay,
footer .footer-section .footer-payment-icon--duitnow,
footer .footer-section .footer-payment-icon--usdt,
footer .footer-section .footer-payment-icon--ethereum {
  width: 32px;
  height: 32px;
}
footer .footer-section .footer-payment-icon--boost .footer-payment-icon__img,
footer .footer-section .footer-payment-icon--grabpay .footer-payment-icon__img,
footer .footer-section .footer-payment-icon--duitnow .footer-payment-icon__img,
footer .footer-section .footer-payment-icon--usdt .footer-payment-icon__img,
footer .footer-section .footer-payment-icon--ethereum .footer-payment-icon__img {
  width: 32px;
  height: 32px;
}
footer .footer-section .footer-payment-icon--visa .footer-payment-icon__stack {
  position: relative;
  display: block;
  width: 69px;
  height: 37px;
}
footer .footer-section .footer-payment-icon--visa .footer-payment-icon__img {
  width: 69px;
  height: 37px;
}
footer .footer-section .footer-payment-icon--visa .footer-payment-icon__img img {
  object-fit: contain;
  object-position: center center;
}
footer .footer-section .footer-payment-icon--visa.line {
  border-left: 1px solid #ffffff;
  padding-left: 10px;
}
footer .footer-section .footer-payment-icon--mastercard {
  width: 42px;
  height: 33px;
}
footer .footer-section .footer-payment-icon--mastercard .footer-payment-icon__img {
  width: 42px;
  height: 33px;
}
footer .footer-section .footer-payment-icon--fpx .footer-payment-icon__stack {
  position: relative;
  display: block;
  width: 62px;
  height: 30px;
}
footer .footer-section .footer-payment-icon--fpx .footer-payment-icon__img {
  width: 62px;
  height: 30px;
}
footer .footer-section .footer-payment-icon--fpx .footer-payment-icon__img img {
  object-fit: contain;
  object-position: center center;
}
footer .footer-section .footer-payment-icon--fpx.line {
  border-left: 1px solid #ffffff;
  padding-left: 10px;
}
footer .footer-section .footer-payment-icon--eeziepay {
  width: 70px;
  height: 29px;
}
footer .footer-section .footer-payment-icon--eeziepay .footer-payment-icon__img {
  width: 70px;
  height: 29px;
}
footer .footer-section .footer-payment-icon--help2pay {
  width: 44px;
  height: 31px;
}
footer .footer-section .footer-payment-icon--help2pay .footer-payment-icon__img {
  width: 44px;
  height: 31px;
}
footer .footer-section .footer-payment-icon--bitcoin .footer-payment-icon__stack {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
}
footer .footer-section .footer-payment-icon--bitcoin .footer-payment-icon__img {
  width: 32px;
  height: 32px;
}
footer .footer-section .footer-payment-icon--bitcoin.line {
  border-left: 1px solid #ffffff;
  padding-left: 10px;
}
footer .footer-section .footer-payment-icon--gamecare {
  width: 30px;
  height: 35px;
}
footer .footer-section .footer-payment-icon--gamecare .footer-payment-icon__img {
  width: 30px;
  height: 35px;
}
footer .footer-section .footer-payment-icon--begambleaware {
  width: 44px;
  height: 30px;
}
footer .footer-section .footer-payment-icon--begambleaware .footer-payment-icon__img {
  width: 44px;
  height: 30px;
}
footer .footer-section .footer-payment-icon--iovation {
  width: 94px;
  height: 29px;
}
footer .footer-section .footer-payment-icon--iovation .footer-payment-icon__img {
  width: 94px;
  height: 29px;
}
footer .footer-section .footer-payment-icon--threatmetrix {
  width: 116px;
  height: 31px;
}
footer .footer-section .footer-payment-icon--threatmetrix .footer-payment-icon__img {
  width: 116px;
  height: 31px;
}
footer .footer-section .footer-payment-icon--bmm {
  width: 60px;
  height: 19px;
}
footer .footer-section .footer-payment-icon--bmm .footer-payment-icon__img {
  width: 60px;
  height: 19px;
}
footer .footer-section .footer-payment-icon--itech {
  width: 30px;
  height: 28px;
}
footer .footer-section .footer-payment-icon--itech .footer-payment-icon__img {
  width: 30px;
  height: 28px;
}
footer .footer-section .footer-payment-icon--reco-cert {
  width: 30px;
  height: 30px;
}
footer .footer-section .footer-payment-icon--reco-cert .footer-payment-icon__img {
  width: 30px;
  height: 30px;
}
footer .footer-section .footer-payment-icon--reco-veri {
  width: 114px;
  height: 25px;
}
footer .footer-section .footer-payment-icon--reco-veri .footer-payment-icon__img {
  width: 114px;
  height: 25px;
}
footer .footer-section .footer-payment-icon--reco-tt {
  width: 68px;
  height: 24px;
}
footer .footer-section .footer-payment-icon--reco-tt .footer-payment-icon__img {
  width: 68px;
  height: 24px;
}
@media (hover: hover) {
  footer .footer-section .footer-payment-icon:hover .footer-payment-icon__img--default {
    opacity: 0;
  }
  footer .footer-section .footer-payment-icon:hover .footer-payment-icon__img--hover {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  footer .footer-section .footer-payment-icon__img {
    transition: none;
  }
}
footer .footer-about {
  line-height: 14px;
  font-family: "SF-Pro-Display-Light", sans-serif;
  font-size: 12px;
}
@media screen and (max-width: 575px) {
  footer .footer-about {
    line-height: 18px;
    font-size: 14px;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}
@media screen and (max-width: 767.98px) {
  footer .footer-about .footer-link {
    display: none;
  }
}

footer .footer-about .footer-link {
  display: flex;
}

footer .footer-about .footer-link .link {
  cursor: pointer;
}

footer .footer-about .footer-link .link span {
  float: left;
  text-transform: capitalize;
  line-height: 10px;
  padding: 0 8px;
  border-right: 0.021rem solid #ffffff;
  white-space: nowrap;
  text-transform: capitalize;
}
footer .footer-about .footer-link .link:hover span {
  color: #74AAFF;
}
footer .footer-about .footer-link .link:last-child span {
  border-right: none;
  padding-right: 0;
}
footer .footer-seo {
  line-height: 18px;
  font-size: 12px;
}
footer .footer-seo h6 {
  font-size: 13px;
  margin-bottom: 4px;
}
@media screen and (max-width: 767.98px) {
  footer .footer-seo {
    display: none;
  }
}

#footerInfoModal .footer-modal-body {
  color: #666666;
}
#footerInfoModal .footer-modal-body .aboutUs-content {
  font-size: 14px;
  line-height: 1.5;
}
#footerInfoModal .footer-modal-body .aboutUs-content .title-paragraph,
#footerInfoModal .footer-modal-body .aboutUs-content p {
  margin-bottom: 0.75em;
}
#footerInfoModal .footer-modal-body .aboutUs-content .separator {
  height: 12px;
}
#footerInfoModal .footer-modal-body .aboutUs-content .sub-title-font-color {
  color: inherit;
  font-weight: 700;
}
#footerInfoModal .footer-modal-body .aboutUs-content .provider-category-title {
  display: inline-block;
  color: #ff8a00;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0.5rem 0;
}
#footerInfoModal .footer-modal-body .aboutUs-content .provider-icon-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}
#footerInfoModal .footer-modal-body .aboutUs-content .provider-icon-container img {
  height: 32px;
  width: auto;
  margin-right: 0;
}
#footerInfoModal .footer-modal-body .terms-content {
  font-size: 14px;
  line-height: 1.5;
}
#footerInfoModal .footer-modal-loading,
#footerInfoModal .footer-modal-error {
  margin: 0;
  text-align: center;
}
#footerInfoModal .footer-follow-us-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#footerInfoModal .footer-follow-us-links .footer-follow-us-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #74AAFF;
  text-decoration: none;
}
#footerInfoModal .footer-follow-us-links .footer-follow-us-link:hover {
  text-decoration: underline;
}
#footerInfoModal .footer-follow-us-links .footer-follow-us-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}
#footerInfoModal .footer-follow-us-links .footer-follow-us-label {
  line-height: 1.4;
}

/* Sortable table headers cursor */
th[data-sort] {
  cursor: pointer;
}

/*# sourceMappingURL=custom.css.map */
