.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

@media (min-width: 1600px) {
  .container {
    width: 100%;
    max-width: 1440px;
  }
}

html {
  font-size: 20px;
}

body {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  background: #000;
  color: white;
}

.row:not(.g-0) {
  margin-right: -10px;
  margin-left: -10px;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.row:not(.g-0)>* {
  padding-left: 10px;
  padding-right: 10px;
}

a,
.nav-link {
  transition: 0.2s;
  color: white;
  text-decoration: none;
}

a:hover,
a:focus,
.nav-link:hover,
.nav-link:focus {
  text-decoration: unset;
  color: inherit;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.color {
  color: var(--main-color);
}

:root {
  --main-color: #ceae79;
}

::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0.5);
}

::-moz-placeholder {
  color: #61686E;
}

::placeholder {
  color: #61686E;
}

/* Works on Chrome, Edge, and Safari */
.btn {
  background: var(--main-bg-btn);
  border-radius: 6px;
  color: var(--color-btn);
  line-height: 20px;
  padding: 6px 14px;
  border: 0;
  font-size: 12px;
  transition: 0.2s;
  text-transform: capitalize;
  font-weight: 500;
  box-shadow: 0px 2px 4px 0px rgba(40, 40, 40, 0.38) ;
}

.btn:hover,
.btn:focus {
  box-shadow:  3px 4px 25px rgba(0, 0, 0, 0.3);
  color: var(--color-btn);
}

.btn.active,
.btn.active:hover,
.btn.active:focus {
  color: #fff;
  background: var(--main-color);
}

.btn.btn-odds-detail {
  background: #2D2C32;
  color: #fff;
}

.btn.btn-view {
  font-size: 12px;
  border: 0;
  background: #2D2C32;
  color: #fff !important;
}

i {
  font-size: 24px;
  line-height: 1;
  display: inline-block;
}

/* Header */
.top-rennab {
  margin-top: 20px;
}

.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 20px;
}

.header-right {
  display: flex;
  gap: 8px;
  align-items: center;
}

.main-header {
  margin-bottom: 1rem;
  justify-content: space-between;
  background: #131318;
  padding: 25px;
  align-items: center;
}

.navbar-nav {
  gap: 30px;
}
.navbar-nav .nav-link {
  padding: 0;
  font-weight: 500;
  font-size: 16px;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: #D3A863;
}

.form-search {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid #3F4246;
  background-color: transparent;
  color: #61686E;
  margin-bottom: 24px;
}

.form-search .form-control {
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  box-shadow: none !important;
  color: inherit;
}

.list-tours {
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid #373B42;
}

.list-tours:last-of-type {
  margin-bottom: 0;
}

.list-tours .title {
  color: #aeb8ce;
  font-size: 12px;
  font-weight: 600;
}

.list-tours .title::before {
  display: none;
}

.list-tours.list-tours-main ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  margin: 0 -20px;
}

.list-tours.list-tours-main ul li {
  margin-bottom: 20px;
}

.list-tours.list-tours-main ul a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-weight: 500;
  transition: 0.2s;
}

.list-tours.list-tours-main ul a:hover,
.list-tours.list-tours-main ul a.active {
  color: var(--main-color);
}

.list-tours.list-tours-main ul a:hover .tour-logo,
.list-tours.list-tours-main ul a.active .tour-logo {
  background: var(--main-color);
}

.list-tours.list-tours-main ul a:hover .tour-logo::before,
.list-tours.list-tours-main ul a.active .tour-logo::before {
  border-color: var(--main-color);
}

.list-tours.list-tours-main ul .tour-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(94, 94, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.list-tours.list-tours-main ul .tour-logo::before {
  content: "";
  border-radius: 50%;
  position: absolute;
  left: -3px;
  bottom: -3px;
  top: -3px;
  right: -3px;
  border: 1px solid transparent;
  transition: 0.2s;
}

.list-tours.list-tours-main ul .tour-logo+span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.list-tours.other {
  border: 0;
}

.list-tours.other ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  /*height: 340px;*/
  /* overflow-y: scroll; */
}


.list-tours.other ul a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.list-tours.other ul .tour-logo {
  padding: 2px;
  border-radius: 50%;
  background: #fff;
  min-width: 36px;
}

.list-tours.other ul .tour-logo svg {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.hidden-tour {
  display: none;
}

.moreTours {
  display: none;
}

.viewmore {
  color: var(--main-color) !important;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;

}

.viewmore img {
  transition: 0.2s;
}

/* Body */
.sidebar {
  /*background: #131318;*/
  position: sticky;
  width: 250px;
  top: 0;
  padding: 20px 15px;
  max-height: 100vh;
  overflow-y: scroll;
}

.sidebar::-webkit-scrollbar-thumb {
  border-radius: 20px;
  border-width: 2px;
  background-clip: content-box;
}

.sidebar::-webkit-scrollbar {
  width: 2px;
}

.sidebar-content {
  overflow-y: auto;
}

.main-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  min-width: 0;
  flex: 1;
}

.rennab-2-col {
  display: grid;
  grid-template-columns: auto auto;
  gap: 3px;
}

.mmo-inner {
  background-color: rgba(44, 44, 44, 0.5);
  text-align: center;
  margin: 0 auto;
  position: relative;
}

.rennab-2-col .mmo-inner img {
  width: 100%;
  height: 100%;
}


.mmo-inner.size-728x90 img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: contain;
}


.mmo-inner.size-728x90 {
  width: 100%;
  height: 0;
  padding-bottom: 12.362%;
}

.mmo-inner.size-1330x90 {
  width: 100%;
  max-height: 90px;
  display: flex;
}

.mmo-inner.size-1330x90 a {
  width: 100%;
}

.mmo-inner.size-1330x90 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-left {
  background: #d9b374 url(../images/rennab-top.jpg) no-repeat;
  background-size: cover;
  min-height: 237px;
  height: 100%;
  padding: 38px 24px;
  color: #1C2155;
  border-radius: 16px;
  overflow: hidden;
}

.top-left p {
  max-width: 470px;
  margin-top: 6px;
}

.top-left h1 {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -1px;
  max-width: 60%;

}

.top-right {
  display: grid;
  gap: 6px;
  height: 100%
}

