/* Hide scrollbar (optional) */
.hide-scroll-container::-webkit-scrollbar {
  display: none;
}

.hide-scroll-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.highlight-team-image {
  width: 40px;
  height: auto;
}

.this-fixture-image {
  width: 80px;
  height: auto;
}

#mobile-betslip-selection-counter {
  position: absolute;
  top: -25%;
  right: 25%;
  background: red;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 9999px;
}

.user-wallets-select {
  background: transparent;
  color: #fff;
  width: 100%;
  outline: none;
  padding: 4px;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 1px solid #fff;
  border-radius: 5px;
}

.user-wallets-select:focus {
  color: gray;
}

.rebet-btn {
  color: #fff;
  border: 0;
  background: green;
  font-weight: bold;
  padding: 5px 25px;
  border-radius: 3px;
}

/* -- Start @DevSylers 30/09/25 */
.promo-carousel {
  background: radial-gradient(
    129.47% 40.92% at 80.69% 76.43%,
    #5b6e37 0%,
    #0e3522 82.21%
  );
}

.promo-carousel .carousel-inner,
.promo-carousel .carousel-item {
  height: 100%;
}

.promo-carousel .carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* Circular indicators */
.promo-carousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d9d9d9;
  border: none;
  transition: background-color 0.3s ease;
}

.promo-carousel .carousel-indicators .active {
  background-color: #ffd700;
}

.sponsored-post-scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem;
  gap: 1rem;
}

.sponsored-post-scroll-container::-webkit-scrollbar {
  display: none;
}

.scroll-item {
  flex: 0 0 90%;
  height: 210px;
  scroll-snap-align: start;
  background-color: #0e3522;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffd700;
  border-radius: 0.9375rem;
  font-size: 1.5rem;
}