.top-right img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.title::before {
  content: "";
  background: linear-gradient(135deg, #E2C081 0%, #D3A863 100%);
  height: 18px;
  width: 3px;
  border-radius: 2px;
}

.grid-match--is-hot {
  box-shadow: 0 0 0 2px rgba(255, 164, 92, 0.3) !important;
}

.grid-matches__item {
  border-radius: 16px;
  background: #1B1D23;
  padding: 8px 10px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 1.5px #4E4E4E;
  user-select: none;
  display: block;

}
.grid-matches__item .grid-match{
  position: relative;
}
.grid-matches__item .grid-match .stype {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 2;
  width: 100%;
  justify-content: center;
  margin-top: -8px;
}

.grid-matches__item .grid-match .stype .stypei {
  font-size: 12px;
  background: rgba(154, 145, 145, 0.18);
  padding: 2px 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 0 0 6px 6px;
}

.grid-matches__item .grid-match .stype .stypei img{
  height: 18px;
}
.match__row a{
  position: relative;
}
.match__row .stype {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 2;
  width: 100%;
  justify-content: center;
  margin-top: -8px;
}

.match__row .stype .stypei {
  font-size: 12px;
  background: #4e4e4e;
  padding: 2px 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 0 0 6px 6px;
}

.match__row .stype .stypei img{
  height: 18px;
}

.grid-matches__item .grid-match__top {
  position: relative;
  padding: 8px;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 16px;
}

.grid-matches__item .grid-match__team .grid-match__team--name {
  max-width: 80%;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
}

.grid-matches__item .grid-match__top .bg-top-gm {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.grid-matches__item .grid-match__top .group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
  position: relative;
}

.grid-matches__item .t_vs {
  font-size: 16px;
  margin-top: 12px;
}

.grid-matches__item .grid-match__team-logo {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: contain;
}

.grid-matches__item .grid-match__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #7B7B8D;
  min-height: 26px;
}

.grid-matches__item .grid-match__date {
  color: #fff;
  font-size: 12px;
}

.is-live-div {
  display: flex;
  align-items: center;
}

.badge-live {
  color: #fff;
  font-size: 12px;
  line-height: 26px;
  width: 50px;
  font-weight: 700;
  background: #DF2C2C;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: 8px
}

.badge-live::before {
  content: "";
  background: #fff;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  animation: blinker 1s linear infinite;
}

.grid-matches__item .grid-match__league {
  /*max-width: 80%;*/
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  font-size: 12px;
  flex: 1;
}
.grid-matches__item .grid-match__league .text-ellipsis{
  padding-right: 15px;
}
.grid-matches__item .grid-match__main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 500;
  position: relative;
}

.grid-matches__item .grid-match__team {
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.xspace2 {
  font-weight: 500;
  font-size: 16px;
  position: absolute;
  margin: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.grid-matches__item .grid-match__team .grid-match__team--name {
  max-width: 80%;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
}

.grid-matches__item .grid-match__footer {
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #2d2c32;
  display: flex;
  justify-content: space-between;
}

.grid-matches__item .grid-match__commentator {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c2c2c2;
  text-transform: capitalize;
  min-height: 26px;
}

.grid-matches__item .grid-match__commentator>span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

.grid-matches__item .grid-match__commentator.empty {
  justify-content: flex-end;
}

.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
}

.matches__item {
  user-select: none;
}

.time-loaded {
  color: #43CD40;
  margin-left: 5px;
}

.time-loaded.end {
  color: #DE3434;
}

.time-loaded.pending {
  color: #fff;
}

.time-loaded-m {
  color: #43CD40;
  margin-left: 5px;
}

.time-loaded-m.end {
  color: #DE3434;
}

.time-loaded-m.pending {
  color: #fff;
}

.grid-match__rate {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
}

.grid-match__rate span {
  padding: 8px 22px;
  border-radius: 8px;
  border: 1px solid #3F4246;
}

section {
  padding-bottom: 2rem;
}

.filter-match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  user-select: none;
}

.filter-match .form-search {
  margin: 0;
}

.filter-tags__day {
  display: flex;
  align-items: center;
  gap: 16px;
}

.empty-list {
  text-align: center;
  padding: 30px 0;
  background: #3a3a3a;
  border-radius: 8px;
}

.schedule .tag_content {
  display: none;
}

.schedule .tag_content.active {
  display: block;
}

.filter-tags__day a {
  border-radius: 12px;
  border: 1px solid #3F4246;
  padding: 5px 4px;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-transform: capitalize;
  width: 52px;
  font-weight: 500;
  cursor: pointer;
  background: #2a2a2a;
}

.filter-tags__day a:hover {
  color: inherit;
  border-color: var(--main-color);
}

.filter-tags__day a.active {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.filter-tags__day a.active.tag_item_live {
  background-color: #DF2C2C;
  border-color: #DF2C2C;
}

.tag_item.active span {
  color: #000;
}

.filter-tags__day a.active.tag_item_live span {
  color: #fff;
}

.filter-tags__day .live {
  transition: 0.2s;
  color: #DF2C2C;
  padding: 8px 12px;

}

.filter-tags__day .yesterday, .filter-tags__day .today, .filter-tags__day .weekday {
  transition: 0.2s;
  color: #fff;
  line-height: 18px;
}

.is_live .match__commentator {
  color: #fff;
}

.ava-cast {
  width: 32px;
  height: 32px;
  border-radius: 24%;
  object-fit: cover;
}

.ava-cast+.ava-cast {
  margin-left: -20px;
}

.tour-logo .ava-cast {
  object-fit: contain;
}

.viewall {
  color: var(--main-color);
  text-transform: capitalize;
  font-size: 16px;
}

h4 {
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.list-ops {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-ops .item {
  cursor: pointer;
}


.in-opts {
  display: flex;
  align-items: center;
  gap: 12px;
}

.in-opts::before {
  content: "";
  background: linear-gradient(135deg, #E2C081 0%, #D3A863 100%);
  height: 24px;
  width: 3px;
  border-radius: 2px;
}

.in-opt {
  font-weight: 600;
}

.in-opt span {
  display: block;
}

.in-opt .commentator {
  font-size: 12px;
  font-weight: normal;
}

.page-title {
  text-transform: capitalize;
  margin-bottom: 20px;
  margin-top: 20px;
}

.page-title a {
  color: #fff;
}

.page-title .dots {
  margin: 0 6px;
  color: #61686E
}

.page-title .breadcrumb_last {
  color: var(--main-color);
  font-weight: 700;
}

.title_head {
  margin: 0 0 20px 0;
}
.title_head .title_box {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  place-content: space-between;
  align-items: center;
}

.title_head h1, .title_head h2 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  padding-top: 10px;
}

.title_head .commentator {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #9497A4;
}

.title_head .commentator .ava-cast {
  width: 44px;
  height: 44px;
}

.title_head .commentator strong {
  color: #fff;
  display: block;
  line-height: 24px;
}
.title_head .tc-social {
  display: flex;
  gap: 20px;
  align-items: center;
}
.teambox_w .teambox__team--name {
  display: block;
  width: 100%;
  max-width: 126px;

}

.teambox_w .teambox__center {
  min-width: 140px;
  text-align: center;
  align-content: center;

}

/*#play_main {*/
/*  position: fixed;*/
/*  z-index: 999;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  margin: 0;*/
/*  padding-bottom: 0;*/
/*  height: 100%;*/
/*  min-height: -webkit-fill-available;*/
/*}*/

/*#play-main .player__right {
  padding-left: 0;
  padding-right: 0;
}*/

/*#play-main .player__left {*/
/*  border-right: 1px solid #2d2d2d;*/
/*  float: none;*/
/*  z-index: 3;*/
/*  top: 0;*/
/*  left: 0;*/
/*  padding: 0;*/
/*  margin: 0;*/
/*}*/

#play-main:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

#play-main .embedz {
  background: #100200;
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  padding-bottom: 50.25%;
}

#jw {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
}

.tc_links .tc_dcs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.tc_links span {
  font-size: 12px;
  font-weight: 700;
}

.tc_links .list_links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tc_links .pu-link {
  padding: 6px 10px;
  border-radius: 6px;
  color: #ffffff;
  text-transform: capitalize;
  display: flex;
  gap: 6px;
  align-items: center;
  cursor: pointer;
  border: 1px solid #3F4246;
  background: #212224;
  font-weight: 500;
  line-height: 30px;
  height: 30px;
}

.tc_links .pu-link.pu-linkff {
background: #001641;
}

.tc_links .pu-link.fansite-link {
  padding: 3px 8px 3px 3px;
  background: #3F4246;
  font-size: 13px;
}
.tc_links .pu-link:hover,
.tc_links .pu-link.playing {
  background-color: var(--main-color);
  color: #201F25;
}
.tc_links .sv-link:hover {
  background: #97f391;
  color: #201F25 !important;
}
.tc_links .pu-link .ava-cast {
  width: 24px;
  height: 24px;
}

.tc_links #tv_links .pu-link {
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
}

.teambox_w {
  background: url(../images/bg_teambox.png) no-repeat;
  background-size: cover;
  border-radius: 12px;
  padding: 10px 12px 10px;
  text-align: center;
  user-select: none;
}

.teambox_w .teambox {
  display: flex;
  justify-content: center;
  font-weight: 600;
}

.teambox_w .teambox__team {
  flex: 1;
  max-width: 150px;
  min-height: 144px;
  align-content: center;
}

.teambox_w .teambox__team--name {
  display: block;
  width: 100%;

}

.teambox_w .team__logo {
  width: 60px;
  height: 60px;
  margin-bottom: 14px;
  object-fit: contain;
}

.teambox_w .tour {
  font-size: 12px;
  color: #7B7B8D;
  margin-bottom: 18px;
}

.teambox_w .teambox__ts {
  font-size: 20px;
  display: flex;
  gap: 4px;
  justify-content: center;
}

.teambox_w .teambox__center {
  min-width: 140px;
  text-align: center;
}

.teambox_w .teambox__ts {
  font-size: 20px;
  display: flex;
  gap: 4px;
  justify-content: center;
}

.teambox_w .teambox__ts>span {
  min-width: 10px;
  text-align: center;
}

.ck-player {
  border-radius: 12px;
  overflow: hidden;
  height: 460px;
}

.sc-countdown {
  overflow: hidden;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
}

.sc-countdown:before {
  content: "";
  opacity: 0.5;
  position: absolute;
  background-image: url('../images/countdown-bg.jpg');
  background-size: cover;
  background-position: center center;
  filter: blur(8px);
  width: 100%;
  height: 100%;
}

.sc-countdown .bd {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.sc-countdown .bd #sc-title {
  font-size: 1.3em;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 15px;
}

.sc-countdown .bd .sc-content {
  display: flex;
  gap: 8px;
  color: #000;
  justify-content: center;
}

.sc-countdown .bd .sc-content .it {
  display: inline-block;
  min-width: 76px;
  font-size: 1.1em;
  padding: 0.5rem 0.3rem;
  border-radius: 15px;
  background: #fff;
}

.sc-countdown .bd .sc-content .it div {
  font-size: 2em;
  line-height: 1;
  height: 1em;
  font-weight: 700;
  color: #000;
}

.ck-player img {
  width: 100%;
  height: 460px;
}

/*.player__right {*/
/*  background-color: #1B1D23;*/
/*  border-radius: 12px;*/
/*  overflow: hidden;*/
/*  margin-top: -44px;*/
/*}*/

/*.player__right .tab {*/
/*  background: #111116;*/
/*  display: grid;*/
/*  grid-template-columns: 1fr 1fr;*/
/*  padding: 10px;*/
/*  border-radius: 12px;*/
/*}*/

/*.player__right .tab .tablinks {*/
/*  background: transparent;*/
/*  box-shadow: none;*/
/*  border: 0;*/
/*  color: #61686E;*/
/*  line-height: 24px;*/
/*  padding: 0;*/
/*  text-transform: capitalize;*/
/*}*/

/*.player__right .tab .tablinks.active {*/
/*  color: var(--main-color);*/
/*  font-weight: 600;*/
/*}*/

/*.player__right .tabcontent {*/
/*  display: none;*/
/*  background: #282828;*/
/*  min-height: 460px;*/
/*  height: 100%;*/
/*}*/

/*.player__right .tabcontent.active {*/
/*  display: block;*/
/*}*/

.wrap-heading-box {
  background: #24ed00;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 6px 15px;
  text-align: center;
}

.wrap-heading-box .heading-box {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0;
  line-height: 24px;
  text-align: center;
  margin: 0;
}

.main-chatbox {
  margin-top: 15px;
}

.require-login {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 125px;
  z-index: 9;
  background: rgb(58, 61, 68);
  background: linear-gradient(0deg, rgba(58, 61, 68, 0.95) 0%, rgba(58, 61, 68, 0.95) 80%, rgba(58, 61, 68, 0) 100%);
}

.require-login a {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 40%;
  text-align: center;
  transform: translateY(-50%);
  color: #fff !important;
  cursor: pointer;
}

/*.chatbox_cover {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}

.chatbox_cover .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  background: #dbae79 !important;
  color: #000;
  border-radius: 20px;
  font-size: 14px;
}

.chatbox_cover::before {
  content: "";
  background-color: #1d1e22;
  background-image: url('/assets/images/chat-hide.jpg');
  background-size: contain;
  background-position: left center;
  background-repeat: repeat-y;
  z-index: 2;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}

.chatboxi {
  height: 100%;
}*/

.swiper-button-next {
  right: 0;
  height: 100%;
  width: 77px;
  background: linear-gradient(270deg, #292B34 0%, rgba(41, 43, 52, 0) 100%);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  color: #fff;
  top: 0;
  margin: 0;
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
}

.swiper-button-next::after {
  font-size: 20px;
}

.swiper:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
}

.offcanvas {
  background-color: #131318;
  max-width: 80%;
}

.offcanvas-body {
  padding: 1rem 0.7rem;
}



.offcanvas-body::-webkit-scrollbar-thumb {
  border-width: 2px;
  background-clip: content-box;
  background-color: #373B42;
  border-radius: 12px;
}

.offcanvas-body::-webkit-scrollbar {
  width: 5px;
}

.info-top {
  height: 100%;
  padding: 20px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  background: url('../images/bg-tour.png') no-repeat;
  background-size: cover;
  border-bottom: 2px solid #282833;
}

.info-top .top-tour {
  display: flex;
  align-items: center;
  gap: 14px;
}

.info-top .top-tour img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.info-top .top-tour .main-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #9BA3AB;
}

.info-top .top-tour .name {
  color: #fff;
  line-height: 24px;
  font-size: 18px;
  font-weight: 700;
}

.nav-tabs {
  border: 0;
  gap: 20px;
}