.line-glistener {
  height: 1px;
  width: 80%;
  background: linear-gradient(90deg, #0e3522 0%, #ffcc00 51.44%, #0e3522 100%);
}

.cs-text-sm {
  font-size: 14px;
}

.cs-text-md {
  font-size: 16px;
}

.teams-block img {
  height: 68px;
}

.sponsored-post-team-odd {
  box-shadow: 0px 4px 4px 0px #00000040;
  height: 44px;
}

.league-rank-icon {
  position: absolute;
  top: 5%;
  left: 5%;
  height: 20px;
}

/* Max Width: 425px */
@media (max-width: 425px) {
  .league-rank-icon {
    height: 18px;
  }

  .teams-block img {
    height: 58px;
  }

  .cs-text-sm {
    font-size: 12px;
  }

  .cs-text-md {
    font-size: 14px;
  }
}

/* Max Width: 375px */
@media (max-width: 375px) {
  .league-rank-icon {
    height: 13px;
  }

  .face-off-team-wrapper {
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; */
    font-size: 12px;
  }
}

/* Max Width: 320px */
@media (max-width: 320px) {
  .xs\:gap-1 {
    gap: 0.25rem !important;
  }

  .teams-block img {
    height: 38px;
  }
  .face-off-team-wrapper {
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; */
    font-size: 10px;
  }
}

.odds-scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.odds-scroll-item {
  flex: 0 0 32.3333%;
  /* 3 items per view */
  scroll-snap-align: start;
  padding: 1rem;
  box-sizing: border-box;
}

.odds-scroll-item-alt {
  flex: 0 0 49%;
  /* 2 items per view */
  scroll-snap-align: start;
  padding: 1rem;
  box-sizing: border-box;
}

.odds-scroll-item > .content {
  background-color: #f8f9fa;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
}

.odds-indicators {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

.odds-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s;
}

.odds-indicator.active {
  background-color: #ffd700;
}

/* Hide scrollbar (optional) */
.odds-scroll-container::-webkit-scrollbar {
  display: none;
}

.odds-scroll-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.accordion-btn .toggle-icon {
  transition: transform 0.3s ease;
}

.accordion-btn:not(.collapsed) .toggle-icon {
  transform: rotate(180deg);
  /* flips the icon */
}

.period-filter-option {
  flex-shrink: 0;
  padding: 0.35rem 1rem;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #495057;
  background-color: #495057;
  transition: background-color 0.2s;
  color: #ccc;
  font-size: 10px;
}

.period-filter-option:hover {
  background-color: #e2e6ea;
}

.period-filter-option.active {
  background-color: #ffd700;
  color: #000;
  border-color: #ffd700;
}

/* -- Start Live Betting Styles */
.live-events-link {
  background-color: #56534f;
  color: #000;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fbb033),
    to(#fd0)
  ) !important;
  background-image: linear-gradient(to right, #fbb033 0, #fd0 100%) !important;
  background-repeat: repeat-x;
  border-color: #fbb033;
  background-color: transparent;
  border-radius: 10rem;
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.125rem 0.875rem;
}

.live-countdown-wrapper {
  width: 70px;
  font-weight: 400;
  color: #cacbcc;
  border-right: 1px solid transparent;
}

.live-match-board {
  overflow: hidden;
  flex: 1;
  border-right: 1px solid #202121;
  cursor: pointer;
}

.pre-match-board {
  overflow: hidden;
  flex: 1;
  cursor: pointer;
}

.live-match-team {
  width: auto;
  padding-top: 0.0625rem;
  padding-bottom: 0.0625rem;
  color: #ebebeb;
}

.live-match-scores {
  padding-left: 3px;
  padding-right: 3px;
  font-weight: 700;
  color: #ffc900;
}

.live-match-scores > div.live-score {
  padding-top: 0.0625rem;
  padding-bottom: 0.0625rem;
}

.live-stream-buttons-wrapper {
  height: 2.5rem;
  padding-right: 6px;
  padding-left: 6px;
}

.live-stream-buttons-wrapper > div.icon-image {
  opacity: 0.5;
  background-position: center top;
  background-image: url("https://18bet.com/cdn/5035/themes/_default/common/img/media/soccer-field.png");
  background-repeat: no-repeat;
  width: 1.4375rem;
  height: 0.9375rem;
  background-size: 100%;
  cursor: pointer;
}
.live-stream-buttons-wrapper > div.icon-image.active {
  opacity: 1 !important;
  background-position: center bottom !important;
}

.live-stream-buttons-wrapper > div.icon-block {
  width: 1.4375rem;
  height: 0.9375rem;
  background-color: color-mix(in hwb, #333435 90%, #ebebeb);
  cursor: pointer;
}

.live-odds-carousel-es {
  max-width: 60%;
  flex: 0 0 60%;
  overflow: hidden;
}

.live-odds-carousel-container {
  flex: 1;
  min-width: 100%;
  max-width: 100%;
  touch-action: pan-y;
  font-size: 0.75rem;
}

.live-odds-carousel-nav {
  border-bottom: 1px solid #202121;
}

.live-odds-carousel-nav > div.nav-title {
  font-size: 0.6875rem;
  padding: 2px;
  color: #cacbcc;
  background-color: #333435;
  flex: 1;
  border-right: 1px solid #202121;
  border-left: 1px solid #202121;
}

.live-odds-carousel-item-wrapper {
  flex: 1;
  transform: translate3d(0px, 0px, 0px);
  min-width: 100%;
  max-width: 100%;
  transition: all 0.3s ease;
}

.live-odds-carousel-row > div:not(:first-child) {
  border-left: 1px solid #202121;
}

.live-odds-carousel-col {
  height: 2.875rem;
  flex: 1 1 0;
  overflow: hidden;
  cursor: pointer;
}

.live-odds-carousel-col-container {
  padding-left: 6px;
  padding-right: 6px;
  color: #cacbcc;
  background-color: #333435;
  line-height: 1.5;
}

.live-odds-carousel-col-container:hover {
  background-color: #252627;
}

.live-odds-carousel-col-odd-text {
  font-weight: 400;
  line-height: 1.5;
  font-size: 0.75rem;
  color: #cacbcc;
}
.live-odds-carousel-col-odd-no {
  flex: 0 0 auto;
  padding-left: 6px;
  padding-right: 6px;
  color: #ffc900;
  max-width: 100%;
}

.live-odds-carousel-col .selected {
  background-color: #333435;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fbb033),
    to(#fd0)
  ) !important;
  background-image: linear-gradient(to right, #fbb033 0, #fd0 100%) !important;
  background-repeat: repeat-x;
  border-color: #fbb033;
  background-color: transparent;
}

div.selected .live-odds-carousel-col-odd-text,
div.selected .live-odds-carousel-col-odd-no {
  color: #000 !important;
}
/* -- End Live Betting Styles */

/* Start Right-Hand Side LiveStream Board */
.rhs-live-stream-card {
  min-height: 190px;
  font-size: 0.75rem;
  border: none;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border-radius: 0;
  background-color: rgb(43.4971153846, 44.35, 45.2028846154);
}

.rhs-live-stream-card > div.header {
  border-top-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
  padding: 12px 12px;
  border-bottom: 1px solid #202121;
  color: #ffcc00;
  background-color: #0d0e0e;
}

.rhs-live-stream-card > div.header .icon {
  background-image: url("https://18bet.com/cdn/5036/themes/_default/common/img/media/soccer-field.png");
  width: 1.4375rem;
  height: 0.9375rem;
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: pointer;
}
.rhs-live-stream-card > div.header .icon.active {
  opacity: 1 !important;
  background-position: center bottom !important;
}

.rhs-live-stream-center-wrapper {
  max-width: 560px;
  margin: 0px auto;
}

.rhs-live-streamer-container {
  visibility: visible;
  font-size: 14px;
  text-rendering: optimizeLegibility;
  container-name: livecenter;
  container-type: inline-size;
}

.rhs-live-streamer-scoreboard {
  box-sizing: border-box;
  margin: 0;
  container-name: scoreboard;
  container-type: inline-size;
  background-color: #141417;
}

.rhs-live-streamer-home-team {
  border-color: rgb(204, 204, 204);
  background: linear-gradient(
    to right,
    rgba(204, 204, 204, 0.7) 0%,
    rgba(204, 204, 204, 0) 50%
  );
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.25rem 0.125rem;
  font-weight: 600px;
  border-width: 0px;
  border-left-width: 3px;
  border-style: solid;
  flex: 1 1 0%;
  color: #ffffff;
}

.rhs-live-streamer-home-team .icon-wrapper {
  transform: scaleX(1);
  min-width: 20px;
  flex: 0 0 20px;
  margin-left: 0.125rem;
  margin-right: 0.125rem;
  mix-blend-mode: overlay;
  display: flex;
  align-items: center;
}

.rhs-live-streamer-home-team .team-name {
  line-height: 1rem;
  padding: 0.125rem;
  font-size: 0.75rem;
  text-align: inherit;
  border-color: rgb(204, 204, 204);
  font-weight: 600;
  color: #ffffff;
}

.rhs-live-streamer-scores {
  max-height: 28px;
  visibility: visible;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  overflow: hidden;
  font-variant-numeric: tabular-nums;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffdf1b;
}

.rhs-live-streamer-scores > .home-score {
  position: relative;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.rhs-live-streamer-scores > .home-score p,
.rhs-live-streamer-scores > .away-score p {
  margin: 0;
  padding-left: 0.375rem;
  padding-right: 0.375rem;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: center;
}

.rhs-live-streamer-away-team {
  box-sizing: border-box;
  margin: 0;
  container-name: scoreboard;
  container-type: inline-size;
  background-color: #141417;
}

.rhs-live-streamer-away-team {
  border-color: rgb(0, 204, 0);
  background: linear-gradient(
    to left,
    rgba(0, 204, 0, 0.7) 0%,
    rgba(0, 204, 0, 0) 50%
  );
  justify-content: flex-end;
  border-width: 0px;
  border-right-width: 3px;
  border-style: solid;
  text-align: right;
  font-weight: 600;
  color: #ffffff;
  flex: 1 1 0%;
  padding: 0.25rem 0.125rem;
  display: flex;
  align-items: center;
}

.rhs-live-streamer-away-team .icon-wrapper {
  transform: scaleX(-1);
  min-width: 20px;
  font-weight: 600;
  flex: 0 0 20px;
  margin-left: 0.125rem;
  margin-right: 0.125rem;
  mix-blend-mode: overlay;
  display: flex;
  align-items: center;
  text-align: right;
  color: #ffffff;
}

.rhs-live-streamer-away-team .team-name {
  order: -1;
  text-align: inherit;
  border-color: rgb(0, 204, 0);
  padding: 0.125rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.rhs-live-stream-scene {
  font-size: 14px;
  text-rendering: optimizeLegibility;
}

.rhs-live-stream-scene .live-scene {
  transform: translateX(0px);
  touch-action: pan-y;
  transition: all 0.2s ease-in-out;
  user-select: none;
}

.rhs-live-stream-scene .live-scene-board {
  height: fit-content;
  overflow: hidden;
  flex-shrink: 0;
  user-select: none;
}

.rhs-live-stream-scene .live-scene-match-info {
  position: absolute;
  z-index: 60;
  margin-top: 1px;
  display: flex;
  left: 45%;
  /* left: 50%; */
  --tw-translate-x: -50%;
  --tw-translate-y: 0;
  --tw-skew-y: 0;
  --tw-skew-x: 0;
  --tw-scale-y: 1;
  --tw-scale-x: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  padding: 0.125rem 0.25rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
}

.rhs-live-stream-scene .live-scene-match-timer {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
  font-size: 0.6875rem;
  line-height: 0.75rem;
  font-variant-numeric: tabular-nums;
  user-select: none;
  --tw-translate-x: -50%;
  color: #ffffff;
}

.rhs-live-stream-scene .live-screen {
  display: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 50;
  user-select: none;
}

.rhs-live-stream-scene .live-screen-controller {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #f000;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  user-select: none;
}

.rhs-live-stream-scene .live-screen-controller-animation-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
}

.rhs-live-stream-scene
  .live-screen-controller-animation-container
  > .animation-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rhs-live-stream-scene
  .live-screen-controller-animation-container
  .animation-card-se {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  /* padding-left: 0;
  padding-right: 0; */
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  min-width: 50px;
  min-height: 30px;
  background-color: #00000099;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  border-radius: 6px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.rhs-live-stream-scene
  .live-screen-controller-animation-container
  > .animation-card-content {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rhs-live-stream-scene
  .live-screen-controller-animation-container
  > .card-title {
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 0;
  font-weight: 700;
  color: #ffffff;
}

.rhs-live-stream-scene .live-field {
  user-select: none;
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  background-color: var(--lc-bg-secondary);
  cursor: pointer;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.15s;
  z-index: 60;
  opacity: 0.6;
  height: 24px;
  width: 24px;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter, -webkit-box-shadow, -webkit-transform, -webkit-filter,
    -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.rhs-live-stream-scene .live-field-view > img {
  display: block;
  width: 100%;
  background-color: #578941;
  /* vertical-align: middle; */
  border-style: none;
  overflow-clip-margin: content-box;
  overflow: clip;
  user-select: none;
}

.rhs-live-stream-tabs {
  background-color: #313537;
  border-width: 0px;
  border-bottom-width: 2px;
  border-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  position: relative;
  display: flex;
  justify-content: center;
}

.rhs-live-stream-tabs .nav-tab-item {
  margin: 0 0 -2px;
  padding: 0.375rem 0.25rem;
  font-size: 0.8125rem;
  line-height: 1.125rem;
  cursor: pointer;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent !important;
  border-radius: 0;
  border: 0;
  color: #c8c8c8;
}

.rhs-live-stream-tabs .nav-tab-item.active {
  color: #c8c8c8;
  border-bottom: 2px solid #949393;
}

.rhs-live-stream-tab-pane .tab-pane-item {
  flex: 1 1 0%;
  position: relative;
}

.rhs-live-stream-tab-pane .tab-pane-item-wrapper {
  display: flex;
  height: 100%;
  align-items: center;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.rhs-live-stream-tab-pane .game-scoreboard {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.rhs-live-stream-tab-pane .game-scoreboard-es {
  background-color: initial;
}

.rhs-live-stream-tab-pane .game-scoreboard-es .timer {
  min-width: 33%;
  flex: 1 1 0%;
  display: flex;
  align-items: center;
  padding-top: initial;
  padding-right: initial;
  padding-left: 0.5rem;
  padding-right: initial;
  background-color: initial;
  font-size: 0.625rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.rhs-live-stream-tab-pane .game-scoreboard-es .timer .live-clock {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
  font-size: 0.6875rem;
  line-height: 0.75rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.rhs-live-stream-tab-pane .game-scoreboard-es .header-items,
.rhs-live-stream-tab-pane .game-scoreboard-es .value-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0px, 42px));
  justify-content: flex-end;
}

.rhs-live-stream-tab-pane .game-scoreboard-es .header-item {
  text-align: center;
  padding-left: 0.125rem;
  padding-right: 0.125rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  background-color: initial;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rhs-live-stream-tab-pane .header-item svg.corner-flag,
.rhs-live-stream-tab-pane .header-item svg.goals-icon {
  display: inline-block;
  vertical-align: top;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 0.875rem;
  width: 0.875rem;
}

.rhs-live-stream-tab-pane .game-scoreboard-es .team-a {
  min-width: 33%;
  flex: 1 1 0%;
  align-items: center;
  padding-top: initial;
  padding-right: initial;
  padding-left: 0.5rem;
  padding-right: initial;
  background-color: initial;
  display: flex;
  font-size: 0.625rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.rhs-live-stream-tab-pane .game-scoreboard-es .team-a-name {
  border-left-color: rgb(204, 204, 204);
  border-left-width: 3px;
  border-style: solid;
  border-right: 0;
  border-top: 0;
  border-bottom: 0;
  padding-left: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.rhs-live-stream-tab-pane .game-scoreboard-es .value-items .value {
  font-variant-numeric: tabular-nums;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.125rem 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  /* background-color: red; */
}

.lw-bounce {
  animation-name: lw-bounce;
}

@keyframes lw-bounce {
  0%,
  20%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}

/* End Right-Hand Side LiveStream Board */

/* Start Live Betting Page Styles */

/* Calendar */
.live-betting-calendar {
  background-color: #404142;
  min-height: 80vh;
  border-bottom: 1px solid #202121;
}
.live-betting-nav .nav-tabs {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 0;
  margin-bottom: 0;
  background-color: #262728;
  list-style: none;
  margin-top: 0;
}

.live-betting-nav .nav-item {
  order: 1;
  position: relative;
  flex-grow: 1;
  flex-basis: 0;
  text-align: center;
  margin-bottom: 0;
  list-style: none;
}

.live-betting-nav .nav-item:not(:last-child) {
  border-right: 1px solid rgb(155, 155, 155);
}

.live-betting-nav .nav-link {
  font-size: 0.75rem;
  color: #cacbcc;
  opacity: 1;
  cursor: pointer;
  padding: 0 0.25rem;
  text-transform: capitalize;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  position: relative;
}

.live-betting-nav .nav-link.active {
  color: #fff;
  border: 0;
  border: 0 solid transparent;
  background: transparent;
}

.live-betting-nav .nav-link:hover {
  border: 0 solid transparent;
}

.live-betting-calendar .event-table {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.live-betting-calendar .event-item {
  cursor: pointer;
  display: table-row !important;
  color: #cacbcc;
  text-decoration: none;
  background-color: transparent;
}

.live-betting-calendar .event-item:hover {
  background-color: rgb(70, 70, 70);
}

.live-betting-calendar .event-cell {
  display: table-cell !important;
}

.live-betting-calendar .event-col {
  font-size: 0.75rem;
  background-color: #333435;
  border-bottom: 1px solid #202121;
  color: #cacbcc;
  vertical-align: middle;
  padding: 12px;
}

/* Overview Tab */
.live-betting-games {
  background-color: #3b3c3d;
  min-height: 4.625rem;
  padding: 0 16px;
  /* padding: 0 36px; */
  position: relative;
}

.live-betting-games .scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
  padding-right: 36px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  align-items: center;
}

.live-betting-games .scroll-container .item {
  opacity: 0.5;
}

.live-betting-games .scroll-container .item.active {
  opacity: 1;
}

.live-betting-games .scroll-container::-webkit-scrollbar {
  display: none;
}

.live-betting-games .item {
  padding: 1rem 12px 0.875rem 12px;
}

.live-betting-games .item .item-link {
  min-width: 1.5rem;
  text-align: center;
  cursor: pointer;
  color: #ffc900;
}

.live-betting-games .item .item-link .item-icon {
  font-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1;
}

.live-betting-games .item .item-link .item-title {
  font-size: 0.75rem;
  margin-top: 0.5rem; /*0.25rem;*/
}

/* Live Bet Events */
.live-betting-event-view {
  background-image: url("https://cdn.abmbet.com/sport_backgrounds/soccer.jpg");
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.live-betting-event-view .event-secondary-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px;
}

.live-betting-event-view .event-secondary-info .flag-icon {
  background-image: url("https://18bet.com/cdn/5036/wl_common_assets/language_flags/default.svg");
  margin-right: 6px;
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  background-size: 1rem;
  display: inline-block;
  vertical-align: middle;
  background-position: left center;
  background-repeat: no-repeat;
}
.live-betting-event-view .live-event-scoreboard {
  width: 100%;
  max-width: 560px;
}

.live-betting-event-view .live-event-scoreboard .live-event-scoreboard-table {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 36px 0 rgba(255, 255, 255, 0.2);
  border-collapse: collapse;
}

.live-betting-event-view .live-event-scoreboard .scoreboard-col {
  background-color: rgba(0, 0, 0, 0.6);
  display: table-cell;
  vertical-align: middle;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.9);
}

.live-betting-event-view .live-event-scoreboard .scoreboard-col.gray {
  background-color: #333435;
  border-bottom: 1px solid #b3babe33;
}
.live-betting-event-view .live-event-scoreboard .scoreboard-time-container {
  font-size: 0.75rem;
  color: var(--text-color-secondary);
  padding: 4px 12px;
  height: calc(1.125rem + 8px);
}
.live-betting-event-view .live-event-scoreboard .label-live-pill {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: top;
  color: #fff;
  background-color: #e3141f;
  border-radius: 0.2rem;
  padding: 0 0.3125rem;
  margin-right: 12px;
  white-space: nowrap;
}

.live-betting-event-view .live-event-scoreboard .event-info-time {
  margin-left: -0.125rem;
  margin-right: -0.125rem;
}

.live-betting-event-view .live-event-scoreboard .live-clock {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}

.live-betting-event-view
  .live-event-scoreboard
  .scoreboard-col.stats-col:not(:empty) {
  padding-left: 3px;
  padding-right: 3px;
}

.live-betting-event-view .live-event-scoreboard .scoreboard-col.stats-col {
  width: 42px;
  text-align: center;
  font-weight: 500;
}
.live-betting-event-view .live-event-scoreboard .stats-col {
  color: #ebebeb;
  height: calc(1.125rem + 8px);
  /*Validate styles*/
  display: table-cell;
  vertical-align: middle;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.9);
}

.live-betting-event-view .live-event-scoreboard .stats-col:last-child {
  background-color: rgba(255, 255, 255, 0.1);
}

.live-betting-event-view
  .live-event-scoreboard
  .scoreboard-icon.scoreboard-icon-soccer.scoreboard-icon-ft-corners {
  background-image: url("https://cdn.abmbet.com/wl_sport_assets/scoreboard/ft-corners_light.svg");
}

.live-betting-event-view
  .live-event-scoreboard
  .scoreboard-icon.scoreboard-icon-soccer.scoreboard-icon-ft-yellow_cards {
  background-image: url("https://cdn.abmbet.com/wl_sport_assets/scoreboard/ft-yellow_cards_light.svg");
  background-position: left center;
}

.live-betting-event-view
  .live-event-scoreboard
  .scoreboard-icon.scoreboard-icon-soccer.scoreboard-icon-ft-red_cards {
  background-image: url("https://cdn.abmbet.com/wl_sport_assets/scoreboard/ft-red_cards_light.svg");
  background-position: left center;
}

.live-betting-event-view
  .live-event-scoreboard
  .scoreboard-icon.scoreboard-icon-soccer.scoreboard-icon-ft-penalty {
  background-image: url("https://cdn.abmbet.com/wl_sport_assets/scoreboard/ft-penalty_light.svg");
  background-position: left center;
}

.live-betting-event-view
  .live-event-scoreboard
  .scoreboard-icon.scoreboard-icon-soccer.scoreboard-icon-ft-goals {
  background-image: url("https://cdn.abmbet.com/wl_sport_assets/scoreboard/ft-goals_light.svg");
  background-position: left center;
}

.live-betting-event-view .live-event-scoreboard .scoreboard-icon {
  background-repeat: no-repeat;
  background-size: 0.875rem;
  display: inline-block;
  vertical-align: top;
  width: 0.875rem;
  height: 0.875rem;
  color: #ebebeb;
  margin: 0.125rem auto;
}

.live-betting-event-view .live-event-scoreboard .scoreboard-col-team {
  padding: 8px 12px;
  height: calc(27px + 16px);
  max-width: 100px;
  color: var(--body-color);
}

.live-betting-event-view .live-incidents-icon {
  background-image: url("https://18bet.com/cdn/5036/themes/_default/common/img/media/soccer-field.png");
  width: 1.4375rem;
  height: 0.9375rem;
  display: flex;
  background-repeat: no-repeat;
  background-size: 100%;
}

.live-betting-event-view .live-incidents-icon.active {
  opacity: 1 !important;
  background-position: center bottom !important;
}

/* Live Betting Markets */
.live-betting-market {
  min-height: 60vh;
  background-color: #262728;
}

.live-betting-markets .market-navs,
.sport-category-tabs .market-navs {
  background-color: #0d0e0e !important;
  border-bottom: 1px solid #202121 !important;
}

.live-betting-markets .market-nav-link,
.sport-category-tabs .market-nav-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #ebebeb;
  opacity: 0.7;
  padding: 0.75rem 18px;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  position: relative;
  cursor: pointer;
  text-align: center;
  max-width: 12rem;
  border: 0 solid transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  display: inline-block;
}
.live-betting-markets .market-nav-link.active,
.sport-category-tabs .market-nav-link.active {
  color: #fff;
  opacity: 1;
  border-bottom: 2px solid;
  border-bottom-color: #ffc900;
  background-color: transparent;
}
.live-betting-markets .tab-content .market-head,
.sport-category-tabs .tab-content .market-head {
  background-color: #4c4e4f;
  color: #ebebeb;
  border-bottom: 1px solid #202121;
  padding: 0.375rem 6px;
  cursor: pointer;
}

.live-betting-markets .tab-content .market-title,
.sport-category-tabs .tab-content .market-title,
.live-betting-markets .tab-content .the-league-title,
.sport-category-tabs .tab-content .the-league-title {
  font-size: 0.8125rem;
  padding: 0 6px;
}

.accordion-btn .toggle-icon {
  transition: transform 0.3s ease;
}

.accordion-btn:not(.collapsed) .toggle-icon {
  transform: rotate(180deg);
  /* flips the icon */
}

.live-betting-markets .market-odd {
  height: 2.125rem;
  margin: 0;
}

.live-betting-markets .odd-container {
  height: 2.125rem;
  margin: 0;

  display: flex;
  flex: 1 1 0;
  overflow: hidden;
}

.live-betting-markets .markets-odds-items-wrapper > div:not(:first-child) {
  border-left: 1px solid #202121;
}

.live-betting-markets .odd-holder {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
  font-size: 0.75rem;
  line-height: 1.5;
  padding-top: 0;
  padding-bottom: 0;
  cursor: pointer;
  flex-flow: row wrap;
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  color: #cacbcc;
  background-color: #333435;
}

.live-betting-markets .odd-holder:hover {
  background-color: #252627;
}

.live-betting-markets .odd-holder.selected {
  background-color: #333435;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fbb033),
    to(#fd0)
  ) !important;
  background-image: linear-gradient(to right, #fbb033 0, #fd0 100%) !important;
  background-repeat: repeat-x;
  border-color: #fbb033;
  background-color: transparent;
}

div.selected .market-odd_info-label,
div.selected .market-odd_odd {
  color: #000 !important;
}

.live-betting-markets .odd-holder.odd-holder-h-100 {
  height: 100% !important;
}

.live-betting-markets .odd-holder-col.spread-col {
  flex: 1;
}
.live-betting-markets .odd-holder .odd-holder-col {
  padding-left: 6px;
  padding-right: 6px;
}

.live-betting-markets .odd-holder .odd-holder-label {
  font-weight: 400;
}

.live-betting-markets .odd-holder .odd-holder-col.odd-col {
  flex: 0 0 auto;
}
.live-betting-markets .odd-holder .odd.color-odd {
  color: #ffc900;
}

.live-betting-markets .live-event-market-table .event-market-table_head {
  border-bottom: 1px solid #202121;
  background-color: #404142;
  display: flex;
  align-items: center;
}

.live-betting-markets
  .live-event-market-table
  .event-market-table_head
  .table-head-cell {
  flex: 1;
  overflow: hidden;
  align-self: stretch;
  font-size: 0.6875rem;
  text-align: center;
  padding: 0.25rem 0;
  color: #ebebeb;
}

.live-betting-markets
  .live-event-market-table
  .event-market-table_head
  .spread-column {
  max-width: 20%;
}

.live-betting-markets
  .live-event-market-table
  .event-market-table_body
  .spread-column {
  max-width: 20%;
}

.live-betting-markets
  .live-event-market-table
  .event-market-table_body
  .market-line-cell {
  overflow: hidden;
  display: flex;
  flex: 1;
}

.live-betting-markets
  .live-event-market-table
  .event-market-table_body
  .market-line-title {
  flex: 1 1 0;
  display: flex;
  overflow: hidden;
}

.live-betting-markets
  .live-event-market-table
  .event-market-table_body
  .title-container {
  cursor: default;
  background-color: #404142;
}

.live-betting-markets
  .live-event-market-table
  .event-market-table_body
  .title-container
  .market-line-title_holder {
  padding: 0 9px;
  display: flex;
  flex: 1;
}

.live-betting-markets
  .live-event-market-table
  .event-market-table_body
  .market-line-title_holder
  .title {
  flex: 1;
  overflow: hidden;
  align-self: center;
  max-height: 2.25rem;
  font-size: 0.75rem;
  padding-left: 3px;
  padding-right: 3px;
  line-height: normal;
  color: #ebebeb;
}

.live-betting-markets
  .live-event-market-table
  .event-market-table_body
  > div:not(:first-child) {
  border-left: 1px solid #202121;
}

/* Mobile View Homepage Live betting */

.m-league-event-list .event-column-main {
  flex: 1 0 50%;
  width: 50%;
  padding: 6px;
  cursor: pointer;
  border-right: 1px solid #202121;
  background-color: #333435;
}

.m-league-event-list .event-participants-info {
  flex: 1 1 20%;
  overflow: hidden;
  padding-left: 6px;
  padding-right: 6px;
}

.m-league-event-list .event-participant-name {
  display: flex;
  align-items: center;
  padding-top: 0.0625rem;
  padding-bottom: 0.0625rem;
}

.m-league-event-list .event-participant-name .team-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.75rem;
}
.m-league-event-list .event-sec-info-wrapper .event-info-time {
  font-size: 0.625rem;
  font-weight: 400;
  color: #cacbcc;
  padding-left: 4px;
  padding-right: 4px;
  display: flex;
  align-items: center;
  flex: 0 auto;
}

.m-league-event-list .event-sec-info-wrapper .live-clock {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
  font-size: 0.6875rem;
  line-height: 0.75rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.m-league-event-list .event-sec-info-wrapper .market-counter {
  font-size: 0.625rem;
  color: #cacbcc;
  display: flex;
  align-items: center;
  padding-left: 6px;
  padding-right: 6px;
  white-space: nowrap;
}

.m-league-event-list .event-media-box {
  margin-left: -3px;
  margin-right: -3px;
  flex: 1;
}

.m-league-event-list .live-incidents-icon {
  background-image: url("https://18bet.com/cdn/5036/themes/_default/common/img/media/soccer-field.png");
  width: 1.0625rem;
  height: 0.6875rem;
  display: flex;
  background-repeat: no-repeat;
  background-size: 100%;
  opacity: 0.5;
  pointer-events: none;
  margin-left: 3px;
  margin-right: 3px;
}

.m-league-event-list .live-incidents-icon.active {
  opacity: 1 !important;
  background-position: center top !important;
}

.m-league-event-list .live-score-column {
  flex: 0 0 auto;
  padding-left: 3px;
  padding-right: 3px;
}

.m-league-event-list .live-result {
  color: #ffc900;
  font-weight: 700;
  align-items: center;
  padding-left: 3px;
  padding-right: 3px;
}

.m-league-event-list .live-result-item {
  padding-top: 0.0625rem;
  padding-bottom: 0.0625rem;
  position: relative;
}

.m-league-event-list .live-result-item-score-value {
  color: #ffc900;
  font-weight: 700;
  text-align: center;
}

.m-league-event-list .event-column-market {
  flex: 1 1 50%;
  display: flex;
  align-items: stretch;
  display: flex;
  max-width: 50%;
  background-color: #333435;
}

.m-league-event-list .event-column-market .sport-market-carousel {
  flex: 1;
  min-width: 100%;
  max-width: 100%;
  touch-action: pan-y;
}
.m-league-event-list .event-column-market .ui-carousel-wrapper {
  flex: 1;
  min-width: 100%;
  max-width: 100%;
  transition: all 0.3s ease;
}

.m-league-event-list .event-column-market .es-market-container {
  min-height: 4.75rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.m-league-event-list .event-column-market .sport-market-carousel-item {
  flex: 0 0 100%;
  min-width: 100%;
}

.m-league-event-list .event-column-market .market-title {
  background-color: #333435;
  color: #cacbcc;
  padding: 2px;
  font-size: 0.6875rem;
  border-bottom: 1px solid #202121;
}

.m-league-event-list .market-content {
  display: flex;
  align-items: stretch;
  flex: 1;
  width: 100%;
  user-select: none;
}

.m-league-event-list .market-content .line {
  display: flex;
  align-self: stretch;
  flex-wrap: wrap;
  width: 100%;
}

.m-league-event-list .market-content .line .market-odd {
  display: flex;
  flex-flow: column wrap;
  flex: 1 1 0;
  background-color: #333435;
  align-self: stretch;
  margin: 0;
  border-radius: 0;
}

.m-league-event-list .market-content .line .market-odd:not(:first-child) {
  border-left: 1px solid #202121;
}

.m-league-event-list .market-content .line .odd-holder {
  flex-flow: column;
  max-width: 100%;
  display: flex;
  flex: 1;
  position: relative;
  font-size: 0.75rem;
  font-weight: 500;
  padding-top: 0;
  padding-bottom: 0;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.m-league-event-list .market-content .line .odd {
  width: 100%;
  height: auto;
  line-height: 1.0625rem;
  overflow: hidden;
  text-align: center;
  color: #ffc900;
}

.m-league-event-list .circular-indicator {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 100%;
}

.m-league-event-list .circular-indicator.active {
  background-color: #ffc900;
}

/* Mobile Styles for Live Betting Page */
.mobile-live-event-widget-nav {
  background-color: #3b3c3d;
  border-bottom: 0 solid #202121;
  padding-left: 0;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.mobile-live-event-widget-nav .live-incidents-icon {
  background-image: url("https://18bet.com/cdn/5039/themes/_default/common/img/media/soccer-field.png");
  margin-right: 4px;
  margin-left: 4px;
  width: 1.4375rem;
  height: 0.9375rem;
  display: flex;
  background-repeat: no-repeat;
  background-size: 100%;
}

.mobile-live-event-widget-nav .live-incidents-icon.active {
  opacity: 1 !important;
  background-position: center bottom !important;
}

.mobile-live-event-widget-nav .live-incidents-label {
  padding-left: 4px;
  padding-right: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #ebebeb;
}

.mobile-live-event-widget-nav .nav-link {
  border: 0;
  border-radius: 0;
  height: 45px !important;
}

.mobile-live-event-widget-nav .nav-link.active {
  background-color: transparent;
  border: 0;
  border-bottom: 3px solid #ffc900;
  opacity: 1;
}

.live-betting-mobile-market .accordion-item .market-head-modified {
  background-color: #0d0e0e;
}

.live-betting-mobile-market .accordion-item .market-head {
  padding: 0;
}
.live-betting-mobile-market .accordion-item .market-title {
  padding: 0.875rem 12px;
  color: #fff;
}

.live-betting-mobile-market .accordion-item .odd-container {
  height: auto !important;
}

.live-betting-mobile-market .accordion-item .odd-holder {
  background-color: #333435;
  padding: 1rem 9px !important;
}

.live-betting-mobile-market
  .live-event-market-table
  .event-market-table_head
  .spread-column {
  max-width: none;
}

.live-betting-event-view-modified {
  background-image: none;
  height: fit-content;
  display: flex;
  justify-content: center;
}

.mobile-live-breadcrumb {
  background-color: #333435;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 6px;
  padding-bottom: 6px;
}

.mobile-live-breadcrumb .breadcrumb-back-item {
  position: relative;
  z-index: 1;
}

.mobile-live-breadcrumb .btn-navigate {
  padding: 0.75rem 13px;
  background-color: #595a5c;
  color: #ebebeb;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-live-breadcrumb .live-events-nav {
  flex: 1;
  overflow-x: auto;
}

.mobile-live-breadcrumb .live-events-nav-item {
  flex: 0 0 250px;
  overflow: hidden;
  padding-left: 3px;
  padding-right: 3px;
}

.mobile-live-breadcrumb .live-events-nav-item:first-child {
  padding-left: 6px;
}

.mobile-live-breadcrumb .live-events-nav-item_inner {
  background-color: #404142;
  padding: 0.25rem 0;
  overflow: hidden;
}

.mobile-live-breadcrumb .live-events-nav-item_inner.active {
  background-image: linear-gradient(
    to right,
    rgba(255, 201, 0, 0.5) 0,
    transparent 100% 100%
  ) !important;
  background-repeat: repeat-x;
}
.mobile-live-breadcrumb .touchable-highlight {
  position: relative;
}
.mobile-live-breadcrumb .event-participants-info {
  padding-left: 12px;
  padding-right: 12px;
  overflow: hidden;
}

.mobile-live-breadcrumb .event-participant-name {
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
}

.mobile-live-breadcrumb .live-score {
  font-size: 0.8125rem;
  padding-left: 9px;
  padding-right: 9px;
}

.mobile-live-breadcrumb .live-result {
  color: #ffc900;
  font-weight: 700;
  padding-left: 3px;
  padding-right: 3px;
}
.mobile-live-breadcrumb .live-result-delimiter {
  padding-left: 0.0625rem;
  padding-right: 0.0625rem;
  color: #ffc900;
  font-weight: 700;
}
.mobile-live-breadcrumb .event-info_time {
  font-size: 0.8125rem;
  font-weight: 400;
  padding-left: 10px;
  padding-right: 10px;
  white-space: nowrap;
  color: #cacbcc;
}

/* End Live Betting Page Styles */

/* -- End @DevSylers 16/10/25 */

.fixture-row-carousel .carousel-indicators {
  position: relative;
  left: 0;
  margin-left: 0;
}

.fixture-row-carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  margin: 0 0;
  transition: background-color 0.3s ease;
}

.fixture-row-carousel .carousel-indicators .active {
  background-color: #ffc107;
}