.nav-tabs a {
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #9BA3AB;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.nav-tabs a span.live {
  color: #fff;
  background: #ff0000;
  font-size: 12px;
  line-height: 14px;
  border-radius: 50%;
  min-width: 21px;
  display: inline-block;
  text-align: center;
  padding: 3px;
}
.nav-tabs a::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-tabs a:hover,
.nav-tabs a.active {
  color: #D3A863;
}

.nav-tabs a:hover::after,
.nav-tabs a.active::after {
  background: var(--main-color);
}

#footer {
  color: #7B7B8D;
  line-height: 24px;
  background-color: #14151A;
  padding: 0 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  /* padding-bottom: 120px; */
}

#footer .footer-left {
  max-width: 430px;
}

#footer .logo {
  display: inline-block;
  margin-top: 28px;
  margin-bottom: 12px;
}

#footer .footer-left,
#footer .footer-center {
  position: relative;
  z-index: 1;
}

#footer h4 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #fff;
  margin: 24px 0;
}

#footer .social-icon {
  display: flex;
  gap: 24px;
}

.burger-icon {
  position: relative;
  margin-top: 8px;
  margin-bottom: 8px;
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: width 0.25s ease;
}

.burger-icon::before {
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: width 0.25s ease;
  content: "";
  position: absolute;
  right: 0;
  top: -8px;
}

.burger-icon::after {
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: width 0.25s ease;
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
}

.g-imgbot {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  width: 100%;
}

.g-imgbot img {
  width: 100%;
  max-height: 67px;
}

#modalMatch {
  animation: fadeIn 0.25s ease-in both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.popup-sda .modal-content {
  padding: 0;
}

.rn-close {
  position: absolute;
  z-index: 99;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.rn-close span {
  width: 44px;
  height: 44px;
  line-height: 24px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(18, 18, 18, 0.3);
  color: #fff;
}

.bg-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 400;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
  display: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.bg-overlay.active {
  display: block;
  position: fixed;
}

.offcanvas {
  opacity: 0;
  transition: 0.3s;
}

.offcanvas.show {
  opacity: 1;
}

.odd-list {
  display: none;
}

.odds-table-container {
  width: 100%;
  padding: 20px 0;
}

.odds-table {
  width: 100%;
  border-collapse: collapse;
  color: #e6e6e6;
}
.odds-table .badge-live{
  color: #fff;
  font-size: 9px;
  line-height: 15px;
  width: 34px;
  font-weight: 700;
  background: #DF2C2C;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-left: 0;
}
.odds-table th,
.odds-table td {
  padding: 5px;
  text-align: center;
  border-right: 1px solid #3a3a47;
}

.odds-table td {
  border-top: 1px solid #3a3a47;
}

.odds-table td span {
  vertical-align: middle;
}

.odds-table .handi {
  display: flex;
}
.odds-table .handi span {
  width: 50%;
}
.odds-table .handicap,
.odds-table .goal,
.odds-table .corner {
  color: #f60;
}

.odds-table th:last-child,
.odds-table td:last-child {
  border-right: 0;
}

.odds-table th {
  color: #fff;
  font-weight: normal;
  font-size: 12px;
}

.odds-table .company {
  text-align: left;
}

.odds-table .company-name {
  display: inline-block;
  padding: 5px 10px;
  background-color: #4caf50;
  color: white;
  border-radius: 3px;
}

.odds-table .live-indicator {
  color: red;
  font-weight: bold;
  margin-left: 5px;
}

#select-box {
  position: relative;
}

#select-box #chevrons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 20px;
  transition: 0.2s;
  cursor: pointer;
}

#select-box #select-button {
  position: relative;
  cursor: pointer;
}

#select-box #options.hidden {
  display: none;
}

#select-box #options {
  position: absolute;
  top: 40px;
  right: 0;
  left: 0;
  margin: 0 auto;
  background-color: #131318;
  border-radius: 4px;
  padding: 5px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#select-box .option {
  position: relative;
  line-height: 1;
  transition: 0.3s ease all;
  z-index: 2;
  padding: 5px 10px;
  cursor: pointer;
}

#select-box .option input[type=radio] {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

#select-box .option img {
  display: inline-block;
  margin-right: 10px;
}

#select-box .option:not(:last-child) {
  margin-bottom: 5px;
}

#select-box img {
  width: 100px;
}

.oddsBox-tabs a {
  border-radius: 8px;
  border: 1px solid #3F4246;
  padding: 5px 10px;
  color: #fff;
  position: relative;
  display: inline-block;
  text-align: center;
  text-transform: capitalize;
  font-weight: 500;
  margin-right: 3px;
  cursor: pointer;
}

.oddsBox-tabs a.active {
  background-color: #D3A863;
  border-color: #D3A863;
}

.odds-logo-mb img {
  width: 80px;
  height: 25px;
}

#table-stat {
  margin-top: 24px;
  padding: 20px;
}

.stat-group {
  gap: 32px;
  align-items: flex-end;
}
.stat-group + .stat-group {
  margin-top: 20px;
}
.stat-group.two {
  grid-template-columns: 1fr 1fr;
}
.stat-group .cards {
  display: flex;
  gap: 20px;
  align-items: center;
}
.stat-group .cards.away {
  flex-direction: row-reverse;
}
.stat-group .cards.away > div {
  flex-direction: row-reverse;
}
.stat-group .cards.away i {
  transform: rotateY(180deg);
}
.stat-group .cards > div {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.stat-group .cards i {
  font-size: 20px;
}
.stat-group .cards .card-y i {
  color: var(--color-y);
}
.stat-group .cards .card-r i {
  color: var(--color-red);
}

.possession {
  flex: 1;
  text-align: center;
}

.progress {
  height: 2px;
  margin: 10px 50px;
  position: relative;
  overflow: visible;
  background: var(--color-sub);
}

.stat-result {
  position: absolute;
  left: -50px;
  min-width: 40px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
.stat-result.away {
  left: unset;
  right: -50px;
}

.progress-bar {
  background-color: #369A43;
}
/* ---------------------------------------------------------LINEUP------------------------------------------------------------- */

.box {
  border-radius: 8px;
  background: var(--bg-color);
}

.score-table {
  position: relative;
  height: 520px;
  padding: 30px 16px;
}
.score-table > svg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 8px;
  pointer-events: none;
}
.score-table > .row {
  height: 100%;
}

.score-list {
  display: flex;
  font-weight: 500;
  justify-content: space-between;
}

.ll-row {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.ll-row.df {
  justify-content: space-between;
}
.ll-row .player {
  text-align: center;
  position: relative;
  color: #fff !important;
}

.badged {
  position: absolute;
  z-index: 2;
  left: 15px;
  padding: 2px;
  border: 1px solid var(--color-sub);
  border-radius: 50%;
  line-height: 1;
}
.badged i {
  border-radius: 50%;
  background: var(--main-color);
  font-size: 20px;
}
.badged.out i {
  background: var(--color-red);
}

.avatar-player {
  position: relative;
}
/*

.rate {
  background: #DE6E2F;
  border-radius: 20px;
  width: 40px;
  text-align: center;
  font-size: 12px;
  line-height: 24px;
  position: absolute;
  right: -25px;
  top: -15px;
  z-index: 11;
}
.rate.bad {
  background: #CC211E;
}
.rate.good {
  background: var(--main-color);
}
.rate.best {
  background: #2062CA;
}
*/

.match-box {
  display: grid;
  margin: 12px 0;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: flex-start;
}

.boxitem {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.boxitem > * {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-coach {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.lineupText {
  padding: 4px 8px;
  border-radius: 8px;
  background-color: #1E211E;
}

.benchitem + .benchitem {
  border-top: 1px solid var(--border-color);
}
.benchitem .player .name {
  margin: 0;
}
.benchitem .badged {
  position: relative;
  left: unset;
}

.mmo-fixside {
  position: fixed;
  z-index: 100;
  top: 46%;
  transform: translateY(-50%);
}
.mmo-fixside.to-left {
  left: 0;
}
.mmo-fixside.to-right {
  right: 0;
}

.mmo-fixbot {
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  right: 0;
}

.mmo.for-mobile {
  display: none;
}

.mmo-inner.size-1330x90 {
  width: 100%;
  max-width: 1330px;
  height: auto;
  max-height: 90px;
  display: block;
  /* padding-bottom: 7%; */
}

.mmo-fixbot .mmo-inner {
  margin: 0 auto;
  position: relative;
}

.mmo-fixbot .rn-close {
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-shadow: 0 0 10px #fff;
  background: rgba(151, 151, 151, 0.4);
  color: #fff;
}

/* -----------------------------------------------------highlight-------------------------------------------------------------------------- */

.news-big {
  margin-bottom: 30px;
  overflow: hidden;
  padding-left: 50%;
  position: relative;
}

.news-big .news-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  bottom: 0;
  height: 100%;
  padding-bottom: 0;
}
.news-big .news-detail {
  width: 100%;
  padding: 20px 25px;
  background: #2f3137;
  min-height: 350px;
  border-bottom: 2px solid #D3A863;
}
.news-big .news-detail .news-title {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.news-big .news-detail .news-title a:hover {
  color: #D3A863;
}
.news-big .news-detail .description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-thumb {
  position: relative;
  padding-bottom: 56%;
  width: 100%;
  display: inline-block;
}

.news-thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.news-list-page {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.news-list-page .item.item-highlight .news-title {
  padding: 12px 0 0;
  margin: 0;
  font-size: 1em;
}

.news-big .news-detail .news-title a {
  color: #D3A863;
}

.news-list-page .item.item-highlight .news-thumb {
  padding-bottom: 65%;
}
.ck-pagination {
  margin-top: 30px;
}
.ck-pagination .pagination .page-item {
  margin: 5px;
}
.ck-pagination .pagination .page-item .page-link {
  padding: 0 10px;
  line-height: 40px;
  font-size: 16px;
  border-radius: 6px;
  min-width: 40px;
  text-align: center;
  color: #fff;
  background: #2f3137;
  border: 0;
}
.ck-pagination .pagination .page-item .page-link:hover {
  color: #D3A863;
}
.ck-pagination .pagination .page-item.active .page-link {
  background: #D3A863;
  color: #111;
  cursor: default;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

#player_news .res-frame {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
#player_news.active {
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 100%;
  position: relative;
  padding-bottom: 59.3%;
}
#player_news.active .res-frame {
  display: block;
}




#play-main .player__left {
  padding-right: 0 !important;
}
#play-main .player__left .tc_links {
  /*display: flex;*/
  /*min-height: 40px;*/
  padding: 4px;
}
#play-main .player__left .tc_links .match-links {
  /*padding-left: 2px;*/
}
#play-main .player__left .tc_links .match-links a {
  padding: 0 6px 2px;
  display: flex;
  gap: 4px;
  align-items: center;
  text-transform: uppercase;
  border-radius: 4px;
  color: #fff;
  margin-right: 3px;
  font-size: 13px;
}
#play-main .player__left .tc_links .match-links a i {
  font-size: 14px;
  margin-right: 1px;
}
#play-main .player__left .tc_links .match-links a.playing {
  /*background: #ff6f27;*/
  /*background: #2762ff;*/
  background: #0b9c00;
}
#play-main .player__left .tc_links .match-links a.playing i:before {
  content: "\f04b";
}
#play-main .player__left .embedz {
  background: #100200;
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  padding-bottom: 59.25%;
}
#play-main .player__left .embedz #jw {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
}
#play-main .player__left .title_head {
  display: none;
}
#play-main .player__right {
  background-color: #141414;
  overflow: hidden;
  height: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  position: relative;
}
#play-main .player__right .btn-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px;
}
#play-main .btnz {
  background: #FFD608;
  border-radius: 4px;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 13px;
  color: #1a1d23;
  position: relative;
  border: 0;
  /* margin-right: 5px; */
  padding: 4px 6px;
  transition: 0.1s;
  text-align: center;
  display: flex;
  align-items: center;
  min-height: 28px;
  margin-right: 2px;

}

#play-main .btnz i {
  font-size: 13px;
  margin-right: 3px;
}

#play-main .player__right .btn-control .btn-group {
  display: flex;
  gap: 2px;
}
#play-main .player__right .btn-control .btn-group .btn-tab {
  padding: 4px 6px;
  border-radius: 0.25rem;
  border: none;
  color: var(--color-sub);
  font-size: 13px;
  line-height: 12px;
  letter-spacing: -0.8px;
  min-height: 28px;

}
#play-main .player__right .btn-control .btn-group .btn-tab i {
  font-size: 14px;
}
#play-main .player__right .btn-control .btn-group .btn-tab.btn-tchat {
  background: #4d5057;
}
#play-main .player__right .btn-control .btn-group .btn-tab.btn-tchat span:before {
  content: "Tắt chat";
}
#play-main .player__right .btn-control .btn-group .btn-tab.btn-tchat.slash {
  background: #343434 !important;
}
#play-main .player__right .btn-control .btn-group .btn-tab.btn-tchat.slash span:before {
  content: "Bật chat";
}
#play-main .player__right .btn-control .btn-group .btn-tab.btn-tchat.slash i:before {
  content: "\f075";
}
.tabcontents .tabcontent {
  display: none;
   position: relative;
}
.tabcontents .tabcontent.active {
  display: block;
}

#play-main .player__right .tab {
  background: #23252e;
  text-align: center;
  display: flex;
  justify-content: left;
  gap: 2px;
}

#play-main .player__right .tab.sub {
  gap: 5px;
}
#play-main .player__right .tab .item {
  background: #313131;
  color: #fff;
  border: 0;
  border-bottom: 2px solid transparent;
  line-height: 12px;
  padding: 5px;
  transition: all .3s ease-in-out;
  flex-grow: 1;
}

#play-main .player__right .tab .item.sub {
  background: #949494;
  color: #000000;
  border: 0;
  border-bottom: none;
  line-height: 18px;
  border-radius: 5px;
}

#play-main .player__right .tab .item span {
  display: none;
  font-size: 12px;
  transition: all .3s ease-in-out;
}
#play-main .player__right .tab .item.active {
  background: #000;
  color: var(--main-color);
  border-color: var(--main-color);
}
#play-main .player__right .tab .item.active path {
  fill: var(--main-color);
}
#play-main .player__right .tab .item.active span {
  display: inline;
}
#play-main .player__right .tab .item.sub.active {
  background: var(--main-color);
  color: #000;
}
#play-main .player__right .tab .item:hover {
  color: var(--main-color);
}
#play-main .player__right .tab .item.sub:hover {
  background: var(--main-color);
  color: #000;
}
#play-main .player__right .tabcontents {
  height: calc(100% - 60px);
  position: relative;
}
#play-main .player__right .tabcontents .chat-require-login {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 125px;
  z-index: 2;
  padding: 22px 8px 6px;
  background: #3a3d44;
  background: linear-gradient(0deg, rgba(58, 61, 68, 0.95) 0%, rgba(58, 61, 68, 0.95) 80%, rgba(58, 61, 68, 0) 100%);
}
#play-main .player__right .tabcontents .chat-require-login.active {
  display: block;
}
#play-main .player__right .tabcontents .chatbox_cover {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 3;
}
#play-main .player__right .tabcontents .chatbox_cover::before {
  content: "";
  background-color: #1d1e22;
  background-image: url("/assets/images/chat-hide.jpg");
  background-size: contain;
  background-position: left center;
  background-repeat: repeat-y;
  z-index: 2;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}
#play-main .player__right .tabcontents .chatbox_cover .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  background: #dbae79 !important;
  color: #000;
  border-radius: 20px;
  font-size: 14px;
  text-transform: initial;
  font-weight: 500;
  padding: 8px;
  line-height: 18px;
  width: 180px;
}
#play-main .player__right .tabcontents .chatbox_cover .btn i {
  font-size: 14px;
  margin-right: 3px;
}
#play-main .player__right .tabcontents .chatbox_cover.hide {
  display: none;
}
#play-main .player__right .tabcontents .tabcontent {
  background: #282828;
  min-height: 548px;
  height: 100%;
}
#play-main .player__right .tabcontents .tabcontent.active {
}
#play-main .player__right .tabcontents .tabcontent .chatbox {
  height: 100%;
}
.btn-expand {
  background: #343434 !important;
}
.btn-expand span:before {
  content: "Mở rộng";
}
body.player-full {
  height: 100%;
  overflow: hidden;
}
body.player-full .btn-expand {
  background: #4d5057 !important;
}
body.player-full .btn-expand span:before {
  content: 'Thu gọn';
}
body.player-full .btn-expand i:before {
  content: "\f066";
}
body.player-full #play-main {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  /*padding: 6px;
  */
  padding-bottom: 0;
  height: 100%;
  min-height: -webkit-fill-available;
}
body.player-full #play-main:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #000;
  z-index: -1;
}
body.player-full #play-main .player__left {
  float: none;
  /*width: 100%;
  */
  z-index: 3;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
}
body.player-full #play-main .player__left .embedz {
  /*height: calc(100% - 32px);
  */
  height: calc(100% - 190px);
  padding-bottom: initial;
}
body.player-full #play-main .player__left .embedz::before {
  padding-top: 0;
}
body.player-full #play-main .player__left .title_head {
  display: block;
  padding: 4px;
}
body.player-full #play-main .player__left .title_head h2 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.player-full #play-main .player__right {
  padding-left: 0;
  padding-right: 0;
}
body.player-full #play-main .player__right .vb-chatbox {
  height: 100%;
  overflow: hidden;
}
body.player-full #play-main .player__right .vb-chatbox .chatbox_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 0;
  height: 100%;
}

@media screen and (max-width: 991px) {
  #play-main .player__left {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  #play-main .player__left .match-links {
    float: none;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    display: block !important;
  }
  #play-main .player__left .match-links a {
    display: inline-block !important;
    float: none;
  }
  #play-main .player__right {
    padding-right: 0 !important;
  }
  #play-main .player__right .tab {
    width: calc(100% - 72px);
    justify-content: center;
  }
  #play-main .player__right .btn-control {
    padding: 0;
  }

  #play-main .btnz{
    position: absolute;
    right: 0;
    top: 42px;
    z-index: 5;
    gap: 2px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-top: 0;
    border-bottom: 0;
    font-size: 14px;
  }
  #play-main .btnz span{
    display: none;
  }
  #play-main .btnz i{
    margin-right: 0;
    font-size: 18px;
  }
  #play-main .player__right .btn-control .btn-group {
    /*flex-direction: column;
    */
    position: absolute;
    right: 0;
    top: 1px;
    z-index: 5;
    gap: 2px;
  }
  #play-main .player__right .btn-control .btn-group .btn-tab {
    width: 34px;
    height: 34px;
    line-height: 34px;
    padding: 0;
    border-top: 0;
    border-bottom: 0;
    border-radius: 0;
    font-size: 14px;
    letter-spacing: 1;
  }
  #play-main .player__right .btn-control .btn-group .btn-tab span {
    padding-left: 3px;
  }
  #play-main .player__right .btn-control .btn-group .btn-tab span::before {
    display: none;
  }
  #play-main .player__right .tabcontents {
    height: calc(100% - 35px);
    position: relative;
  }
  body.player-full .embedz {
    height: unset;
    padding-bottom: 59.25% !important;
  }
  body.player-full .title_head {
    display: none !important;
  }
  body.player-full #play-main {
    padding: 0;
  }
  body.player-full #play-main .player__left {
    position: fixed;
  }
  body.player-full #play-main .player__right {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 0;
    top: 260px;
    height: calc(100% - 260px);
  }
  body.player-full .tabcontents {
    height: calc(100% - 36px);
  }
  body.player-full .tabcontents .tabcontent {
    min-height: 100% !important;
  }
  body.player-full .chatbox {
    height: 100%;
  }
  .btn-top {
    display: inline-block;
    height: 28px;
    line-height: 28px;
    padding: 0 4px;
    border-radius: 0.25rem;
    /*margin-left: 5px;
    */
    width: 85px;
  }
  .title_head {
    padding: 6px 0;
  }
  .title_head h2 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 8px;
  }
  .title_head .title_box {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

.smlt-match {
  background: #2f3137;
  width: 100%;
  position: relative;
  min-height: 600px;
}

.sm-map {
  height: 0;
  width: 100%;
  padding-bottom: 92%;
  position: relative;
  border-bottom: 2px solid #336650;
  text-align: center;
  background-color: #205239;
  background-repeat: repeat;
  z-index: 2;
}
.sm-map.reflect {
  transform: rotate(180deg);
  margin-top: -2px;
  z-index: 1;
}
.sm-map.reflect > div:nth-of-type(4) {
  display: none;
}
.sm-map > div {
  border: 2px solid #336650;
  border-radius: 0 0 15px 15px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.sm-map > div:nth-of-type(1) {
  width: 150px;
  height: 50px;
  border-top: none;
}
.sm-map > div:nth-of-type(2) {
  width: 320px;
  height: 130px;
  border-top: none;
}
.sm-map > div:nth-of-type(3) {
  border: none;
  width: 120px;
  height: 40px;
  top: 130px;
  overflow: hidden;
}
.sm-map > div:nth-of-type(3):before {
  content: "";
  border: 2px solid #336650;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.sm-map > div:nth-of-type(4) {
  width: 280px;
  height: 250px;
  border-radius: 50%;
  bottom: -140px;
}

.lineup-list {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  text-align: center;
}

.lineup-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
}

.lineup-list.away {
  top: 50%;
  transform: rotate(180deg);
}
.lineup-list.away .player-item {
  transform: rotate(180deg);
}

.player-item {
  text-align: center;
  position: absolute;
  width: 130px;
  max-width: 20%;
  font-size: 0.8em;
}
.player-item .inner{
  position: relative;
}
.player-item .player-face {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  display: inline-block;
}

.player-item .player-face img {
  height: 100%;
  width: 100%;
}

.player-item .name {
  display: flex;
  align-items: start;
  justify-content: center;
  text-align: left;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-top: -5px;
}

.player-item .name .nu {
  color: rgba(255, 255, 255, 0.6);
  margin-right: 3px;
}

.player-item .rate {
  position: absolute;
  left: 50%;
  top: -5px;
  padding: 1px 3px;
  border-radius: 5px;
  /* background: #b8f28b; */
  color: #111;
  font-weight: bold;
  line-height: 1;
  font-size: 10px;
  width: fit-content;
  text-align: center;
  z-index: 11;
}

.sm-m-content {
  position: relative;
  z-index: 3;
}

.sm-team {
  padding: 10px;
  background: #336650;
  position: relative;
}

.sm-team .team-logo {
  width: 20px;
  height: 20px;
  float: left;
  margin-right: 4px;
}

#h2h .nav-tabs {
  border-top: 1px solid #3F4246;
  border-bottom: 1px solid #3F4246;
  margin-bottom: 20px;
}
#h2h .nav-tabs a {
  padding: 10px 0;
}
#h2h .nav-tabs a::after {
  width: 100%;
}
#h2h .tourz .match--odd {
  flex-direction: column;
  gap: 10px;
}
#h2h .tourz .match__header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  color: #7B7B8D;
}
#h2h .tourz .match__header .match__date {
  color: #fff;
}
#h2h .tourz .match__teams .match__team--name.match__team-home-name {
  text-align: right;
}
#h2h .match-item__footer {
  padding: 10px 0 0;
  display: flex;
  justify-content: center;
  width: 100%;
  border-top: 1px solid #3F4246;
}
#h2h .match-item__footer .flag {
  gap: 10px;
}
#h2h .match-item__footer .flag .d-flex {
  align-items: center;
  gap: 4px;
}
#h2h .match-item__footer .flag__goal-scoring > span:first-child {
  color: #00c44d;
}



.tourz {
  background-color: #14151A;
  margin-bottom: 20px;
}

.tourz li {
  padding: 12px;
}

.league_title img {
  object-fit: contain;
}

.tourz li.league_title {
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.tourz li:nth-child(odd) {
  background-color: #191A20;
}

.tourz .match--odd {
  display: flex;
  align-items: center;
}

.tourz .match__time {
  display: flex;
  font-size: 14px;
  text-align: center;
}


.tourz .match__teams .match__team--name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tourz .time-loaded {
  font-size: inherit;
}

.tourz .grid-match__rate {
  gap: 16px;
  justify-content: unset;
  margin: 0;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #282833;
}

.tourz .match__commentator {
  text-transform: capitalize;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  min-width: 210px;
  color: #7B7B8D;
}

.tourz .team__logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.tourz .match__teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1;
}

.tourz .match__ts {
  font-weight: 700;
  min-width: 60px;
  display: flex;
  gap: 6px;
  justify-content: center;
}

.tourz .match__team {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
  min-width: 100px;
}

.tourz .match__team.team--home {
  flex-direction: row-reverse;
}

.tourz .grid-match__date {
  font-weight: 500;
}


/* ----------------------------------------------------------------INCIDENTS--------------------------------------------------------------------- */
#incidents, #tab-h2h {
  overflow-y: auto;
  max-height: 642px;
  height: 100%;
}

.scrollz::-webkit-scrollbar {
  width: 5px;
}
.scrollz::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 50px;
}
/*.scrollz::-webkit-scrollbar-track {*/
/*  background: rgba(241, 241, 241, 0.5);*/
/*  border-radius: 50px;*/
/*}*/
.match_fact {
  display: flex;
  flex-direction: column-reverse;
}

.match_fact .m-match-vs {
  padding: 15px;
  position: relative;
  overflow: hidden;
}
.match_fact .m-match-vs .team {
  text-align: right;
  width: calc(50% - 40px);
  float: left;
}
.match_fact .m-match-vs .team.team-away {
  text-align: left;
  float: right;
}
.match_fact .m-match-vs .team .team-logo {
  width: 40px;
  height: 40px;
  display: inline-block;
}
.match_fact .m-match-vs .item-info {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100px;
  transform: translate(-50%, -50%);
  text-align: center;
}
.match_fact .item {
  display: block;
  position: relative;
  clear: both;
  padding: 6px 0;
  overflow: hidden;
}
.match_fact .item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #4b4e56;
}
.match_fact .item .mf-content {
  position: relative;
  width: 50%;
  line-height: 1.3em;
  padding: 10px 4px;
  z-index: 3;
  font-size: 12px;
}
.match_fact .item .time {
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  border: 1px solid #4b4e56;
  font-size: 1em;
  background-color: #25272d;
  color: #898f9b;
  z-index: 3;
  text-align: center;
  position: absolute;
  top: calc(50% - 19px);
  left: calc(50% - 19px);
}
.match_fact .item .mf-content .mfc-icon {
  position: absolute;
  top: calc(50% - 10px);
}
.match_fact .item .mf-content .mfc-icon i {
  position: absolute;
}
.match_fact .item .mf-content .inout {
}
.match_fact .item .mf-content .inout i, .match_fact .item .mf-content .inout span {
}
.match_fact .item .mf-content .inout span {

}
.match_fact .item .mf-content .inout i {
}
.match_fact .item .mf-content .in i {
  color: #82ce47;
  font-size: 12px;
  padding-left: 4px;
}
.match_fact .item .mf-content .out i {
  color: #ee4545;
  font-size: 12px;
  padding-right: 4px;
}
.match_fact .item.team-away .mf-content {
  float: right;
  padding-left: 50px;
  text-align: left;
}
.match_fact .item.team-away .mf-content .time {
  left: -25px;
}
.match_fact .item.team-away .mf-content .mfc-icon {
  left: 24px;
}
.match_fact .item.team-home .mf-content {
  padding-right: 50px;
  text-align: right;
}
.match_fact .item.team-home .mf-content .mfc-icon {
  right: 44px;
}
.match_fact .item.team-home .mf-content .time {
  right: -25px;
}
.match_fact .item.item-goal .mfc-icon i {
  color: #25ff70;
}
.match_fact .item.text-center {
  padding: 10px 0;
}
.match_fact .item .mf-alert {
  display: inline-block;
  position: relative;
  z-index: 3;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  background: #4b4e56;
}
.match_fact .item .mf-alert i {
  font-size: inherit;
}
.match_fact .item .mf-player {
  position: absolute;
  left: 10px;
  width: 40px;
  height: 0;
  padding-bottom: 40px;
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: none;
}
.match_fact .item .mfc-icon .vb-icon {
  /*transform: scale(1.2);*/
}

.sprite-icon,
.vb-icon {
  background-image: url(../images/sprite-icon.svg);
  background-size: 400px 400px;
  display: inline-block;
  width: 20px;
  height: 20px;
}

.vb-icon-yellowcard {
  background-position: -60px 0;
}

.vb-icon-redcard {
  background-position: -100px 0;
}

.vb-icon-yellowcarddouble {
  background-position: -80px 0;
}

.vb-icon-var {
  background-position: -120px 0;
}

.vb-icon-goalpenalty {
  background-position: -20px -20px;
}

.vb-icon-misspenalty {
  background-position: -20px 0;
}

.vb-icon-subs {
  background-position: -140px 0;
}

.vb-icon-owngoal {
  background-position: -160px 0;
}



.skeleton *:empty {
  /*background: #f6f7f8;*/
  background: #505050;
  background-position: -500px 0;
  animation: skeletonShine 1s linear 0s infinite normal forwards;
  /*background-image: linear-gradient(135deg,#f6f7f8 0%,#edeef1 20%,#f6f7f8 40%,#f6f7f8 100%);*/
  background-image: linear-gradient(135deg, #434343 0%, #4c4c4c 20%, #414141 40%, #525353 100%);
  background-repeat: no-repeat;
  background-size: 1000px 100%;
}
.skeleton__section + .skeleton__section {
  margin-top: 16px;
}
.skeleton__section--actions {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-bottom: 16px;
}
.skeleton__section--card {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 24px;
}
.skeleton__section--calendar {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-bottom: 16px;
}
.skeleton__tr {
  display: flex;
  gap: 12px;
}
.skeleton__tr:first-child .skeleton__td {
  height: 30px;
  margin-bottom: 6px;
}
.skeleton__td {
  flex: 1 1 100%;
  height: 20px;
  margin: 4px 0;
}
.skeleton__td:nth-child(2) {
  flex-basis: 500%;
}
.skeleton__td:nth-child(3) {
  flex-basis: 300%;
}
.skeleton__td:nth-child(4) {
  flex-basis: 900%;
}
.skeleton__td:nth-child(5) {
  flex-basis: 700%;
}
@keyframes skeletonShine {
  to {
    background-position: 500px 0;
  }
}


#tab-stat {
  padding: 10px;
}
.stats__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0 0;
}
.stats__content .pr__line {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid #363636;
}

.stats__content .pr__line:first-child {
  /*border-bottom: none;
  margin-bottom: 0;*/
}
.stats__content .pr__value {
  position: absolute;
  left: 0;
  bottom: 100%;
}
.stats__content .pr__value.pr__value--away {
  left: auto;
  right: 0;
}
.stats__content .pr__value.pr__win{
  color: #d3a863;
}
.stats__content .pr__title {
  position: absolute;
  bottom: 100%;
  text-align: center;
}
.stats__content .pr__bar-wrapper {
  flex: 1;
  /*background: #292c30;*/
  height: 8px;
  margin-top: 5px;
  display: flex;
  border-bottom-right-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  overflow: hidden;
}
.stats__content .pr__bar-wrapper .pr__bar {
  height: 100%;
  display: block;
  background: #5b6068;
}
.stats__content .pr__bar-wrapper.pr__win .pr__bar{
  background: #d3a863;
}
.stats__content .pr__bar-wrapper.pr__bar-wrapper--home {
  border-radius: 0;
  border-bottom-left-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
  justify-content: flex-end;
}


.stats__all.scrollz {
  height: 202px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 6px 10px;
  background: rgb(90 82 82 / 30%);
  border-radius: 6px;
}
.stats__all.scrollz .stats__content .pr__line:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media (max-width: 991px) {
    .stats__all.scrollz {
      height:fit-content;
      margin: 10px 0;
    }
}

#tab-h2h .tourz {
  background-color: #14151a;
  margin-bottom: 20px;
}
#tab-h2h .tourz .matches__item {
  padding: 8px 10px;
  list-style: none;
}
#tab-h2h .tourz .matches__item .inner{
  display: flex;
  flex-direction: column;
  gap: 3px;
}
#tab-h2h .tourz .match--odd {
  flex-direction: column;
  gap: 10px;
}
#tab-h2h .tourz .match__header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  color: #7b7b8d;
  font-size: 12px;
}
#tab-h2h .tourz .match__header .match__date {
  color: #fff;
}
#tab-h2h .tourz .match__teams .match__team--name.match__team-home-name {
  text-align: right;
}
#tab-h2h .tourz .match-item__footer {
  padding: 10px 0 0;
  display: flex;
  justify-content: center;
  width: 100%;
  border-top: 1px solid #3f4246;
}
#tab-h2h .tourz .match-item__footer .flag {
  gap: 10px;
}
#tab-h2h .tourz .match-item__footer .flag .d-flex {
  align-items: center;
  gap: 4px;
}
#tab-h2h .tourz .match-item__footer .flag__goal-scoring > span:first-child {
  color: #00c44d;
}
#tab-h2h .tourz li.league_title {
  padding: 12px 24px;
  display: flex;
  gap: 10px;
  align-items: center;
}
#tab-h2h .tourz li:nth-child(odd) {
  background-color: #23252f;
}
#tab-h2h .tourz .match--odd {
  display: flex;
  align-items: center;
}
#tab-h2h .tourz .match__time {
  font-size: 14px;
  width: 50px;
  text-align: center;
}
#tab-h2h .tourz .match__time .badge-live {
  margin: 0;
}
#tab-h2h .tourz .time-loaded {
  font-size: inherit;
}
#tab-h2h .tourz .grid-match__rate {
  gap: 16px;
  justify-content: unset;
  margin: 0;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #282833;
}
#tab-h2h .tourz .match__commentator {
  text-transform: capitalize;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  color: #7b7b8d;
}
#tab-h2h .tourz .match__commentator:not(.empty) {
  min-width: 210px;
}
#tab-h2h .tourz .team__logo {
  width: 32px;
  height: 32px;
}
#tab-h2h .tourz .match__teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1;
}
#tab-h2h .tourz .match__teams .match__team--name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 13px;
}
#tab-h2h .tourz .match__ts {
  font-weight: 700;
  min-width: 60px;
  display: flex;
  gap: 6px;
  justify-content: center;
}
#tab-h2h .tourz .match__team {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
  min-width: 100px;
}
#tab-h2h .tourz .match__team.team--home {
  flex-direction: row-reverse;
}
#tab-h2h .tourz .grid-match__date {
  font-weight: 500;
}


.central-sports .tab {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.central-sports .tab .item{
  background: #fff;
  color: #000000;
  border: 0;
  border-bottom: none;
  padding: 0 8px;
  line-height: 32px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
}
.central-sports .tab .item.active{
  background: var(--main-color);
  color: #000;
}
.central-sports .tab .item  span {
  padding-left: 3px;
}

