@font-face {
  font-family: 'SFCompactDisplay';
  src: url('../fonts/SFCompactDisplay-Regular.eot');
  src: url('../fonts/SFCompactDisplay-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SFCompactDisplay-Regular.woff2') format('woff2'),
    url('../fonts/SFCompactDisplay-Regular.woff') format('woff'),
    url('../fonts/SFCompactDisplay-Regular.ttf') format('truetype'),
    url('../fonts/SFCompactDisplay-Regular.svg#SF Compact Display') format('svg');
  font-weight: 400;
}

@font-face {
  font-family: 'SFCompactDisplay';
  src: url('../fonts/SFCompactDisplay-Semibold.eot');
  src: url('../fonts/SFCompactDisplay-Semibold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SFCompactDisplay-Semibold.woff2') format('woff2'),
    url('../fonts/SFCompactDisplay-Semibold.woff') format('woff'),
    url('../fonts/SFCompactDisplay-Semibold.ttf') format('truetype'),
    url('../fonts/SFCompactDisplay-Semibold.svg#SF Compact Display') format('svg');
  font-weight: 500;
}

:root {
  --black-color: #000;
  --white-color: #fff;
  --dark-gray: #A0A0A0;
  --light-gray: #cacaca;

  --primary-color: #1eafb3;
  --secondary-color: #b8292f;
  --ternary-color: #323232;

  --likely-teal: #1eafb3;
  --likely-red: #b8292f;

  --dark-gray: #979797;
  --light-gray: #cacaca;

  --font-body: 16px;

  --h1-font: 32px;
  --h2-font: 28px;
  --h3-font: 24px;
  --h4-font: 20px;
  --h5-font: 17px;
  --h6-font: 14px;

  --sfcompact-font: 'SFCompactDisplay', sans-serif;
  /* font case */
  --text-capitalize: capitalize;
  --text-uppercase: uppercase;
  --text-lowercase: lowercase;
}

/* rest css / utility css */
*,
::after,
::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  font-size: var(--font-body);
  font-weight: 400;
  color: var(--black-color);
  line-height: 1.3;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
  font-family: var(--sfcompact-font);
  background: #e6e6e6;
}

a {
  text-decoration: none;
  display: inline-block;
  box-shadow: none !important;
  outline: none;
}

a:hover {
  text-decoration: underline;
  cursor: pointer;
}

button,
input[type="submit"] {
  cursor: pointer;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

button,
input,
textarea,
a {
  box-shadow: none !important;
  outline: none !important;
}

a:hover {
  text-decoration: none;
}

img,
svg {
  border-style: none;
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  outline: none;
  box-shadow: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

ul li {
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-family: var(--sfcompact-font);
}

h1 {
  font-size: var(--h1-font);
}

h2 {
  font-size: var(--h2-font);
}

h3 {
  font-size: var(--h3-font);
}

h4 {
  font-size: var(--h4-font);
}

h5 {
  font-size: var(--h5-font);
}

h6 {
  font-size: var(--h6-font);
}

p {
  margin: 0 0 1rem 0;
}

b,
strong {
  font-weight: 500;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000000s ease-in-out 0s;
}


/* =================== header css ================ */
header.header {
  background: var(--black-color);
  color: var(--white-color);
  padding: 60px 0 25px;
}

.navbar-brand img {
  max-width: 250px;
}

nav.navbar {
  padding: 0;
  align-items: flex-end;
  gap: 10px 30px;
}

nav.navbar .navbar-collapse {
  align-items: flex-end;
  justify-content: space-between;
}

.right-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

ul.menu li img {
  width: 35px;
  object-fit: contain;
}

ul.menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

form.header-form {
  position: relative;
}

form.header-form input.form-control {
  border: 3px solid var(--primary-color);
  border-radius: 40px;
  background: transparent;
  padding: 4px 20px 4px 40px;
  color: var(--white-color);
  font-weight: 400;
}

form.header-form input.form-control::placeholder {
  color: #fff;
}

.right-header ul li img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #1eafb3;
  object-fit: cover;
  background: #1eafb3;
}

form.header-form .btn-search {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
}

button.btn-search img {
  width: 19px;
}

button.btn-search {
  border: 0;
  padding: 0;
  background: transparent;
}

ul.navbar-nav {
  gap: 10px 30px;
}

ul.navbar-nav li a.nav-link {
  padding: .5rem 2rem !important;
  border-radius: 40px;
  background: var(--ternary-color);
  color: var(--white-color);
}

ul.navbar-nav li a.nav-link.active {
  background: var(--primary-color);
}

a.navbar-brand {
  padding: 0;
}

/*============== Footer ===================*/
footer.footer {
  padding: 30px 0 40px;
}

.footer-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 570px;
  gap: 15px;
  margin: 0 auto;
}

.width-30 {
  width: 100%;
  max-width: 33.333%;
}

.footer-menu ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-menu ul li a {
  color: var(--black-color);
}

.footer-social ul {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 15px;
}

.footer-social ul p {
  margin: 0;
}

.footer-social ul li a {
  color: var(--black-color);
  font-size: 24px;
}

p.copyrights {
  margin: 0;
  font-size: 16px;
}

/* ===========================================
Global
 ========================================= */

/*btn*/
button.icon-btn {
  background: none;
  border: none;
  padding: 0;
}

/*col-grid-class*/
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*BG color*/
.bg-red {
  background-color: var(--likely-red);
  color: #fff;
}

.bg-teal {
  background-color: var(--likely-teal);
  color: #fff;
}

.bg-black {
  background-color: var(--black-color);
  color: #fff;
}

/*badges*/
.badge {
  width: 33px;
  height: 24px;
  border-radius: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

/*icons*/
.icon-image {
  display: inline-block;
}

.icon-image:after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.icon-image.icon-calander:after {
  background-image: url('../images/SVG/icon-calander.svg');
}


/* ===========================================
 main css start
 ========================================= */
.page-wrapper {
  padding: 20px 0;
  display: flex;
}

.main-content {
  width: 100%;
  max-width: calc(100% - 285px);
  box-shadow: 0 0 15px 3px #a3a3a38a;
  padding: 20px;
  border-radius: 16px;
  background-color: #fff;
}

.sidebar {
  width: 100%;
  max-width: 270px;
  box-shadow: 0 0 15px 3px #a3a3a38a;
  padding: 20px;
  border-radius: 16px;
  background-color: #fff;
  position: relative;
}

aside.sidebar.sidebar-left .side-head {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 15px;
}

.side-head.favourites-badge>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
}

.side-head.favourites-badge>a.current {
  background: #b8292f;
  color: #fff;
  border-radius: 15px;
  padding: 4px 10px 5px 10px;
}

.side-head.favourites-badge>a.current svg {
  fill: white;
}

.side-head.favourites-badge>a.current .badge {
  background: #fff;
  color: #b8292f;
}

.side-head.favourites-badge .title {
  margin: 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0 5px;
  font-weight: 500;
}

.side-head.favourites-badge .title svg {
  fill: var(--secondary-color);
  width: 22px;
  height: 22px;
}

.sidebar-category-links .category-title {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--dark-gray);
  font-weight: 400;
}

.sidebar-nav .submenu {
  display: none;
  padding-left: 10px;
  margin-bottom: -1px;
}

.sidebar-nav>li {
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.sidebar-nav>li:first-child {
  border-top: none;
}

.sidebar-nav>li>a {
  font-weight: 500;
  color: #000;
  padding: 8px 20px 8px 0;
  display: block;
  position: relative;
  line-height: 1.1;
  z-index: 1;
}

.sidebar-nav>li>a:before,
.sidebar-category-links:not(.coming_soon) .sidebar-nav>li .submenu li>a:before {
  content: "";
  background: var(--likely-teal);
  position: absolute;
  top: 0;
  left: -5px;
  height: 100%;
  z-index: -1;
  border-radius: 12px;
  width: calc(100% + 14px);
  opacity: 0;
}

.sidebar-nav>li.has-children>a {
  position: relative;
}

.sidebar-nav li.has-children>a:after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  background: url(../images/SVG/angle-right-teal.svg) no-repeat center center;
  top: 7px;
  width: 10px;
  height: 16px;
  transition: all 0.3s;
}

/* .sidebar-nav li.menu-item.has-children.active_menu.active>a:before {
  background-color: transparent;
} */

/* .sidebar-nav li.menu-item.has-children.active_menu.active>a:after {
  background-image: url(../images/SVG/angle-right-teal.svg);
} */

.sidebar-nav li.has-children.active_menu>a:after {
  transform: rotate(90deg);
}

.sidebar-nav>li.has-children.active.active_menu>a {
  background-color: transparent;
  color: #000;
  padding-left: 0;
}

.sidebar-nav>li.active.active_menu>a:before {
  opacity: 1;
}

.sidebar-nav>li.has-children.active.active_menu>a {
  border-radius: 15px;
  background-color: transparent;
  color: #000 !important;
}

.sidebar-nav>li.active.active_menu>a:before {
  opacity: 0;
}

.sidebar-nav>li.has-children.active.active_menu>a:after {
  /* background-image: url('../images/SVG/angle-right-white.svg'); */
  transform: rotate(90deg);
}




/* .sidebar-category-links:not(.coming_soon) .sidebar-nav>li.has-children .submenu >li.has-children.active.active_menu > a {
  background-color: var(--likely-teal);
  color: #fff;
  z-index: 1;
}
.sidebar-category-links:not(.coming_soon) .sidebar-nav>li.has-children .submenu >li.has-children.active.active_menu > a:after {
  background-image: url('../images/SVG/angle-right-white.svg');
}

.sidebar-category-links:not(.coming_soon) .sidebar-nav>li.has-children .submenu >li.has-children.active.active_menu > a:before {
  opacity: 1;
} */

.sidebar-nav .submenu li {
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);

}

.sidebar-nav .submenu li:first-child {
  border-top: none;
}

.sidebar-nav .submenu li>a {
  color: #000;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding: 5px 0 5px 40px;
  position: relative;
  text-transform: uppercase;
  border-radius: 20px;
}

.sidebar-nav .submenu li.active>a::after {
  transform: rotate(90deg);
}

.sidebar-nav .submenu li>a>.icon {
  max-width: 27px;
  max-height: 22px;
  margin: 0 5px 0 0;
  position: absolute;
  left: 0;
}

li.menu-item.has-children.active_menu {
  border-bottom: none;
}

li.menu-item.has-children.active_menu .submenu li>ul li.current {
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 4px;
}

/* .sidebar-nav .submenu li > a > .icon > img{
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
} */

.sidebar-nav .submenu li>ul {
  padding-left: 40px;
}

.sidebar-nav .submenu li>ul>li a {
  padding-left: 0;
}

.sidebar-nav .submenu li>ul>li.current a {
  border-radius: 15px;
  background-color: var(--likely-teal);
  color: #fff;
  padding-left: 10px;
}

.sidebar-nav li.menu-item.has-children.active {
  border-bottom: none;
}

ul.submenu.menu-open li.has-children.active {
  border-bottom: none;
}

ul.submenu.menu-open li.current {
  border-bottom: none;
}

/*Main content*/
.main-content.content-right {
  margin-left: auto;
}

.top-links {
  overflow: hidden;
}

.top-links>ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
}

.top-links>ul>li {
  margin-right: 7px;
}

.top-links>ul>li.current>a {
  background-color: var(--likely-teal);
}

.top-links>ul>li:hover>a {
  background-color: var(--dark-gray);
}

/* .top-links>ul>li.current:hover {
  background-color: var(--likely-teal);
} */
.top-links>ul>li.current:hover a {
  background-color: var(--likely-teal);
}

.top-links>ul>li.current>a {
  font-weight: 300;
}

.top-links>ul>li>a {
  height: 30px;
  border-radius: 18px;
  background-color: #cacaca;
  color: #fff;
  display: inline-block;
  line-height: 1;
  padding: 4px 10px 4px 10px;
  letter-spacing: 0.1em;
  font-weight: 300;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 23px;
}

.main-top-header.flex-between {
  align-items: flex-start;
  /* height: 30px; */
}

.date-navigation {
  display: flex;
  align-items: center;
  position: relative;
}

.date-navigation .date {
  display: flex;
  align-items: center;
  line-height: 1;
  font-weight: 500;
  padding: 0 12px 0 0px;
  color: var(--dark-gray);
}

.date-navigation .date .icon-image {
  margin: 0 0 0 8px;
  display: block;

}

.date-navigation .date .icon-image:after {
  width: 25px;
  height: 34px;
}

.date-navigation>a {
  line-height: 1;
  position: relative;
  display: inline-block;
  top: 1px;
}

.date-navigation .prev:after,
.date-navigation .next:after {
  content: "";
  border-left: 9px solid var(--likely-teal);
  width: 20px;
  height: 17px;
  display: inline-block;
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  border-right: 8px solid transparent;
}

.date-navigation .prev:after {
  border-right: 9px solid var(--likely-teal);
  border-left: 8px solid transparent;
}

.date-navigation .prev_league:after,
.date-navigation .next_league:after {
  content: "";
  border-left: 9px solid var(--likely-teal);
  width: 20px;
  height: 17px;
  display: inline-block;
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  border-right: 8px solid transparent;
}

.date-navigation .prev_league:after {
  border-right: 9px solid var(--likely-teal);
  border-left: 8px solid transparent;
}

.sports-table-cards {
  margin-top: 10px;
}

.table-title {
  font-size: 16px;
  font-weight: 500;
  padding: 9px 12px;
  height: 39px;
  border-radius: 14px 14px 0 0;
}

.card-panel.accordion-item {
  border: none;
}

.card-title.card-toggle-title {
  background: #1eafb3;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  gap: 0 10px;
  position: relative;
  margin-bottom: 8px;
}

.card-title.card-toggle-title.bg-gray {
  background-color: var(--dark-gray);
}

.card-title.card-toggle-title>.icon {
  max-width: 25px;
}

.card-title.card-toggle-title:after {
  content: "";
  background: url(../images/SVG/angle-right-white.svg) no-repeat center center;
  background-size: auto 18px;
  width: 10px;
  height: 18px;
  position: absolute;
  left: auto;
  right: 12px;
  top: 9px;
  transform: rotate(90deg);
}

.card-title.card-toggle-title.collapsed:after {
  transform: rotate(360deg);
}

.card-panel .card-content .card-item {
  border: 2px solid var(--dark-gray);
  border-radius: 0 23px 23px;
  margin-bottom: 17px;
  position: relative;
  padding: 40px 20px 30px 20px;
}

.card-panel .card-content .card-item .date {
  width: 126px;
  height: 28px;
  background-color: var(--dark-gray);
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 3px 0;
}

.match-meta-list {
  display: flex;
  align-items: center;
  gap: 0 15px;
}

.match-meta-list>li {
  position: relative;
  padding-right: 16px;
  padding-top: 2px;
}

.match-meta-list>li:not(:last-child):after {
  content: "";
  background: url(../images/SVG/angle-right-white.svg) no-repeat center center;
  background-size: auto 13px;
  width: 9px;
  height: 16px;
  position: absolute;
  left: auto;
  right: -3px;
  top: 5px;
}

.card-item .bet-table {
  display: flex;
  padding-left: 15px;
}

.card-item .bet-table .col-time {
  flex: 0 0 2%;
  display: flex;
  align-items: center;
  gap: 0 5px;
}

.card-item .bet-table .col-time>span {
  letter-spacing: 3px;
  color: var(--dark-gray);
  line-height: 1;
  text-transform: uppercase;
  position: absolute;
  left: 134px;
  top: 6px;
}

.card-item .bet-table .col-fixture {
  flex: 0 0 98%;
  text-align: center;
  margin-left: auto;
}

.card-item .bet-table .col-fixture .row {
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.card-item .bet-table .col-fixture .col {
  flex: inherit;
  width: 100%;
  max-width: 100%;
}

/* .card-item .bet-table .col-fixture .col.mid-col-vs {
  max-width: 90px;
} */
.card-item .bet-table .col-fixture .col:nth-child(2) {
  max-width: 130px;
}

.card-item .bet-table .col-fixture .col.mid-col-vs:nth-child(2) {
  max-width: 60px;
}

.card-item .bet-table .col-fixture .col:nth-child(1) .select-bet {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.card-item .bet-table .col-fixture .col:nth-child(1) .select-bet>span {
  width: 100%;
  max-width: 90px;
}

.card-item .bet-table .col-fixture .col:nth-child(3) .select-bet>span {
  width: 100%;
  max-width: 90px;
}

.card-item .bet-table .col-fixture .col:nth-child(3) .select-bet {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

.bet-table .team-info {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0 10px;
  justify-content: center;
}

.bet-table:last-child .team-info {
  text-align: left;
  justify-content: flex-start;
}

.bet-table .col:first-child .team-info {
  text-align: right;
  justify-content: flex-end;
}

.bet-table .team-info>img {
  max-height: 40px;
}

.bet-table .team-info,
.bet-table .match-state {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.bet-table .match-state {
  font-size: 26px;
  color: #ffffff;
  font-weight: 500;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: inherit;
  gap: 0 2px;
}

.hidden {
  display: none;
}

.bet-table .match-state .status {
  background: black;
  min-width: 50px;
  display: block;
  padding: 3px 6px;
}

.bet-table .match-state .status.low.equal,
.bet-table .match-state .status.low {
  background-color: #000;
}

.bet-table .match-state .status.high.equal,
.bet-table .match-state .status.high {
  background-color: var(--likely-teal);
}

.select-bet>span {
  font-size: 17px;
  letter-spacing: 3px;
  color: #979797;
  margin-bottom: 5px;
  display: block;
}

.bet-price.checkbox {
  cursor: pointer;
}

.bet-price.checkbox input+label {
  cursor: pointer;
}

.bet-price.checkbox .input-check {
  display: none;
}

.bet-price.checkbox .input-check+label {
  width: 93px;
  height: 35px;
  border-radius: 18px;
  border: 1px solid #1eafb3;
  display: flex;
  align-items: center;
  gap: 0 2px;
  color: #000000;
  font-weight: 500;
  margin: 0 auto;
}

.bet-price.checkbox .input-check:checked+label {
  background: #1eafb3;
  color: #fff;
}

.bet-price.checkbox .input-check+label .image {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  overflow: hidden;
}

.bet-price.checkbox .input-check+label .image img {
  width: 33px;
  height: 33px;
}

.bet-table .match-state .status:first-child {
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}

.bet-table .match-state .status:last-child {
  border-radius: 0 20px 20px 0;
}

/*Championship Window CSS*/

.leauge-main-block {
  /* justify-content: center; */
  align-items: center;
  gap: 0 10px;
  display: flex;
  margin-bottom: 15px;
}

.player-main-information {
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  display: flex;
  margin-bottom: 15px;
}

.player-information {
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 20px;
}

.leauge-main-block img {
  width: 100%;
  max-width: 100px;
  object-fit: contain;
}

.player-main-information img {
  width: 100%;
  max-width: 160px;
  object-fit: contain;
  border-radius: 50%;
  background: #cacaca;
}

.player-team-logo {
  text-align: center;
}

.player-team-logo img {
  width: 100%;
  max-width: 125px;
  object-fit: contain;
}

.player-main-information h2 span {
  font-weight: normal;
  font-size: 20px;
}

.information-heading h4 {
  font-size: 17px;
  color: #979797;
  font-weight: 100;
}

.information-heading p {
  font-weight: 500;
}

.information-heading {
  position: relative;
  flex: 1;
}

.information-heading::after {
  content: "";
  width: 1px;
  height: 50px;
  background-color: #979797;
  position: absolute;
  top: 0px;
  right: -10px;
}

.information-heading:last-child:after {
  content: none;
}

.leauge-main-block h3 span {
  font-weight: normal;
  font-size: 20px;
}

.sports-table-cards.championship-main-section .table-title.bg-black.results {
  margin-bottom: 0px;
}

.sports-table-cards.championship-main-section .table-title.bg-black {
  margin-bottom: 15px;
  position: relative;
}

.sports-table-cards.championship-main-section h4.bottom-title {
  color: #1eafb3;
  margin-bottom: 15px;
  font-size: 16px;
}

.sports-table-cards.home_matches h4.bottom-title {
  color: #1eafb3;
  margin-bottom: 15px;
}

#load-more-recentFixtures {
  cursor: pointer;
}

#load-more-matches {
  cursor: pointer;
}

#load-more-upcomingFixtures {
  cursor: pointer;
}

#advanced_championship {
  cursor: pointer;
}

.matchList {
  cursor: pointer;
}

.team_detail_page {
  cursor: pointer;
}

.toggle-password {
  cursor: pointer;
}

.sports-table-cards.championship-main-section .card-item .bet-table .col-fixture .row {
  justify-content: center;
}

.sports-table-cards.championship-fixtures-section .card-item .bet-table .col-fixture .row {
  justify-content: center;
}

.sports-table-cards .match-state h3 {
  color: #979797;
}

.team-betting-section .match-state h3 {
  color: #979797;
}

.team-info-tip {
  position: absolute;
  right: 20px;
  top: 5px;
}

.table-title.bg-black a img {
  width: 20px
}

.team-wrap-tab {
  display: flex;
  justify-content: space-between;
}

.team-info-tip img {
  width: 35px;
  object-fit: contain;
}

.team-info-tip:hover .info-text-block {
  display: block;
}

.team-info-tip .info-text-block {
  display: none;
  position: absolute;
  box-shadow: 0 0 7px 7px #a3a3a38a;
  padding: 15px;
  border: 1px solid var(--dark-gray);
  border-radius: 23px 0px 23px 23px;
  background-color: #fff;
  right: 6px;
  width: 300px;
  top: 25px;
  z-index: 99999;
  color: #000;
  font-weight: normal;
}

.team-info-tip .info-text-block .chart-info ul {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.team-info-tip .info-text-block .chart-info ul li {
  text-transform: capitalize;
}

.team-info-tip .info-text-block .chart-info ul li a {
  height: 25px;
  padding: 4px 9px 4px 9px;
  background-color: var(--likely-teal);
  color: #fff;
  display: inline-block;
  line-height: 1;
  border-radius: 18px;
  margin-right: 5px;
}

.team-info-tip .info-text-block .chart-info ul li.loss a {
  background-color: var(--likely-red);
}

.team-info-tip .info-text-block .chart-info ul li.draw a {
  background-color: var(--light-gray);
}

.team-info-tip .info-text-block .chart-info ul li.notplayed a {
  background-color: var(---white-color);
  color: #000;
}

.team-info-tip .info-text-block p {
  margin-bottom: 0px;
  font-size: 14px;
}

.team-wrap-tab .top-links ul {
  margin-bottom: 8px;
}

.team-wrap-tab .bet-table {
  margin-right: 7px;
  ;
}

.team-wrap-tab .bet-table .match-state {
  font-size: inherit;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}

.team-wrap-tab .bet-table .match-state .status.position {
  background-color: #cacaca;
  text-align: center;
}

li.custom-count input {
  border: none;
  background: #fff;
  width: 90px;
  height: 27px;
  border-radius: 18px;
  padding: 5px 7px;
  color: #979797;
}

.team-wrap-tab .top-links ul li.custom-count a {
  padding: 6px 12px 5px 14px;
  color: #fff;
  height: 40px;
}

.team-wrap-tab .top-links ul li.custom-count a i {
  font-size: 20px;
}

.sports-table-cards.championship-main-section {
  margin-top: 20px;
}

.team-wrap-tab .top-links ul.half-btn-section {
  margin-left: 15px;
}

.team-wrap-tab .top-links ul.half-btn-section.htft-btn {
  margin-left: 0;
}

.team-wrap-tab .top-links ul.half-btn-section li a {
  background-color: var(---white-color);
  color: var(--likely-teal);
  border: 2px solid #1eafb3;
  padding: 4px 10px 4px 10px;
  line-height: 19px;
}

.team-wrap-tab .top-links ul.half-btn-section li.current a,
.team-wrap-tab .top-links ul.half-btn-section li:hover a {
  background-color: var(--likely-teal);
  color: #fff;
  border: 2px solid #1eafb3;
}

.top-links>ul>li.current.afl>a {
  background: #b8292f;
}

.win {
  display: flex;
  background: #000;
  color: #fff;
  font-weight: 500;
  border-radius: 20px 20px 20px 20px;

}

.win .win-percent {
  padding: 10px 23px;
  width: 100%;
  max-width: 65px;
  position: relative;
  right: auto;
  left: 0;
}

.win-mid {
  display: flex;
  overflow: hidden;
  border-radius: 23px;
  border: 2px solid #fff;
  gap: 2px;
  background: #fff;
  border-bottom: none;
}

.win-mid span {
  height: 100%;
  display: flex;
  width: 33.33px;
  margin: 0;
  align-items: center;
  padding: 0 10px;
}

.percentage-block.percentage-title .win {
  background: #fff;
  color: #979797;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 400;
}

.percentage-block.percentage-title .win .win-teal {
  background: #fff;
}

.percentage-block.percentage-title .win .win-loss {
  background: #fff;
}

.percentage-block.percentage-title .win .win-draw {
  background: #fff;
}

.percentage-block.percentage-title .win-mid {
  border-radius: 0;
  border: none;
}

.win .win-teal {
  background-color: var(--likely-teal);
}

.win .win-loss {
  background: #b8292f;
}

.win .win-draw {
  background-color: #cacaca;
}

.win .avg-percent {
  padding: 10px 23px;
  width: 100%;
  max-width: 62px;
  position: relative;
  right: 15px;
  left: auto;
}

.percentage-block {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-left: 5px;
  margin-bottom: 2px;
}

.match-block {
  display: flex;
  width: 100%;
  max-width: 320px;
  text-align: start;
  align-self: center;
  align-items: end;
  justify-content: end;
}

.match-block h5 {
  color: #979797;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 400;
  position: relative;
  left: 0;
  right: 0;
  top: -3px;
  margin-bottom: 11px;
  text-transform: uppercase;
}

.match-block.last-five h5 {
  color: #979797;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 4px;
  text-transform: uppercase;
  position: relative;
  top: 0px;

}

.match-block.last-five .win .win-percent,
.match-block.last-five .win .avg-percent {
  padding: 2px 23px;
}

.team-form-table table {
  text-align: center;
}

.team-form-table .top-links {
  justify-content: center;
  display: flex;
}

.team-form-table .bet-table.team-opp .match-state {
  font-size: 17px;
  margin-bottom: 0;
  align-items: center;
  text-align: center;
  min-height: 30px;
}

.team-form-table table td {
  vertical-align: middle;
  font-weight: 500;
}

/* .team-form-table img {
  max-width: 30px;
} */
.team-form-table.standings-tbl td img {
  max-width: 30px;
}

.team-form-table .leauge-main-block {
  margin-bottom: 0;
}

.team-form-table .leauge-main-block p {
  font-size: 15px;
  margin-bottom: 0;
}

.team-form-table.standings-tbl .leauge-main-block p {
  font-size: 13px;
  margin-bottom: 0;
  font-weight: 500;
}

.team-form-table.standings-tbl .leauge-main-block img {
  max-width: 27px;
}

.team-form-table .top-links>ul>li.draw>a,
.team-form-table .top-links>ul>li.draw:hover>a {
  background-color: var(--light-gray);
}

.team-form-table .top-links>ul>li.loss>a,
.team-form-table .top-links>ul>li.loss:hover>a {
  background-color: var(--likely-red);
}

.team-form-table thead th {
  color: #979797;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  vertical-align: middle;
  position: relative;
}

.team-form-table thead th .arrow {
  display: block;
  float: right;
  margin-top: 0px;
  border-color: transparent;
  border-top-color: #979797;
  border-style: solid;
  border-width: .5em .31em 0;
  width: 0;
  height: 0;
  position: relative;
  line-height: 0;
  font-size: 25px;
  position: absolute;
  top: -6px;
  left: 10px;
}

.team-form-table.standings-tbl thead th .arrow {
  left: 0;
  right: 0;
  margin: 0 auto;
}

.team-form-table.standings-tbl th {
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  cursor: pointer;

}

.team-form-table.standings-tbl td {
  font-weight: 500;
  font-size: 14px;
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  height: 40px;
  vertical-align: middle;
}

.team-form-table.standings-tbl .leauge-main-block.team_detail_page {
  white-space: nowrap;
  overflow: hidden;
  /* justify-content: center; */
}

.team-form-table.standings-tbl .leauge-main-block.team_detail_page img {
  max-width: 26px;
}

.team-form-table.standings-tbl .leauge-main-block.team_detail_page p {
  font-size: 13px;
  margin-bottom: 0;
  font-weight: 500;
}

.team-betting-section {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.team-betting-section .team-main-name {
  text-align: center;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  width: 100%;
}

.team-betting-section .team-main-name h3 {
  font-size: 19px;
  line-height: 25px;
  cursor: pointer;
}

.team-betting-section .team-main-name h3:hover {
  text-decoration: underline;
}

.team-main-name img {
  width: 100%;
  max-width: 110px;
  padding-bottom: 12px;
  height: 100%;
  object-fit: contain;

}

.team-betting-section .team-vs h3 {
  color: #979797;
}

.team-address h4 {
  color: #979797;
  text-align: center;
  margin-top: 14px;
  font-size: 16px;
}

.top-links.team-batting-tab li.brand-logo a {
  background: #000;
  padding: 0px;
}

.top-links.team-batting-tab li.brand-logo img {
  /* width: 100%; */
  max-width: 85px;
  object-fit: cover;
  padding:4px 10px;
}

.top-links.team-batting-tab li a {
  text-align: center;
  height: auto;
}

.top-links.team-batting-tab {
  margin-top: 20px;
  overflow: hidden;
}

.team-wrap-tab .top-links.team-batting-tab ul {
  width: 100%;
  max-width: 100%;
  overflow: auto;
}

.team-risk-block {
  display: flex;
  justify-content: space-around;
  padding: 35px 0;
}

.team-risk-block h3 {
  margin-bottom: 25px;
}

.team-risk-block h4 {
  color: #979797;
  font-weight: normal;
}

.bet-button a {
  height: 44px;
  border-radius: 18px;
  display: inline-block;
  line-height: 1;
  padding: 10px 20px 10px 20px;
  letter-spacing: 0.1em;
  background-color: var(---white-color);
  color: #000;
  border: 2px solid #1eafb3;
  font-size: 21px;
  font-weight: 500;
}

.bet-button a:hover {
  background-color: var(--likely-teal);
  color: #fff;
}

.team-odds-button .odds-top-link ul {
  display: flex;
  justify-content: space-around;
  margin-bottom: 15px;
}

.team-odds-button .odds-top-link ul li.bet-icon img {
  object-fit: cover;
  width: 100px;
  height: 40px;
  ;
  border-radius: 23px;

}

.odds-top-link li a {
  height: 40px;
  border-radius: 23px;
  display: inline-block;
  line-height: 1;
  /* padding: 13px 47px 13px 47px; */
  letter-spacing: 0.1em;
  font-weight: 400;
  background-color: var(---white-color);
  color: #000;
  border: 2px solid #979797;
  font-size: 15px;
  font-weight: normal;
  width: 100px;
  text-align: center;
  line-height: 37px;
}

.odds-top-link span.top-head {
  color: #979797;
}

.odds-top-link li.current a,
.odds-top-link li:hover a {
  border: 2px solid var(--likely-teal);
  font-weight: 500;
}

.bet-table.team-betting-section .match-state {
  text-align: center;
}

.team-form-table {
  margin-top: 15px;
}

.bet-win {
  width: 155px;
  height: 45px;
  border-radius: 23px;
  display: flex;
  align-items: center;
  gap: 0 25px;
  font-weight: 500;
  background: #1eafb3;
  color: #fff;
  padding: 23px 5px;
}

.bet-win span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  color: #1eafb3;
  background: #fff;
  text-align: center;
  font-size: 15px;
  line-height: 40px;
}

.bet-win a {
  text-align: center;
  color: #fff;
  font-size: 20px;
}

.bet-win.bet-draw {
  background: #979797;
}

.bet-win.bet-draw span {
  color: #979797;
}

.bet-win.bet-loss {
  background: #b8292f;
}

.bet-win.bet-loss span {
  color: #b8292f;
}

.date-navigation #datepicker {
  width: 136px;
  outline: none;
  border: none;
  padding: 6px 6px 6px 14px;
  color: #979797;
  font-weight: 500;
  font-size: 14px;

}

.date-navigation #yearPicker {
  width: 70px;
  outline: none;
  border: none;
  padding: 6px 6px 6px 21px;
  color: #979797;
  font-weight: 500;

}

.date-navigation.date-container .date-text {
  position: absolute;
  top: 6px;
  left: 12px;
  color: #979797;
}

.date-navigation.date-container .date-icon {
  /* pointer-events: none; */
  cursor: pointer;
  color: #aaa;
}

.date-navigation.date-container #date {
  width: 110px;
  outline: none;
  border: none;
  padding: 6px 28px;
  color: #aaa;
}

.disabled-link {
  color: #999;
  /* Change the color to a visually subdued one */
  cursor: not-allowed;
  /* Change the cursor to indicate non-interactivity */
  text-decoration: none;
  /* Remove the underline */
  pointer-events: none;
  /* Disable pointer events to prevent click actions */
}

.card-title.card-toggle-title.tab-button-arrow:after {
  content: none;
}

.tab-button-arrow .arrow-down {
  position: absolute;
  right: 9px;
  border: none;
  background: transparent;
}

.tab-button-arrow .arrow-down img {
  height: 13px;
  width: 18px;
}

.match-meta-list li a {
  color: #fff;
  text-decoration: none;
}

#teams_standing_length {
  display: none;
}

#teams_standing_filter {
  display: none;
}

#teams_standing_info {
  display: none;
}

#teams_standing_paginate {
  display: none;
}

/*Tab Home Css Start*/

/* .top-custom-tab .nav-tabs .nav-link {
  height: 35px;
  border-radius: 18px;
  background-color: #cacaca;
  color: #fff;
  display: inline-block;
  line-height: 1;
  padding: 9px 12px 9px 12px;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-right: 7px;
}
.top-custom-tab .nav-tabs .nav-link.active,
.top-custom-tab .nav-tabs .nav-link:hover{
  background-color: var(--likely-teal);

}
.top-custom-tab .nav-tabs{
  border-bottom: none;
} */


/*Tab Home Css End*/

/* login Screen */
main.main-content.content-right.main-profile h3 {
  font-weight: 100;
}

main.main-content.content-right.main-profile .subscriptions-title h3 {
  font-weight: 500;
}

.main-profile .profile-box {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.profile-edit a {
  height: 42px;
  border-radius: 18px;
  display: inline-block;
  line-height: 1;
  padding: 12px 12px 9px 14px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #b8292f;
  border: 2px solid #b8292f;
}

.profile-edit a:hover {
  border: 2px solid #b8292f;
  background-color: #b8292f;
  color: #fff;
}

.profile-edit-remove {
  display: flex;
  align-items: center;
  margin-top: 32px;
}

.profile-edit-button {
  margin-left: 25px;
}

.profile-person {
  width: 100%;
  max-width: 132px;
  height: 130px;
  border-radius: 50%;
}

.profile-person img {
  width: 100%;
  max-width: 132px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #1eafb3;
  height: 130px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

/* .main-profile .profile-box input[type="file"] {
    display: none;
  } */
.profile-edit-button a {
  height: 42px;
  border-radius: 11px;
  background-color: #cacaca;
  color: #334155;
  display: block;
  line-height: 1;
  padding: 13px 20px 10px 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

a.edit-photo i {
  padding-right: 4px;
}

.main-profile .profile-box input {
  background-color: #fff !important;
}

.profile-email {
  display: flex;
  border: 2px solid #ced4da;
  border-radius: 8px;
  margin-bottom: 15px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
}

.gender-selection select.form-control {
  width: 100%;
  width: 150px;
  border: none;
  box-shadow: none;
  background: url("../images/SVG/black_down_arrow.svg") 100%/12% no-repeat;
}

div#phone_number-error {
  margin-bottom: 15px;
}

.profile-email.form-group .city-name {
  max-width: 100px;
}

.profile-email.form-group.profile-tel .city-name {
  max-width: 220px;
}

.profile-email.form-group.country-menu .city-name {
  max-width: 100%;
  /* width: 100%; */
}

.name-section input {
  border: none;
  /* width: 100%; */
  background: none;
}

.gender-selection {
  position: relative;
}

.name-section {
  width: 100%;
}

.register-section label {
  font-weight: 500;
  text-transform: math-auto;
  margin-bottom: 5px;
}

.register-section {
  margin-top: 32px;
}

.profile-email.form-group.profile-tel select {
  width: 210px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
}

.account-side-menu.top-links ul {
  display: block;
}

.account-side-menu.top-links>ul>li {
  margin-right: 0px;
  margin-bottom: 15px;
}

.account-side-menu.top-links ul li a {
  width: 100%;
  height: 42px;
  color: #0F172A;
  padding: 9px 10px 9px 10px;
  text-transform: capitalize;
}

aside.sidebar.sidebar-left .side-head.favourites-badge.my-account-sidebar {
  border-bottom: none;
}

.sidebar .profile-edit {
  position: absolute;
  bottom: 30px;
}

.subscriptions-title {
  display: flex;
  align-items: center;
}

.subscriptions-title .one-sport-teal {
  color: var(--likely-teal);
  padding-left: 7px;
}

p.small-txt {
  margin-bottom: 0;
}

.subscriptions-main-section {
  margin-top: 32px;
  border-bottom: 1px solid #ECEBEB;
  margin-bottom: 32px;
}

.subscription-table {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

.auto-renew .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.auto-renew .form-group label {
  position: relative;
  cursor: pointer;
  color: #666666;
  font-weight: 100;
  margin-bottom: 0;
  line-height: 20px;
  font-size: 15px;
}

.auto-renew .form-group label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #1EAFB3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 6px;
}

.auto-renew .form-group input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #1EAFB3;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.current-plan a {
  height: 42px;
  border-radius: 18px;
  display: inline-block;
  line-height: 1;
  padding: 12px 12px 9px 14px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #b8292f;
  border: 2px solid #b8292f;
}

.current-plan a:hover {
  color: #fff;
  border: 2px solid #b8292f;
  background-color: #b8292f;
}

.upgrade-access h5 {
  color: #1eafb3;
}

.upgrade-access a {
  height: 42px;
  border-radius: 18px;
  display: inline-block;
  line-height: 1;
  padding: 12px 12px 9px 14px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #fff;
  border: 2px solid #b8292f;
  background-color: #b8292f;
}

.upgrade-access a:hover {
  color: #b8292f;
  border: 2px solid #b8292f;
  background-color: #fff;
}

.payment-table {
  margin-top: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
}

.payment-table thead.thead-dark {
  background: #D2EFF0;
}

.payment-table thead.thead-dark th,
.payment-table td {
  color: #000;
  padding: 15px 20px;
  border-bottom: none;
}

.payment-list {
  text-align: right;
}

.payment-card-section [type="radio"]:checked,
.payment-card-section [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.payment-card-section [type="radio"]:checked+label,
.payment-card-section [type="radio"]:not(:checked)+label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
  font-weight: normal;
}

.payment-card-section [type="radio"]:checked+label.checkedOptions,
.payment-card-section [type="radio"]:not(:checked)+label.checkedOptions {
  font-weight: 500;
  color: #000;
}

.payment-card-section [type="radio"]:checked+label:before,
.payment-card-section [type="radio"]:not(:checked)+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #1EAFB3;
  border-radius: 100%;
  background: #fff;
}

.payment-card-section [type="radio"]:checked+label:after,
.payment-card-section [type="radio"]:not(:checked)+label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: rgba(30, 175, 179, 1);
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.payment-card-section [type="radio"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.payment-card-section [type="radio"]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.payment-card-section {
  margin: 24px 0;
}

.payment-card-section ul li {
  margin-bottom: 20px;
}

.payment-card-section .card-details {
  display: flex;
  background-color: rgba(230, 230, 230, 1);
  width: 100%;
  max-width: 500px;
  justify-content: space-around;
  border-radius: 18px;
  padding: 10px;
  align-items: baseline;
  border: 1px solid rgba(241, 241, 241, 1);
}

.payment-card-icon {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
}

.payment-card-icon img {
  width: 100%;
  object-fit: cover;
  max-width: 75px;
}

.payment-card-section .card-details .card-sub {
  flex: 0 0 62%;
  align-self: center;
}

.custom-radio {
  align-self: self-start;
}

.payment-card-section .card-details p {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1;
}

.card-sub span {
  font-size: 12px;
  color: #1eafb3;
}

.add-new-payee img {
  margin-right: 7px;
}

.add-new-payee a {
  color: #b8292f;
}

.city-name {
  width: 100%;
  position: relative;
}

.city-name select {
  width: 100%;
  padding: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  background-color: #fff;
}

.city-name select option {
  color: #000;
}

.city-name::after {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 20px;
  height: 100%;
  background-image: url(../images/SVG/black_down_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  top: 0px;
  right: 17px;
  z-index: 9;
}

.password-section {
  display: flex;
  position: relative;
}

.field-icon {
  position: absolute;
  right: 8px;
  top: 8px;
  color: #94A3B8;
}

.password-rules {
  margin-top: 30px;
}

/* Mandip CSS */
.password-success-rules i.green {
  color: #34D399;
}

.password-rules i.green {
  color: #34D399;
}

.password-rules i.red {
  color: #DC2626;
}

.password-rules p.sub-pass {
  font-size: 14px;
}

.page-heading {
  text-align: center;
  margin: 45px 0;

}

.page-heading h2 {
  font-size: 36px;
}

.page-heading h2 span {
  position: relative;
}

.page-heading h2 span::after {
  content: '';
  position: absolute;
  width: 92px;
  height: 3px;
  background-color: #B8292F;
  right: 0;
  bottom: 0px;
}

.popular-tag {
  position: absolute;
  left: 0;
  background: #32B53F;
  color: #fff;
  font-size: 11px;
  top: 0;
  padding: 4px 8px 4px 8px;
  border-radius: 0px 0px 8px 0px;
}

.price-section-wrapper.d-flex {
  justify-content: space-between;
  position: sticky;
  top: 0px;
  background: #e6e6e6;
  z-index: 9;
}

.price-middle-section {
  position: relative;
  z-index: 0;
}

.side-title {
  flex: 0 0 28%;
}

.side-title h2,
.side-title h3 {
  margin-bottom: 0;
}

.side-title.premium {
  flex: 0 0 40%;
}

.premium-heading-wrap {
  background: #000;
  padding: 12px;
  color: #fff;
  text-align: center;
  border-radius: 16px 16px 0px 0px;

}

.standerd-headimg-wrap {
  background: #999999;
  padding: 12px;
  color: #fff;
  text-align: center;
  border-radius: 16px 16px 0px 0px;

}

.main-premium-data {
  padding: 10px;
  justify-content: space-around;
  border-bottom: 1px solid #999999;
  position: relative;
}

.free-month-wrapper {
  justify-content: space-around;
  /* height: 160px;
    position: relative; */
}

.free-month-wrapper .free-month {
  text-align: center;
  padding: 15px 0;
}

.free-month-wrapper span.free-text-edit {
  font-size: 19px;
  font-weight: 500;
}

.free-month-wrapper .price-buy a {
  height: 42px;
  border-radius: 18px;
  display: inline-block;
  line-height: 1;
  padding: 12px 12px 9px 14px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #fff;
  border: 2px solid #b8292f;
  background-color: #b8292f;
}

.premium-border {
  border: 1px solid #000;
  background: #fff;
  border-bottom: none;
}

.standard-border {
  border: 1px solid #A0A0A0;
  background: #fff;
  border-bottom: none;
}

/* .standard-border .free-month-wrapper{
    height: 152px;
  } */
.standard-border .free-month-wrapper .free-month p {
  visibility: hidden;
}

.price-middle-section .premium-border {
  border-bottom: none;
  border-top: none;
}

.price-middle-section .standard-border {
  border-bottom: none;
  border-top: none;
}

.price-middle-section .side-title h5 {
  padding-left: 10px;
  padding-top: 10px;
}

.price-middle-section .side-title p {
  margin-bottom: 0;
  color: var(--primary-color);
  font-weight: 500;
}

.price-middle-section .side-title {
  align-self: center;
}

.side-title.brand-logo img {
  padding-left: 10px;
}

.side-title.left-top-title {
  padding-top: 25px;
  padding-left: 12px;
}

.side-title.left-top-title span {
  color: #b8292f;
  font-weight: 500;
}

.side-title.left-top-title h3 {
  margin-bottom: 25px;
}

.price-middle-section .premium-border.footer-border {
  border-radius: 0px 0px 16px 16px;
  border-bottom: 1px solid #000;
}

.price-middle-section .standard-border.footer-border {
  border-radius: 0px 0px 16px 16px;
  border-bottom: 1px solid #A0A0A0;
}

.price-middle-section .premium-border.footer-border .main-premium-data,
.price-middle-section .standard-border.footer-border .main-premium-data {
  border-bottom: none;
}

.price-middle-section .table-title.bg-black {
  background-color: var(--primary-color);
}

.main-setting-section {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
  /* max-width: calc(100% - 285px); */
  box-shadow: 0 0 15px 3px #a3a3a38a;
  padding: 20px;
  border-radius: 16px;
  background-color: #fff;
}

.setting-top-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 10px;
}

.setting-close i {
  color: #000;
  font-size: 20px;
}

.user-settings {
  margin: 25px 0 0 0;
}

.user-settings select.form-control {
  border: 1px solid #ccc;
  width: 100%;
  border-radius: 8px;
  background: url(../images/SVG/black_down_arrow.svg) 97%/3% no-repeat;
}

.user-settings label {
  font-weight: 500;
  padding-bottom: 5px;
}

.payment-card-section.setting-card .custom-radio {
  align-self: self-start;
  display: flex;
  justify-content: space-between;
}

.notification-bar {
  width: 100%;
  height: 52px;
  color: #fff;
  padding: 16px 12px 12px 14px;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(180deg, #E6E6E6 -35.06%, rgba(230, 230, 230, 0) 114.37%);
  border-radius: 8px;
  margin-top: 20px;
}

.notification-icon p {
  color: #000;
  font-weight: 500;
}

.notification-icon {
  position: relative;
  display: flex;
}

.notification-icon i {
  font-size: 23px;
  margin-right: 13px;
  color: #000;
}

.notification-icon span {
  background: #B8292F;
  width: 18px;
  height: 18px;
  position: absolute;
  text-align: center;
  border-radius: 50%;
  top: -11px;
  left: 11px;
  font-size: 9px;
  line-height: 18px;
}

.toggle-switch label {
  padding: 0;
}

input#cb-switch {
  display: none;
}

.toggle-switch label input+span {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  width: 48px;
  height: 28px;
  background: #cacaca;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.toggle-switch label input+span small {
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 1.875rem;
  background: #fff;
  transition: all 0.3s ease-in-out;
  top: 2px;
  left: 0.2rem;
}

.toggle-switch label input:checked+span {
  background: #1EAFB3;
}

.toggle-switch label input:checked+span small {
  left: 22px;
  transition: left .25s;
}

.toggle-switch span:after {
  content: "";
  line-height: 2.5rem;
  width: 5rem;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 2px;
  position: absolute;
  bottom: 0;
  transition: opacity .25s;
  left: 6rem;
  opacity: 0.5;
  color: #6b7381;
}

.toggle-switch label input:checked+span:after {
  opacity: 1;
}

.main-setting-section.search-box {
  max-width: 620px;
  height: 100%;
  min-height: 380px;
}

.search-bar-box {
  margin-top: 25px;
}

form.header-form .search-bar-box .name-section input {
  border: none;
  background: #cacaca;
  border-radius: 8px;
  padding: 10px 20px 10px 20px;
  color: #000;
}

.search-bar-box .name-section {
  margin-bottom: 15px;
  display: none;
}

.search-bar-box p {
  font-size: 14px;
}

.main-page-wrapper.about-wrapper {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.main-page-wrapper.about-wrapper .page-heading {
  text-align: left;
  margin: 45px 0 15px 0;
}

.about-main-section h4 {
  font-size: 28px;
  font-weight: 100;
}

.about-main-section {
  border-bottom: 1px solid #B8292F;
  padding-bottom: 10px;
}

.about-main-section.top-space {
  margin-top: 35px;
}

.custom-video-wrapper {
  margin-top: 35px;
  margin-bottom: 40px;

}

.video-container {
  width: 100%;
  border-radius: 8px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

.video-container .video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container video {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.play-button-wrapper #circle-play-b {
  cursor: pointer;
  pointer-events: auto;
}

.play-button-wrapper #circle-play-b svg {
  width: 100px;
  height: 100px;
  fill: #fff;
  stroke: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0.9;
}

.main-setting-section.login-main-wrapper {
  max-width: 780px;
  z-index: 9;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 50%;
}

.login-box-top .setting-top-heading {
  justify-content: end;
  border-bottom: none;
}

.login-box-top .setting-top-heading .setting-close i {
  color: #B1B1B1;
}

.login-mid-block {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 40px;
}

.main-setting-section.login-main-wrapper h3 {
  font-weight: 500 !important;
  text-align: center;
}

.main-setting-section.login-main-wrapper p {
  text-align: center;
}

.login-form .register-section {
  margin-top: 60px;
}

.remember-me-section {
  display: flex;
  justify-content: space-between;
}

.forgot-button a {
  color: #B8292F;
  font-weight: 500;
  font-size: 14px;
}

.forgot-button a:hover {
  /* color: #fff;
  background-color: #B8292F;
  height: 28px;
  border-radius: 8px;
  display: inline-block;
  line-height: 1;
  padding: 7px 9px 9px 10px;
  font-weight: 100; */
  text-decoration: underline;
}

.login-button-bottom {
  margin-top: 32px;
}

.login-condition p {
  color: #666666;
  font-size: 14px;
  text-align: center;
  font-weight: 100;
}

.login-condition p a {
  color: #1eafb3;
  text-decoration: none;
}

p.login-bottom-text {
  text-align: center;
}

p.login-bottom-text a {
  color: #b8292f;
  text-decoration: none;
  font-weight: 500;
}

.login-main-btn {
  margin-bottom: 35px;
}

.login-main-btn a {
  height: 56px;
  border-radius: 64px;
  display: inline-block;
  line-height: 1;
  padding: 17px 12px 15px 14px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #fff;
  border: 2px solid #b8292f;
  background-color: #b8292f;
  width: 100%;
  text-align: center;
}

.login-main-btn a:hover {
  color: #b8292f;
  border: 2px solid #b8292f;
  background-color: #fff;
}

.main-setting-section.login-main-wrapper .password-rules p {
  text-align: left;
}

a.normal-link {
  color: #1eafb3;
  text-decoration: none;
}

.otp-wrapper {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.otp-wrapper input:focus {
  outline: none;
}

.otp-wrapper input {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  color: #000
}

.otp-wrapper input::placeholder {
  color: #ffffff50
}

.card-title.card-toggle-title.tab-button-arrow:after {
  content: none;
}

.tab-button-arrow .arrow-down {
  /* position: absolute;
      right: 9px;
      border: none;
      background: transparent; */
  content: "";
  background: url(../images/SVG/angle-right-white.svg) no-repeat center center;
  background-size: auto 18px;
  width: 10px;
  height: 18px;
  position: absolute;
  left: auto;
  right: 12px;
  top: 9px;
  transform: rotate(90deg);
}

.tab-button-arrow .arrow-down.collapsed {
  transform: rotate(360deg);
}

/* .tab-button-arrow .arrow-down img {
    height: 13px;
    width: 18px;
  } */
.match-meta-list li a {
  color: #fff;
  text-decoration: none;
}

/* #loginform {
    width: 100%;
    height: 100%;
    position: fixed;
    visibility:hidden;
    display:none;
    background-color: rgba(22,22,22,0.5);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  #loginform:target {
    visibility: visible;
    display: block;
    z-index: 99;
  } */
.popup {
  position: fixed;
  z-index: 101;
}

#popup:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -2;
}

#popup:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #FFF;
  z-index: -1;
}

.mobile-team-sidebar {
  display: none;
}

#register:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -2;
}

#register:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #FFF;
  z-index: -1;
}

#otp_screen:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -2;
}

#otp_screen:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #FFF;
  z-index: -1;
}

#forgot_screen:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -2;
}

#forgot_screen:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #FFF;
  z-index: -1;
}

.login-main-btn button {
  height: 56px;
  border-radius: 64px;
  display: inline-block;
  line-height: 1;
  padding: 17px 12px 15px 14px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #fff;
  border: 2px solid #b8292f;
  background-color: #b8292f;
  width: 100%;
  text-align: center;
}

.login-main-btn button:hover {
  color: #b8292f;
  border: 2px solid #b8292f;
  background-color: #fff;
}

.profile-edit button {
  height: 42px;
  border-radius: 18px;
  display: inline-block;
  line-height: 1;
  padding: 9px 12px 9px 14px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #b8292f;
  border: 2px solid #b8292f;
  background: transparent;
}

.profile-edit button:hover {
  border: 2px solid #b8292f;
  background-color: #b8292f;
  color: #fff;
}

/* #profile_logo{
    cursor:pointer;
} */
/* #remove_logo{
    cursor:pointer;
} */
button#remove_logo {
  height: 42px;
  border-radius: 11px;
  background-color: #cacaca;
  color: #334155;
  display: block;
  line-height: 1;
  padding: 13px 20px 10px 16px;
  font-weight: 400;
  margin-bottom: 10px;
  border: none;
}

button#remove_logo i {
  margin-right: 8px;
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: block;
}

.upload-btn-wrapper .btn {
  height: 42px;
  border-radius: 11px;
  background-color: #cacaca;
  color: #334155;
  display: block;
  line-height: 1;
  padding: 10px 20px 10px 16px;
  font-weight: 400;
  margin-bottom: 10px;
  border: none;
}

.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.upload-btn-wrapper .btn i {
  margin-right: 5px;
}

li.mob-search {
  display: none;
}

.upload-btn-wrapper .btn i {
  margin-right: 5px;
}

.championship-graph table td {
  background: #F3F3F3;
  color: #000;
  width: 40px;
  text-align: center;
  height: 40px;
  position: relative;
}

.table-head-title h6 {
  transform: rotate(-90deg);
  position: absolute;
  left: -35px;
  top: 50%;
  font-size: 16px;
}

.table-bottom-title h6 {
  text-align: center;
  font-size: 16px;
}

.championship-graph th {
  padding: 3px 10px;
}

.championship-graph .top-border {
  border-radius: 8px 0 0 0;
}

.championship-graph .top-right-border {
  border-radius: 0px 8px 0 0;
}

.championship-graph .bottom-border {
  border-radius: 0px 0px 0px 8px;
}

.championship-graph .bottom-right-border {
  border-radius: 0px 0px 8px 0px;
}

.championship-graph td.light-blue {
  background: #D8F4F5;
}

.championship-graph td.dark-blue {
  background: #AFE9E9;
}

/* Mandip CSS */
.custom-teampop.logo-left .team-name-popup {
  top: 20px;
  left: auto;
  right: calc(100% - 20px);
  border-radius: 23px 0px 23px 23px;
}

.custom-teampop.logo-bottom .team-name-popup {
  top: -72px;
  left: 37px;
  border-radius: 23px 23px 23px 0px;
}

.championship-graph td.light-red {
  background: #F1F1F1;
}

.championship-graph table {
  border-collapse: inherit;
}

.team-name-popup {
  box-shadow: -2px 6px 9px 2px #a3a3a35e;
  padding: 10px;
  border: 1px solid var(--dark-gray);
  border-radius: 0px 23px 23px 23px;
  background-color: #fff;
  width: 185px;
  position: absolute;
  z-index: 9999999;
  top: 12px;
  left: 21px;
  bottom: auto;
  height: auto;
  display: none;
}

.team-logo-block {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.team-icon img {
  width: 100%;
  max-width: 35px;
}

.team-logo-block h4 {
  font-size: 14px;
  color: #000;
}

.custom-teampop:hover .team-name-popup {
  display: block;
}

.bet-table .championship-table {
  padding-bottom: 25px;
}

.championship-graph.team-from-graph table td {
  color: #000;
  /* width: auto; */
  text-align: center;
  position: relative;
  border-left: 1px solid #ddd;
  background: transparent;
  font-size: 13px;
}

.championship-graph.team-from-graph table tr:first-child td {
  border-left: none
}

.championship-graph.team-from-graph .leauge-main-block {
  display: inherit;
  margin-bottom: 0;
  position: relative;
  left: 6px;
}

.championship-graph.team-from-graph .leauge-main-block img {
  width: 27px;
  height: 30px;
  display: inline-block;
  display: inherit;
  margin-bottom: 0;
}

.championship-graph.team-from-graph .leauge-main-block p {
  margin: 152px -47px 58px;
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  width: 120px;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  text-align: left;
}

.championship-graph.team-from-graph a {
  display: inline-table;
  text-align: center;
  /* padding: 4px 6px 4px 6px;  */
  text-decoration: none;
  border-radius: 20px 20px 20px 20px;
  color: #fff;
  font-size: 13px;
  width: 31px;
  font-weight: normal;
  height: 15px;
  line-height: 23px;
}

.championship-graph.team-from-graph a.win {
  background: #1eafb3;
}

.championship-graph.team-from-graph a.win:hover {
  color: #fff;
}

.championship-graph.team-from-graph a.loss:hover {
  color: #fff;
}

.championship-graph.team-from-graph a.loss {
  background: #b8292f;
}

.team-logo-block.win-block .team-icon img {
  width: 100%;
  max-width: 48px;
}

.team-logo-block.win-block h4 {
  font-size: 12px;
}

.team-winning-percent ul li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
}

.team-winning-percent ul li p {
  margin-bottom: 0;
  text-align: center;
  font-size: 12px;
  color: #696969;
  text-transform: uppercase;
}

.team-winning-percent ul li p.win-range {
  color: #000;
}

.championship-graph.team-from-graph .team-name-popup {
  width: 182px;
  top: -91px;
  left: 22px;
  border-radius: 23px 23px 23px 0px;
}

.championship-graph.team-from-graph th {
  text-align: center;
  font-size: 12px;
}

/* .championship-graph.team-from-graph th.txt-rotate {
    transform: rotate(-90deg);
    text-align: center;
    color: #979797;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
  } */
.championship-graph.team-from-graph th.txt-rotate p {
  transform: rotate(-90deg);
  text-align: center;
  color: #979797;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 0;
}

.championship-graph.team-from-graph th.txt-rotate i.arrow {
  top: auto;
  transform: rotate(-90deg);
  left: 0;
  right: auto;
  margin: 0 auto;
}

.team-name-popup.player-info-popup {
  top: 29px;
  left: -129px;
  border-radius: 23px 0px 23px 23px;
}

/* Mandip CSS */


.current-plan button {
  height: 42px;
  border-radius: 18px;
  display: inline-block;
  line-height: 1;
  padding: 10px 12px 10px 14px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #b8292f;
  border: 2px solid #b8292f;
  background: transparent;
}

.current-plan button:hover {
  color: #fff;
  border: 2px solid #b8292f;
  background-color: #b8292f;
}

.upgrade-access button {
  height: 42px;
  border-radius: 18px;
  display: inline-block;
  line-height: 1;
  padding: 10px 12px 10px 14px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #b8292f;
  border: 2px solid #b8292f;
  background-color: #fff;
}

.upgrade-access button:hover {
  color: #fff;
  border: 2px solid #b8292f;
  background-color: #b8292f;
}

.free-month-wrapper .price-buy button {
  height: 42px;
  border-radius: 18px;
  display: inline-block;
  line-height: 1;
  padding: 9px 12px 9px 14px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #fff;
  border: 2px solid #b8292f;
  background-color: #b8292f;
  margin-top: 30px;
}

/* .standard-border .free-month-wrapper .price-buy button{
    background: #fff;
    color: #b8292f;
  } */
.free-month-wrapper .price-buy button:hover {
  color: #b8292f !important;
  background-color: #fff !important;
  border: 2px solid #b8292f !important;
  -webkit-box-shadow: -1px 15px 7px -6px rgba(0, 0, 0, 0.75) !important;
  -moz-box-shadow: -1px 15px 7px -6px rgba(0, 0, 0, 0.75) !important;
  box-shadow: -1px 15px 7px -6px rgba(0, 0, 0, 0.75) !important;
}

.championship-graph.team-from-graph a.draw {
  background: #838383;
}

#sort_by_team {
  cursor: pointer;
}

.championship-graph.team-from-graph {
  position: relative;
}

.championship-graph.team-from-graph .table-head-title h6 {
  transform: rotate(-90deg);
  position: absolute;
  left: -25px;
  top: 50%;
}

.championship-graph.team-from-graph .table-head-title.matches5 h6 {
  top: 80%;
  font-size: 14px;
}

.championship-graph.team-from-graph .table-head-title.matches10 h6 {
  top: 74%;
  font-size: 14px;
}

.championship-graph.team-from-graph .table-head-title.matches15 h6 {
  top: 68%;
  font-size: 14px;
}

.championship-graph.team-from-graph .table-head-title.matches20 h6 {
  top: 61%;
  font-size: 14px;
}

.championship-graph.team-from-graph th {
  position: relative;
  font-weight: 500;
  font-size: 14px;
}

.championship-graph.team-from-graph th .arrow {
  display: block;
  float: right;
  margin-top: 0px;
  border-color: transparent;
  border-top-color: #979797;
  border-style: solid;
  border-width: 0.5em 0.31em 0;
  width: 0;
  height: 0;
  position: relative;
  line-height: 0;
  font-size: 19px;
  position: absolute;
  top: 0px;
  left: 20px;
}

.championship-graph.team-from-graph .team-name-popup.logo-left-teamform {
  width: 182px;
  top: -95px;
  left: -165px;
  border-radius: 23px 23px 0px 23px;
}

.not_played {
  color: black !important;
}

/* .championship-graph td:nth-child(14){
  border-left: 4px dotted #1EAFB3;
}
.championship-graph td.border-chart-row {
border-bottom: 4px dotted #1EAFB3;
} */
/* .championship-graph td.border-chart-row:after {
  position: absolute;
  content: '';
  width: auto;
  height: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 40px;
  border-bottom: 3px dotted #1EAFB3;
  z-index: 9;
}

.championship-graph td.border-chart-column:nth-child(14):before {
  position: absolute;
  content: '';
  height: 100%;
  left: -2px;
  right: 0;
  margin: 0 auto;
  top: 0;
  border-left: 3px dotted #1EAFB3;
  z-index: 9;
} */

.championship-graph td.light-red.team_position,
.championship-graph td.light-blue.team_position,
.championship-graph td.dark-blue.team_position {
  background-color: #1eafb3;
}

.no-match-found-block {
  text-align: center;
  margin: 100px 0;
}

.no-match-found-block h4 {
  color: #A0A0A0;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
}

.no-found-icon {
  margin-bottom: 20px;
}

#sort_by_win {
  cursor: pointer;
}

#sort_by_avg {
  cursor: pointer;
}

/* .championship-graph.team-from-graph th.txt-rotate.team-rotate i.arrow{
  top: 106px;
} */
td.custom-teampop.total_win {
  font-weight: 500;
}

.mobile-profile-box {
  display: none;
}

#settings:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -2;
}

#settings:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #FFF;
  z-index: -1;
}

.top-links>ul li.firsthalf_time a {
  border-radius: 20px 0 0 20px;
}

.top-links>ul li.secondhalf_time a {
  border-radius: 0 20px 20px 0;
}

.top-links>ul li.firsthalf_time {
  margin-right: 2px;
}

.top-links>ul li.firstquater_time a {
  border-radius: 20px 0 0 20px;
}

.top-links>ul li.quater_time a {
  border-radius: inherit;
}

.top-links>ul li.fourquater_time a {
  border-radius: 0 20px 20px 0;
}

.top-links>ul li.quater_time,
.top-links>ul li.firstquater_time {
  margin-right: 2px;
}

.main-setting-section.login-main-wrapper .password-success-rules p {
  text-align: left;
}

.custom-progress {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-top: 20px;
  margin-right: auto;
}

.custom-progress .progress {
  background-color: #A0A0A0;
  border-radius: 16px;
  height: 28px;
  color: #000;
  font-weight: 500;
}

.custom-progress .progress-bar {
  color: #000;
  font-weight: 500;
  padding: 15px 20px 20px 15px;
  position: relative;
  overflow: visible;
}

.custom-progress .progress-bar span {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  padding: 0 4px;
}

.progress-bar.progress-left {
  background: #1eafb3;
}

.progress-bar.progress-mid {
  background: #cacaca;
}

.progress-bar.progress-right {
  background: #979797;
}

.progress-label {
  display: flex;
}

.progress-label p {
  color: #979797;
  font-size: 17px;
}

.custom-progress.team-progress {
  margin: 0 auto;
  max-width: 620px;
}

.custom-progress.team-progress .progress {
  height: 32px;
}

form.header-form input.form-control+.main-setting-section.search-box {
  display: block;
  position: absolute;
  z-index: 99;
  color: #000;
  left: -50px;
  width: 400px;
  top: 64px;
  max-height: 300px;
  overflow: auto;

}

.main-setting-section.search-box {
  /* display: none; */
}

.search-bar-box .leauge-main-block img {
  max-width: 50px;
}

.search-bar-box .main-top-header.flex-between {
  align-items: flex-start;
}

.search-bar-box .leauge-main-block h3 {
  font-size: 14px;
  text-decoration: none;
  color: black;
}

.search-bar-box .leauge-main-block h3 span {
  font-weight: normal;
  font-size: 15px;
}

.searchItems {
  cursor: pointer;
}

.search-bar-box a {
  display: block;
}

.alert {
  margin: 8px 0;
}

.championship-graph.mob-championship-graph th {
  font-weight: normal;
  font-size: 13px;
  text-align: center;
}

.championship-graph.team-from-graph table {
  border-collapse: collapse;
}

.championship-graph.team-from-graph table td.borderTopForm,
.championship-graph.team-from-graph table th.borderTopForm {
  border-top: 3px solid #1eafb3;
}

.championship-graph.standing-championship-graph td {
  opacity: 0.5;
}

.championship-graph.standing-championship-graph td.team_position {
  opacity: 1;
}

.team-form-table.standings-tbl tr.topZone {
  border-bottom: 4px solid #1eafb3;
}

.championship-graph.team-from-graph th#sort_by_team {
  top: 72px;
}

.card-item .bet-table .col-time button.icon-btn {
  position: absolute;
  right: 12px;
  top: 3px;
  width: 28px
}

aside.sidebar.sidebar-left.myaccount_sidebar {
  min-height: 600px;
}

#sort_by_team,
#sort_by_played,
#sort_by_won,
#sort_by_draw,
#sort_by_loss,
#sort_by_pf,
#sort_by_pa,
#sort_by_percentage,
#sort_by_points,
#sort_by_avgpf,
#sort_by_avgpa,
#sort_by_avgts {
  cursor: pointer;
}

.championship-graph.standing-championship-graph td.custom-teampop.popupView {
  opacity: 1;
}

.team-form-table .leauge-main-block:hover,
.championship-graph.team-from-graph .leauge-main-block:hover,
.bet-table .team-info a:hover,
.match-meta-list li a:hover,
.sports-table-cards.championship-main-section h4.bottom-title:hover,
.team-logo-block:hover {
  text-decoration: underline;
}

.free-month-wrapper .free-month p:first-child {
  margin-bottom: 3px;
}

tr.team_detail_page td:nth-child(4) {
  font-weight: 500;
}

/* .team-form-table.standings-tbl tr.team-selected td:first-child{
  border-top-left-radius:26px;
  border-bottom-left-radius:26px;
  background: #1eafb3;
}
.team-form-table.standings-tbl tr.team-selected td{
  background: #1eafb3;
}
.team-form-table.standings-tbl tr.team-selected td:last-child{
  border-top-right-radius:26px;
   border-bottom-right-radius:26px;
}

.team-form-table.standings-tbl tr.team-selected td.team_selected_radius {
 border-top-right-radius:26px;
 border-bottom-right-radius:26px;
 background: #1eafb3;
} */

/* M2 CSS */

.team-form-table.standings-tbl tr.team-selected td:first-child {
  border-top-left-radius: 26px;
  border-bottom-left-radius: 26px;
  background: #1eafb3;
}

.team-form-table.standings-tbl tr.team-selected td {
  background: #1eafb3;
  color: #fff;
}

.team-form-table.standings-tbl tr.team-selected td:last-child {
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
}

.team-form-table.standings-tbl tr.team-selected td.team_selected_radius {
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
  background: #1eafb3;
}

.team-graph-bar {
  margin: 15px 0 55px 0;
}

.team-bar-rank .progress {
  margin-left: 4px;
  width: auto;
  height: auto;
  /* min-height: 28px; */
  float: left;
  margin-top: 20px;
  background-color: transparent;
  position: absolute;
  bottom: 0;
  top: auto;
  overflow: inherit;
  z-index: 2;
}

.team-bar-rank .progress .progress-bar {
  justify-content: flex-start;
  width: 20px;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}

.team-bar-rank table td {
  position: relative;
  padding: 0;
  width: 30px;
  text-align: center;
  min-height: 30px;
}

.progress.bg-up .progress-bar {
  background: #1eafb3;
}

.progress.bg-down .progress-bar {
  background: #b8292f;
}

.progress.bg-down {
  transform: rotate(180deg);
  bottom: -8px;
}

.team-bar-rank .container.table-responsive {
  height: 100%;
  overflow: inherit;
  /* min-height: 410px; */
}

.progress.bg-flat-zerro .progress-bar {
  text-decoration: none;
  border-radius: 20px 20px 20px 20px;
  color: #fff;
  font-size: 13px;
  width: 22px;
  font-weight: normal;
  height: 22px;
  line-height: 23px;
  display: inline-table;
  text-align: center;
  background: #979797;
  font-size: 13px;
}

.progress.bg-flat-zerro {
  bottom: -12px;
  z-index: 9;
}

.team-bar-rank thead.thead-dark th {
  border-bottom: none;
}

.progress.bg-down .progress-bar span {
  transform: rotate(180deg);
  padding-bottom: 5px;
}

.team-bar-rank .progress .progress-bar span.count-up {
  padding-top: 0;
}

.team-bar-rank .progress .progress-bar span.count-down {
  padding-bottom: 0;
}

.team-bar-rank tbody {
  position: relative;
}

.team-bar-rank tbody:after {
  position: absolute;
  content: '';
  width: auto;
  height: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: auto;
  border-bottom: 2px dashed #cacaca;
  z-index: 1;
  visibility: hidden;
  /* bottom: 119px; */
}

.progress .progress-bar span.count-up {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  /* top: -13px; */
  top: 2px;
  color: #fff;
  z-index: 9;
  bottom: 0;
}

.progress .progress-bar span.count-down {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -20px;
  color: #b8292f;
  z-index: 9;
}

/*.progress.graph_loss.bg-up .progress-bar span.count-up {
  color: #b8292f;
}*/

.progress.graph_loss.bg-up .progress-bar {
  background: #b8292f;
}

.team-from-graph-new table td.top-vertical {
  position: relative;
  z-index: 9;
  overflow: visible;
  padding-bottom: 270px;
  border-bottom: none;
}

.team-from-graph-new table.verticle-head-tbl {
  width: 275px;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform-origin: 0 0;
  position: absolute;
  left: 0;
  top: 260px;
  z-index: 14;
}

.team-from-graph-new th {
  text-align: center;
  color: #979797;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 0;
  white-space: nowrap;
}

td.heading-verticle {
  overflow: visible;
  padding-bottom: 270px;
  position: sticky !important;
  left: 0px;
  background-color: white;
  z-index: 99;
  border-bottom: none;
}

td.heading-verticle table {
  width: 240px;
  transform: rotate(-90deg);
  transform-origin: 0 0;
  position: absolute;
  left: auto;
  top: 272px;
  z-index: 14;
  right: -200px;

}

td.heading-verticle table thead {
  background: #fff;
}

td.no-pad.bottom-sticky {
  position: sticky !important;
  left: 0px;
  background-color: white;
  z-index: 9;
}

table.score-game th {
  border-bottom: none;
}

table.score-game thead {
  border-bottom: 1px solid #ddd;
}

.team-from-graph-new .score-game td .top-links>ul>li a {
  text-decoration: none;
  border-radius: 20px 20px 20px 20px;
  color: #fff;
  font-size: 13px;
  font-weight: normal;
  height: 15px;
  line-height: 23px;
  display: inline-table;
  text-align: center;
  padding: 0;
}

td.no-pad.bottom-sticky table {
  width: 365px;
  margin-bottom: 0;
}

td.no-pad.bottom-sticky img {
  width: 30px;
}

td.no-pad.bottom-sticky table td,
.team-from-graph-new td.no-pad table td {
  padding-bottom: 0;
  padding-top: 0;
  vertical-align: middle;
}

/* .team-from-graph-new td{
  height: 47px;
} */
table.score-game td.custom-teampop {
  position: relative;
}

.player-image img {
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
  height: 50px;
}

.score-game .player-info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  color: #000;
}

.player-info .player-oppo {
  display: flex;
  justify-content: center;
  position: relative;
  font-size: 12px;
  text-align: left;
  align-items: center;
  margin-top: 12px;
}

.team-from-graph-new td.no-pad .score-game .player-info .player-oppo span {
  margin-right: 10px;
  margin-top: 4px;
  margin-left: 10px;
}

.team-from-graph-new td.no-pad .score-game .player-info img {
  width: 30px;
  margin-right: 8px;
  object-fit: cover;
  height: 25px;
}

.team-from-graph-new td.no-pad .score-game .team-name-popup {
  width: 255px;
  z-index: 1;
}

.player-score table {
  margin-bottom: 0;
}

.player-score th,
.player-score td {
  padding-bottom: 0;
}

.team-logo-block.win-block .player-info h4 {
  font-size: 14px;
}

.team-from-graph-new td p {
  margin-bottom: 0;
  font-size: 13px;
  /* text-align: left; */
}

team-from-graph-new table td.top-vertical td {
  padding: 11px 5px 3px;
}

.team-from-graph-new td.no-pad .team-name-popup {
  box-shadow: -2px 6px 9px 2px #a3a3a35e;
  padding: 10px;
  border: 1px solid var(--dark-gray);
  border-radius: 0px 23px 23px 23px;
  background-color: #fff;
  width: 185px;
  position: absolute;
  z-index: 9999999;
  top: 15px;
  left: 30px;
  bottom: auto;
  height: auto;
  display: none;
}

.team-from-graph-new td.no-pad .custom-teampop:hover .team-name-popup {
  display: block;
}

.team-form-table table td.verticle-tbl {
  transform: rotate(-90deg);
  position: absolute;
  left: 55%;
  top: -50%;
  width: auto;
  padding: 20px 40px;
  border-bottom: none;
}

.team-form-table.player-tbl {
  position: relative;
}

.team-form-table.player-tbl .team-width {
  width: 90px;
}

.team-form-table.player-tbl .top-links {
  justify-content: start;
}

.no-border-bottom {
  border-bottom: none;
}

.team-player-information {
  display: flex;
  justify-content: flex-start;
}

.team-player-information .info-head {
  margin-right: 30px;
}

.tbl-left {
  width: 100%;
  max-width: 60%;
  display: flex;
  justify-content: space-evenly;
}

.team-from-graph-new td {
  color: #000;
  text-align: center;
  width: auto;
  position: relative;
  height: 40px;
  font-size: 13px;
  line-height: normal;
  cursor: pointer;
}

.team-from-graph-new td.no-pad {
  padding: 0;
  border-bottom: none;
}

.team-from-graph-new td .top-links>ul>li>a {
  height: 25px;
  line-height: 18px;
  padding: 4px 2px 4px 4px;
  font-size: 12px;
  border-radius: 50%;
  width: 25px;
}

.team-from-graph-new td .top-links>ul>li {
  margin-right: 0px;
}

.team-form-table .bet-table .match-state .status {
  min-width: 32px;
}

.team-form-table .leauge-main-block p {
  font-size: 15px;
  margin-bottom: 0;
}

.team-form-table .top-links>ul>li>a {
  display: inline-table;
  text-align: center;
  /* padding: 4px 6px 4px 6px; */
  text-decoration: none;
  border-radius: 20px 20px 20px 20px;
  color: #fff;
  font-size: 13px;
  width: 31px;
  font-weight: normal;
  height: 15px;
  line-height: 23px;
}

.team-form-table .top-links>ul>li.draw>a {
  background-color: var(--dark-gray);
}

.team-form-table .top-links>ul>li.draw:hover>a {
  background-color: var(--dark-gray);
}

.team-form-table .top-links>ul>li.loss>a {
  background-color: var(--likely-red);
}

.team-form-table .top-links>ul>li.loss:hover>a {
  background-color: var(--likely-red);
}

.team-form-table .top-links>ul>li.current>a {
  background-color: var(--likely-teal);
}

.team-form-table .top-links>ul>li.current:hover>a {
  background-color: var(--likely-teal);
}

.team-form-table .bet-table.team-opp .match-state {
  font-size: 14px;
  margin-bottom: 0;
  align-items: center;
  text-align: center;
  min-height: 30px;
}

/* .team-form-table .bet-table .match-state .status {
  min-width: 28px;
} */

td.no-pad.bottom-sticky .leauge-main-block.team_detail_page {
  margin-bottom: 0;
}

.team-from-graph-new td.no-pad td.player-goal a {
  display: inline-table;
  text-align: center;
  text-decoration: none;
  border-radius: 20px 20px 20px 20px;
  color: #fff;
  font-size: 13px;
  width: 31px;
  font-weight: normal;
  height: 15px;
  line-height: 20px;
  background: #838383;
}

.team-from-graph-new td.no-pad td.player-goal a.loss {
  background: #b8292f;
}

.team-from-graph-new td.no-pad td.player-goal a.win {
  background: #1eafb3;
}

.team-from-graph-new table.verticle-head-tbl td.team-avg {
  /* transform: rotate(90deg); */
  /* -webkit-transform:  rotate(90deg); */
  /* z-index: 99999999;  */
}

.team-from-graph-new table.verticle-head-tbl td.team-win {
  /* transform: rotate(90deg); */
  /* z-index: 99999999; */
  /* -webkit-transform:  rotate(90deg); Safari-specific transform */
}

.team-from-graph-new table.verticle-head-tbl td.team-player p {
  text-align: left;
  margin-right: 10px;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  left: 5px;
  top: 0px;
}

.team-from-graph-new table.verticle-head-tbl td.team-player p:hover {
  text-decoration: underline;
}

.team-from-graph-new table.verticle-head-tbl td.team-avg>p {
  /* position: relative;
  top: -15px; */
  /* padding: 0 8px; */
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.team-from-graph-new table.verticle-head-tbl td.team-win>p {
  /* position: relative;
  top: 8px; */
  font-weight: 500;
  /* padding-top: 10px; */
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  /* Safari-specific transform */
}

.team-from-graph-new table.verticle-head-tbl td.team-player {
  border-bottom: none;
}

td.player_form_space {
  padding-left: 20px;
}

.team-form-table.standings-tbl tr.team-selected_visitor td:first-child {
  border-top-left-radius: 26px;
  border-bottom-left-radius: 26px;
  background: #A0A0A0;
}

.team-form-table.standings-tbl tr.team-selected_visitor td {
  background: #A0A0A0;
  color: #fff;
}

.team-form-table.standings-tbl tr.team-selected_visitor td:last-child {
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
}

.team-form-table.standings-tbl tr.team-selected_visitor td.team_selected_radius {
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
  background: #A0A0A0;
}

/*Summry Page*/
.summary-block {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 620px;
  margin: 10px auto;
  align-items: center;
}

.summary-block h4 {
  margin-bottom: 0;
}

.summary-block .team-summry-time {
  width: 100%;
  max-width: 80px;
  text-align: center;
  color: #737373;
}

.summary-block.summry-quater {
  background: #cacaca;
  padding: 4px 5px 4px 4px;
  border-radius: 36px;
}

.summary-block a {
  display: inline-table;
  text-align: center;
  /* padding: 4px 6px 4px 6px; */
  text-decoration: none;
  border-radius: 20px 20px 20px 20px;
  color: #fff !important;
  font-size: 13px;
  width: 31px;
  font-weight: normal;
  height: 15px;
  line-height: 23px;
  background: #000;
}

.summary-block a.win {
  background: #1eafb3;
}

.summary-block a.loss {
  background: #A0A0A0;
}

.summary-block.summry-quater .team-summry-time {
  color: #fff;
}

.summary-block .team-summry-one {
  display: flex;
  flex: inherit;
  width: 100%;
  max-width: 100%;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
}

.summary-block .team-summry-two {
  display: flex;
  flex: inherit;
  width: 100%;
  max-width: 100%;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
}

.summary-block p {
  margin-bottom: 0;
  font-weight: 500;
  padding: 0 10px;
  font-size: 13px;
  cursor: pointer;
}

.summary-block p:hover {
  text-decoration: underline;
}

/* Match status */

.match-state-bar {
  width: 100%;
  max-width: 620px;
  margin: 0px auto 15px;
  text-align: center;
}

.match-custom-bar .custom-progress {
  width: 100%;
  /* max-width: 420px; */
  margin-left: auto;
  margin-top: 5px;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  gap: 3px;
}

.progress-match {

  color: #fff;
  width: 100%;
}

.progress-match.draw-score {
  justify-content: flex-end;
  display: flex;

}

.progress-match.low-score.draw-score span {
  background: #cacaca;
  padding: 0 7px;
  color: #fff;
  text-align: left;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  width: 100%;
  justify-content: flex-end;
  display: flex;
}

.progress-match.high-score.draw-score span {
  background: #cacaca;
  padding: 0 7px;
  color: #fff;
  text-align: right;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  width: 100%;
  justify-content: flex-start;
  display: flex;
}

.progress-match.low-score {
  justify-content: flex-end;
  display: flex;

}

.progress-match.low-score span {
  background: #000;
  padding: 0 7px;
  color: #fff;
  text-align: left;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  width: 100%;
  justify-content: flex-end;
  display: flex;
}

.progress-match.high-score {
  justify-content: flex-start;
  display: flex;
}

.progress-match.high-score span {
  background: #1eafb3;
  padding: 0 7px;
  color: #fff;
  text-align: right;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  width: 100%;
  justify-content: flex-start;
  display: flex;
}

.match-state-bar h3 {
  color: #979797;
  font-size: 15px;
  margin-bottom: 0;
  font-weight: 400;
  letter-spacing: 1.5px;
}

.progress-bar.text-left {
  justify-content: center;
  align-items: flex-start;
}

.progress-bar.text-right {
  justify-content: center;
  align-items: flex-end;
}

.notifie-toggle.switch_score .toggle-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-size: 14px;
}

.notifie-toggle.switch_score .toggle-switch label input+span {
  position: relative;
  display: inline-block;
  margin-right: 0px;
  width: 48px;
  height: 25px;
  background: #fff;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #1eafb3;
}

.notifie-toggle.switch_score .toggle-switch label input+span small {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 1.875rem;
  background: #1eafb3;
  transition: all 0.3s ease-in-out;
  top: 2px;
  left: 3px;
}

.notifie-toggle.switch_score .toggle-switch label input:checked+span small {
  left: 23px;
  transition: 3px;
}

.notifie-toggle.switch_score .toggle-switch label input:checked+span {
  background: #fff;
}

.progress-match.left-score {
  justify-content: flex-end;
  display: flex;

}

.progress-match.left-score span {
  background: #000;
  padding: 0 7px;
  color: #fff;
  text-align: left;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  width: 100%;
  justify-content: flex-end;
  display: flex;
}

.progress-match.right-score {
  justify-content: flex-start;
  display: flex;
}

.progress-match.left-score.high span {
  background: #1eafb3;
}

.progress-match.left-score.low span {
  background: #000;
}

.progress-match.left-score.draw span {
  background: #cacaca;
}

.progress-match.right-score.high span {
  background: #1eafb3;
}

.progress-match.right-score.low span {
  background: #000;
}

.progress-match.right-score.draw span {
  background: #cacaca;
}

.progress-match.right-score span {
  background: #1eafb3;
  padding: 0 7px;
  color: #fff;
  text-align: right;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  width: 100%;
  justify-content: flex-start;
  display: flex;
  min-width: 24px;
}

.championship-graph td.light-red.team_position_visitor,
.championship-graph td.light-blue.team_position_visitor,
.championship-graph td.dark-blue.team_position_visitor {
  background-color: #A0A0A0;
}

.championship-graph.standing-championship-graph td.team_position_visitor {
  opacity: 1;
}

table.table.table-hover.season_data th,
table.table.table-hover.career_data th {
  text-align: center;
  color: #979797;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 0;
  white-space: nowrap;
  cursor: pointer;
}

.bar-team-box {
  box-shadow: -2px 6px 9px 2px #a3a3a35e;
  padding: 10px;
  border: 1px solid var(--dark-gray);
  border-radius: 0px 23px 23px 23px;
  background-color: #fff;
  width: 210px;
  position: absolute;
  z-index: 123;
  right: auto;
  top: auto;
  height: 110px;
  left: 20px;
  display: none;
  bottom: 0;
}

.bar-popup:hover .bar-team-box {
  display: block;
}

td.bar-popup.down-popup .bar-team-box {
  /* bottom: -83%;
  top: auto; */
  bottom: -40px;
  top: auto;
}

td.bar-popup:last-child .bar-team-box {
  bottom: 0;
  top: auto;
  right: -10px;
  left: auto;
}

td.bar-popup:nth-last-child(2) .bar-team-box,
td.bar-popup:nth-last-child(3) .bar-team-box,
td.bar-popup:nth-last-child(4) .bar-team-box {
  bottom: 0;
  top: auto;
  right: 0;
  left: auto;
}

.championship-graph.team-from-graph table tr:last-child td.bar-popup .bar-team-box,
.championship-graph.team-from-graph table tr:nth-last-child(2) td.bar-popup .bar-team-box,
.championship-graph.team-from-graph table tr:nth-last-child(3) td.bar-popup .bar-team-box,
.championship-graph.team-from-graph table tr:nth-last-child(4) td.bar-popup .bar-team-box {
  bottom: 0;
  top: auto;
}

.bar-team-box .team-date {
  width: 86px;
  height: 22px;
  background-color: var(--dark-gray);
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 3px 0;
  font-size: 13px;
}

.bar-team-goal {
  display: flex;
  flex-wrap: nowrap;
  margin-top: 20px;
  flex-direction: column;
  gap: 2px;
}

.bar-team-one {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.bar-team-two {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.team-bar-name {
  display: flex;
  justify-content: center;
  margin-left: 5px;
  gap: 3px;
}

.team-bar-name img {
  width: 100%;
  max-width: 30px;
}

.team-bar-name p {
  margin-bottom: 0;
  align-self: center;
  font-size: 13px;
  font-weight: 500;
  max-width: 95px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bar-team-goal span {
  background: black;
  min-width: 50px;
  display: block;
  padding: 6px 4px;
  color: #fff;
  border-radius: 16px 16px 0px 0px;
  font-size: 16px;
}

.bar-team-two span {
  border-radius: 0px 0px 16px 16px;
}

.bar-team-one span {
  border-radius: 16px 16px 0px 0px;
}

.bar-team-two span.high {
  background: #1eafb3;

}

.bar-team-two span.low {
  background: #000;

}

.bar-team-one span.high {
  background: #1eafb3;

}

.bar-team-one span.low {
  background: #000;
}

.progress-match.draw-score {
  justify-content: flex-end;
  display: flex;

}

.progress-match.left-score {
  justify-content: flex-end;
  display: flex;

}

.progress-match.left-score span {
  background: #000;
  padding: 0 7px;
  color: #fff;
  text-align: left;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  width: 100%;
  justify-content: flex-end;
  display: flex;
  min-width: 24px;
}

.progress-match.right-score {
  justify-content: flex-start;
  display: flex;
}

.progress-match.left-score.high span {
  background: #1eafb3;
}

.progress-match.left-score.low span {
  background: #000;
}

.progress-match.left-score.draw span {
  background: #cacaca;
}

.progress-match.right-score.high span {
  background: #1eafb3;
}

.progress-match.right-score.low span {
  background: #000;
}

.progress-match.right-score.draw span {
  background: #cacaca;
}

.progress-match.right-score span {
  background: #1eafb3;
  padding: 0 7px;
  color: #fff;
  text-align: right;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  width: 100%;
  justify-content: flex-start;
  display: flex;
}

.team-from-graph-new .team-name-popup {
  width: 185px;
  top: 35px;
  left: 22px;
}

.team-from-graph-new table.verticle-head-tbl td .team-name-popup {
  width: 185px;
  top: 35px;
  left: 22px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  transform-origin: 0 0;

}

.team-from-graph-new .team-name-popup .team-logo-block {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  padding-bottom: 16px;
  text-decoration: none;
}

.team-from-graph-new table td.top-vertical .team-name-popup .team-logo-block {
  text-decoration: none;
  padding-bottom: 0;
}

.team-from-graph-new .team-name-popup .team-logo-block.win-block h4 {
  font-size: 12px;
  margin-bottom: 0;
}

.team-from-graph-new .team-name-popup .team-logo-block.win-block .team-icon img {
  width: 100%;
  max-width: 36px;
  border-radius: 50%;
  object-fit: contain;
  height: auto;
}

.team-from-graph-new .player-score table td {
  border-bottom: none;
  height: auto;
}

.team-percentage {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 90px;
}

.team-from-graph-new tr.team-selected_visitor td {
  background: #A0A0A0;
  color: #fff;
}

.team-from-graph-new tr.team-selected_visitor td:first-child {
  border-top-left-radius: 26px;
  border-bottom-left-radius: 26px;
  background: #1eafb3;

}

.team-from-graph-new td.no-pad.bottom-sticky tr.team-selected_visitor td:first-child {
  border-top-left-radius: 26px;
  border-bottom-left-radius: 26px;
  background: #A0A0A0;
}

.team-from-graph-new td.no-pad tr.team-selected_visitor td:first-child {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.team-from-graph-new tr td.no-pad.left-tbl .team-selected_visitor td:last-child {
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
  background: #A0A0A0;
}

/* table.table.table-hover.career_data th {
  text-align: left;
}

table.table.table-hover.career_data td {
  text-align: left;
} */

.team-from-graph-new tr.team-selected_visitor td.player-goal.custom-teampop .player-score td {
  background: #fff;
  color: inherit;
}

.team-from-graph-new td.no-pad.left-tbl .custom-teampop:last-child .team-name-popup,
.team-from-graph-new td.no-pad.left-tbl .custom-teampop:nth-last-child(2) .team-name-popup,
.team-from-graph-new td.no-pad.left-tbl .custom-teampop:nth-last-child(3) .team-name-popup,
.team-from-graph-new td.no-pad.left-tbl .custom-teampop:nth-last-child(4) .team-name-popup,
.team-from-graph-new td.no-pad.left-tbl .custom-teampop:nth-last-child(5) .team-name-popup,
.team-from-graph-new td.no-pad.left-tbl .custom-teampop:nth-last-child(6) .team-name-popup {
  right: 31px;
  left: auto;
  top: auto;
  bottom: 0;
  border-radius: 23px 23px 0px 23px;
  z-index: 999;
}

.team-from-graph-new td.no-pad.left-tbl table tr:last-child td.custom-teampop .team-name-popup,
.team-from-graph-new td.no-pad.left-tbl table tr:nth-last-child(2) td.custom-teampop .team-name-popup,
.team-from-graph-new td.no-pad.left-tbl table tr:nth-last-child(3) td.custom-teampop .team-name-popup {
  top: auto;
  bottom: 0;
  border-radius: 23px 23px 23px 0px;
}

.team-from-graph-new td.no-pad.bottom-sticky .team-name-popup .team-logo-block {
  padding-bottom: 0;
  align-items: center;
  white-space: normal;
  text-decoration: underline;
}

.team-form-table.standings-tbl table>:not(:last-child)>:last-child>* {
  border-bottom-color: #cacaca;
}

.team-bar-rank .progress .progress-bar span {
  padding-top: 5px;
}

table#teams_standing th#sort_by_team {
  text-align: center;
}

.team-form-table.standings-tbl .py-5 {
  padding-top: 0px !important;

}

.sports-table-cards.championship-main-section.filtered_match .sports-table-cards {
  margin-top: 0px;
}

.match_label {
  text-align: center;
  margin: 35px 0 30px;
  font-weight: 500;
}

tr.team-selected_visitor .top-links li {
  border: 2px solid #fff;
  border-radius: 20px;
}

tr.team-selected_visitor .bet-table.team-opp span.status {
  border: 1px solid #fff;

}

.leauge-main-block.team_detail_page.player_team {
  justify-content: center;
}

td.match_result_row p {
  margin-bottom: 0;
  text-align: left;
}

.team-from-graph-new table td.top-vertical table tr:last-child td.custom-teampop .team-name-popup,
.team-from-graph-new table td.top-vertical table tr:nth-last-child(2) td.custom-teampop .team-name-popup,
.team-from-graph-new table td.top-vertical table tr:nth-last-child(3) td.custom-teampop .team-name-popup,
.team-from-graph-new table td.top-vertical table tr:nth-last-child(4) td.custom-teampop .team-name-popup {
  right: auto;
  left: 22px;
  border-radius: 23px 0px 23px 23px;
  top: -163px;
}

.team-from-graph-new table tr.team-selected_visitor .top-links a {
  border: 1px solid;
  border-radius: 20px;
  display: block;
  width: 31px;
  height: 15px;
  padding: 10px 0;
  line-height: 1px;
}

.team-from-graph-new .arrow {
  display: block;
  float: right;
  margin-top: 0px;
  border-color: transparent;
  border-top-color: #979797;
  border-style: solid;
  border-width: 0.5em 0.31em 0;
  width: 0;
  height: 0;
  position: relative;
  line-height: 0;
  font-size: 19px;
  position: absolute;
  top: 0px;
  left: auto;
}

.team-from-graph-new .heading-verticle table th {
  position: relative;
}

.team-from-graph-new .heading-verticle table th .arrow {
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  line-height: 0;
  font-size: 19px;
  position: absolute;
  top: 0px;
  border-color: transparent;
  border-top-color: #979797;
  border-style: solid;
  border-width: 0.5em 0.31em 0;
  width: 0;
  height: 0;
  display: block;
  float: right;

}

/* th.match_team_name{
  text-align: left;
} */
.table>:not(:last-child)>:last-child>* {
  border-bottom-color: inherit;
}

.toast-error {
  background-color: #b8292f !important;
  /* Custom error color */
}

table.table.table-hover.career_data td.score_average {
  width: 50px;
}

table.table.table-hover.career_data td.score_total {
  width: 50px;
}

.progress.bg-flat-zerro.loss_zero .progress-bar {
  background-color: #b8292f;
}

.team-from-graph-new table.verticle-head-tbl td {
  height: 47px;
  vertical-align: middle;
}

td.no-pad.left-tbl .score-game tr td:first-child {
  display: none;
}

.player_stats .team-form-table .leauge-main-block {
  justify-content: center;
}

.team-from-graph-new .heading-verticle table th#sort_by_avg {
  cursor: pointer;
  position: relative;
  left: 10px;
}

.team-from-graph-new .heading-verticle table th#sort_by_win {
  cursor: pointer;
  position: relative;
  left: -7px;
}

.team-from-graph-new .heading-verticle table th#sort_by_player {
  cursor: pointer;
  position: relative;
  left: -31px;
}

.team-from-graph-new .team-name-popup .team-logo-block.win-block .team-icon p {
  font-weight: normal;
}

.team-from-graph-new td.no-pad.bottom-sticky table th {
  cursor: pointer;
  position: relative;
}

.team-from-graph-new td.no-pad.bottom-sticky table th i {
  left: 0;
  right: 0;
  margin: 0 auto;
  cursor: pointer;
}

.team-form-table .match_details_screen td {
  font-weight: normal;
}

.team-form-table .match_details_screen tr.win_team td {
  font-weight: 500;
}

.progress.bg-flat-zerro.loss .progress-bar {
  background: #b8292f;
}

/* .team-form-table .championship-graph.standing-championship-graph.mob-championship-graph table td img {
  max-width: 100%;
} */
.bar-team-box p {
  cursor: pointer;
}

.bar-team-box p:hover {
  text-decoration: underline;
}

.player-main-information h2 span:hover {
  text-decoration: underline;
}

.team-from-graph-new td.no-pad .score-game .team-name-popup table td:first-child {
  display: block;
}

.summary-block p.behind_rushed {
  font-weight: normal;
}

.team-bar-rank .container.table-responsive table {
  position: relative;
}

.team-bar-rank .container.table-responsive table th {
  font-weight: 500;
  top: -18px;
  position: relative;
}

.table-responsive.championship-table {
  -webkit-overflow-scrolling: touch;
  /* For smoother scrolling in Safari */
  overflow: auto;
  max-height: 1220px;
  /* or overflow: scroll; */
}

.table-responsive.championship-table.team_form_data {
  max-height: 5000px;
 
}

.player_stats .team-form-table.standings-tbl td.player_detail_page {
  cursor: pointer;
}

.player_stats .team-form-table.standings-tbl td.player_detail_page:hover {
  text-decoration: underline;
}

.top-links.team-batting-tab li.brand-logo.current:hover a {
  background: #000;
}

.sports-table-cards.championship-main-section.filtered_match .table-title.bg-black {
  margin-bottom: 0;
}

.sports-table-cards.championship-main-section.filtered_match .team-wrap-tab {
  margin-top: 15px;
}

.team-risk-block.pre_tips .bet-win {
  border: 2px solid #1eafb3;
  justify-content: center;
  background: #fff !important;
}

.team-risk-block.pre_tips .bet-win a {
  color: #000;
}

.summary-block p span {
  font-weight: normal;
}

table.table.table-hover.season_data tr {
  cursor: pointer;
}

.team-bar-rank .progress.draw_spread .progress-bar {
  background-color: var(--dark-gray);
}

.team-bar-rank .progress.bg-down.current .progress-bar {
  background-color: var(--likely-teal);
}

.match-state.not_played span {
  position: relative;
  left: -4px;
}

.sports-table-cards.championship-main-section.filtered_match {
  margin-top: 10px;
}

.info-icon {
  position: relative;
  top: 4px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {

  /* Safari and Chrome */
  .top-links.team-batting-tab ul li {
    padding-bottom: 11px;
  }

  /* Safari only override */
  ::i-block-chrome,
  .top-links.team-batting-tab ul li {
    padding-bottom: 20px;
  }
}

/* mandip css */
.progress.current .progress-bar {
  background: #1eafb3;
}

.progress.spread_draw .progress-bar {
  background: #979797;
}

.progress.current .progress-bar span.count-down {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -20px;
  z-index: 999;
  color: #1eafb3;
}

.team-odds-button.filtered_match_odds .odds-top-link {
  width: 100%;
  max-width: 100%;
  overflow: auto;
}

.team-odds-button.filtered_match_odds ul li span.top-head {
  height: 28px;
  border-radius: 23px;
  display: inline-block;
  line-height: 1;
  /* padding: 13px 47px 13px 47px; */
  letter-spacing: 0.1em;
  font-weight: 400;
  background-color: var(---white-color);
  color: #000;
  /* border: 2px solid #979797; */
  font-size: 18px;
  font-weight: normal;
  width: 100px;
  text-align: center;
}

.team-odds-button.filtered_match_odds .odds-top-link ul {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 15px;
  gap: 30px;
}

.team-odds-button.filtered_match_odds .odds-top-link ul .odds_image {
  width: 150px;
}

.progress.current .progress-bar {
  background: #1eafb3;
}

.progress.current .progress-bar {
  background: #1eafb3;
}

.progress.bg-up.loss .progress-bar {
  background: #b8292f;
}

.progress.spread_draw .progress-bar {
  background: #979797;
}

.progress.current .progress-bar span.count-down {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -20px;
  z-index: 999;
  color: #1eafb3;
}

.progress.loss .progress-bar span.count-up {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -20px;
  z-index: 999;
  color: #b8292f;
}

.team-from-graph-new .heading-verticle table th#sort_by_avg {
  cursor: pointer;
  position: relative;
  left: 8px;
}

.team-from-graph-new .heading-verticle table th#sort_by_win {
  cursor: pointer;
  position: relative;
  left: -7px;
}

.team-from-graph-new .heading-verticle table th#sort_by_player {
  cursor: pointer;
  position: relative;
  left: -31px;
}

.team-from-graph-new .team-name-popup .team-logo-block.win-block .team-icon p {
  font-weight: normal;
}

.team-from-graph-new td.no-pad.bottom-sticky table th {
  cursor: pointer;
  position: relative;
}

.team-from-graph-new td.no-pad.bottom-sticky table th i {
  left: 0;
  right: 0;
  margin: 0 auto;
  cursor: pointer;
}

.team-form-table .match_details_screen td {
  font-weight: normal;
}

.team-form-table .match_details_screen tr.win_team td {
  font-weight: 500;
}

.progress.bg-flat-zerro.loss .progress-bar {
  background: #b8292f;
}

.team-odds-button.filtered_match_odds .odds-top-link {
  width: 100%;
  max-width: 100%;
  overflow: auto;
}

.team-odds-button.filtered_match_odds ul li span.top-head {
  height: 28px;
  border-radius: 23px;
  display: inline-block;
  line-height: 1;
  padding: 13px 47px 13px 47px;
  letter-spacing: 0.1em;
  font-weight: 400;
  background-color: var(---white-color);
  color: #000;
  /* border: 2px solid #979797; */
  font-size: 18px;
  font-weight: normal;
  width: 100px;
  text-align: center;
  position: relative;
  right: 5px;
}

.team-odds-button.filtered_match_odds .odds-top-link ul {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 15px;
  gap: 15px;
  width: fit-content;
}

.team-odds-button.filtered_match_odds .odds-top-link ul .odds_image {
  width: 100px;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

table.table.table-hover.season_data_new td {
  cursor: pointer;
}

.team-odds-button.filtered_match_odds select#player_name {

  width: 100%;
  max-width: 220px;
  margin: 0px 0 10px 0;
  /* background-color: var(--likely-teal); */
  /* padding: 10px 30px 10px 10px; */
  border-radius: 18px;
  font-size: 14px;
  line-height: 23px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  /* background: url(../images/SVG/black_down_arrow.svg) 95% / 12% no-repeat; */
}

/* .team-odds-button.filtered_match_odds select#player_name option {
  background: transparent;
  color: #fff;
} */
.team-odds-button.filtered_match_odds select#player_name:focus {
  box-shadow: none;
  outline: none;
  color: #000;
}

.team-odds-button.filtered_match_odds .odds-top-link ul li:first-child {
  position: sticky;
  z-index: 9;
  background: #fff;
  left: 0;
  margin-right: 30px;
  padding-right: 15px;
}

.odds-top-link li.highest_odds a {
  background: #1eafb3;
  color: #fff;
  border: #1eafb3;
}

.team-odds-button.filtered_match_odds .odds-top-link ul li.bet-icon a {
  border: none;
}

#searchMobile:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -2;
}

.team-odds-button.filtered_match_odds ul li span.top-head.odds_head {
  right: 17px;
}

.spread_select {
  position: relative;
  width: 100%;
  max-width: 175px;
}

.spread_select select {
  width: 100%;
  padding: 4px 10px 4px 10px;
  border: none;
  background-color: #1eafb3;
  color: white;
  outline: none;
  border-radius: 23px;
  font-size: 14px;
  line-height: 23px;
}

.spread_select select:focus {
  color: #000;
  background-color: #fff;
  border: 3px solid #1eafb3;
  outline: 0;
  box-shadow: none;
}

.spread_select span {
  position: absolute;
  width: 40px;
  height: 100%;
  background-color: #1eafb3;
  right: 0;
  top: 0;
  pointer-events: none;
  border-radius: 23px;
}

.spread_select span::after {
  position: absolute;
  content: "";
  border-style: solid;
  border-width: 7px;
  border-color: #fff transparent transparent transparent;
  top: 43%;
  left: 35%;
}

.main-setting-section.login-main-wrapper.restricted-popup p.mid-text {
  font-size: 16px;
}

.main-setting-section.login-main-wrapper.restricted-popup .login-button-bottom {
  margin-top: 15px;
}

.main-setting-section.login-main-wrapper.restricted-popup .login-form .register-section {
  margin-top: 0;
}

#restrict_screen:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -2;
}

#restrict_screen:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #FFF;
  z-index: -1;
}

.login-main-btn.trial-main-button button#trial-btn {
  background: #1eafb3;
  border: 2px solid #1eafb3;
}

.login-main-btn.trial-main-button button#trial-btn:hover {
  color: #1eafb3;
  border: 2px solid #1eafb3;
  background-color: #fff;
}

div#add-card-modal .main-setting-section.login-main-wrapper {
  max-width: 500px;
}

div#add-card-modal .main-setting-section.login-main-wrapper div#card_number {
  margin-bottom: 20px;
}

div#add-card-modal .main-setting-section.login-main-wrapper .profile-edit {
  text-align: center;
}

.restricted-popup .login-main-btn {
  margin-bottom: 15px;
}


/*Aligment for table avg*/
.team-from-graph-new table.verticle-head-tbl td.team-player p {
  white-space: nowrap;
  overflow: hidden;
  width: 100px;
  text-overflow: ellipsis;
}

td.heading-verticle table,
.team-from-graph-new table.verticle-head-tbl {
  width: 240px;
  top: 265px;
}

.team-from-graph-new table.verticle-head-tbl td.team-player,
.team-from-graph-new .heading-verticle table th#sort_by_player {
  width: 100px;
  max-width: 100px;
  text-align: start;
  left: 6px;
}

.team-from-graph-new .heading-verticle table th#sort_by_player {
  left: 10px;
}

.team-from-graph-new .heading-verticle table th#sort_by_win,
.team-from-graph-new table.verticle-head-tbl td.team-win {
  width: 40px;
  max-width: 40px;
  left: 0;
}

.team-from-graph-new .heading-verticle table th#sort_by_avg,
.team-from-graph-new table.verticle-head-tbl td.team-avg {
  width: 40px;
  max-width: 40px;
  left: 0;
}



/*Features Page layout*/
.main-page-wrapper.features-wrapper {
  width: 100%;
}

.features-col-item {
  margin: 15px 0;
}

.features-col-item .item-inner {
  border-radius: 23px;
  overflow: hidden;
  position: relative;
  min-height: 442px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}


.features-col-item.pattern-1 .item-inner {
  background-image: radial-gradient(circle at bottom, #ffffff 29%, #1eafb3 69%, #00808d 100%);
  padding-top: 30px;
  padding-bottom: 10px;
  text-align: center;
}

.features-col-item.pattern-2 .item-inner {
  background-image: radial-gradient(circle at bottom, #1eafb3 32%, #ffffff 100%);
  color: #000;
  text-align: right;
}

.features-col-item.pattern-3 .item-inner {
  background-image: radial-gradient(circle at bottom, #1eafb3 32%, #000000 100%);
  color: #fff;
  text-align: right;
}

.features-col-item.pattern-4 .item-inner {
  background-image: radial-gradient(circle at bottom, #1eafb3 32%, #000000 100%);
  text-align: center;
  color: #fff;
}

.features-col-item.pattern-3 .item-inner .image {
  text-align: center;
}

.features-col-item .item-inner .image {
  margin-top: auto;
  position: relative;

}

.features-col-item .content {
  padding: 20px;
}

.features-col-item .content h2 {
  margin-bottom: 0;
  font-size: 30px;
}

.features-col-item .content p {
  font-size: 18px;
  font-weight: 400;
}

.features-col-item .content p:last-of-type {
  margin-bottom: 0;
}

.features-col-item .item-inner>.label {
  min-width: 79px;
  min-height: 27px;
  border-radius: 23px 0 23px 0;
  display: inline-block;
  color: #fff;
  text-align: center;
  padding: 4px 10px;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 500;
}

.features-col-item .item-inner>.label.label-free {
  background-color: #b8292f;
  color: #fff;
}

.features-col-item .item-inner>.label.label-premium {
  background: url('../images/label-bg.png') no-repeat center center;
  background-size: cover;
  color: #000;
  min-width: 100px;
}

.features-col-item.pattern-1 .content>img {
  margin-bottom: 10px;
  max-width: 270px;
}

.features-col-item.pattern-1 .image>img {
  max-width: 740px;
}

.features-col-item.pattern-2 .image>img {
  max-width: 530px;

  margin: 0 auto;
  display: block;
}

.features-col-item.pattern-2 .image>img,
.features-col-item.pattern-3 .image>img,
.features-col-item.pattern-4 .image>img {
  max-height: 358px;
  bottom: -2px;
  position: relative;
}

/*Coming Soon*/
/* .coming_soon .sidebar-nav>li>a,
.coming_soon .sidebar-nav .submenu li>a{
  cursor: context-menu;
} */
.coming_soon .sidebar-nav>li>a:before {
  display: none;
}

.coming_soon .sidebar-nav>li>a,
.coming_soon .sidebar-nav>li.has-children.active.active_menu>a {
  background: transparent;
  color: var(--dark-gray) !important;
}

.coming_soon .sidebar-nav li.has-children>a:after,
.coming_soon .sidebar-nav>li.has-children.active.active_menu>a:after {
  background: url('../images/SVG/angle-right-teal.svg') no-repeat center center;
}

.coming_soon .sidebar-nav>li.has-children.active.active_menu>a {
  padding-left: 0;
}

/* ul.submenu li.has-children:has(li.current) > a,
ul.submenu li.has-children:has(li.current) > a:before {
  background: transparent !important;
  color: #000 !important;
}

ul.submenu li.has-children.active:has(li.current) > a:after {
  background-image: url(../images/SVG/angle-right-teal.svg) !important;
} */

.sidebar-category-links.coming_soon .category-title {
  color: var(--likely-red);
}


div#login-password-error,
div#login-fail-error {
  margin-bottom: 14px;
  font-size: 14px;
}

div#login-email-error,
#login-password-error {
  margin-bottom: 0;
  top: -10px;
  position: relative;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .features-col-item .content h2 {
    font-size: 24px;
  }

  .features-col-item .content p {
    font-size: 14px;
  }
}

@media (max-width: 991px) {

  .features-col-item.pattern-2 .image>img,
  .features-col-item.pattern-3 .image>img,
  .features-col-item.pattern-4 .image>img {
    max-height: 230px;
  }

  .features-col-item .item-inner {
    min-height: inherit;
  }

  .main-page-wrapper.features-wrapper {
    padding: 0 20px;
  }

  .features-col-item.pattern-1 .image>img {
    width: 100%;
    max-width: 90%;
  }

  .features-col-item.pattern-1 .content>img {
    max-width: 180px;
  }

  .features-col-item .content h2 {
    font-size: 18px;
  }

  .features-col-item .content p {
    font-size: 12px;
  }

  .features-col-item.pattern-2 .image>img,
  .features-col-item.pattern-3 .image>img,
  .features-col-item.pattern-4 .image>img {
    max-width: 100%;
  }

  .features-col-item.pattern-4 .content>img {
    max-height: 32px;
    max-width: 250px;
  }

  .features-col-item .item-inner>.label {
    font-size: 12px;
    min-height: 20px;
  }

  .features-col-item .item-inner>.label.label-premium {
    min-width: 80px;
  }
}

.table-head-title h6 {
  background-color: #fff;
}

.championship-graph table td {
  min-width: 38px;
  width: 38px;
  height: 38px;
}

.championship-graph.team-from-graph .leauge-main-block {
  left: 2px;
}

.championship-graph.team-from-graph table td {
  padding: 0 4px;
}

.championship-graph.team-from-graph th#sort_by_win .arrow {
  top: 17px;
}

.championship-graph.team-from-graph table td.total_win {
  padding-top: 4px;
}

.date-navigation .prev_league_nfl:after,
.date-navigation .next_league_nfl:after {
  content: "";
  border-left: 9px solid var(--likely-teal);
  width: 20px;
  height: 17px;
  display: inline-block;
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  border-right: 8px solid transparent;
}

.date-navigation .prev_league_nfl:after {
  border-right: 9px solid var(--likely-teal);
  border-left: 8px solid transparent;
}

.summary-list.sports-table-cards .custom-teampop:hover .team-name-popup {
  display: block;
}

.summary-list.sports-table-cards .custom-teampop {
  position: relative;
}

.summary-list.sports-table-cards .team-name-popup h4 {
  font-size: 14px;
  font-weight: 400;
}

.top-links.dynamic_filter {
  overflow: hidden;
}

.top-links.dynamic_filter>ul {
  overflow: auto;
  width: 100%;
  max-width: 100%;
}

.championship-graph td.custom-teampop.rightside-td .team-name-popup {
  left: auto;
  right: 18px;
  border-radius: 23px 0 23px 23px;
  top: 10px;
}

.progress.graph_loss.bg-flat-zerro {
  color: #b8292f;
}

.progress.graph_loss.bg-flat-zerro .progress-bar {
  background: #b8292f;
}


.match-chart-area {
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  height: 400px !important;
  display: flex;
  align-items: flex-end;
}

.match-chart-area.up-down {
  display: flex;
  align-items: center;
}

.team-bar-rank .match-chart-area table th {
  top: -275px !important;
}
.team-bar-rank .match-chart-area.up-down table th {
  top: -200px !important;
}

.team-wrap-tab .top-links ul.half-btn-section.htft-btn,
.team-wrap-tab .top-links ul.sub_main_menu{
  padding-left: 10px;
}
.team-wrap-tab .top-links ul.team_touchdown {
  padding-left: 10px;
}
.team-wrap-tab .top-links ul.half-btn-section.htft-btn{
  padding-left: 20px
}


/*Need to update in Live changes*/

/*14-10-2024*/
.team-bar-rank .container.table-responsive {
  min-height: 428px !important;
    overflow-y: hidden !important;
    padding-top: 28px;
    overflow-x: auto;
}
@media (max-width:767px){
  .card-panel.accordion-item.nfl-toggle-filter .team-wrap-tab {
    flex-wrap: wrap;
  }
}

/*28-10-2024*/
.team-from-graph-new .heading-verticle table th#sort_by_player > i {
  left: 28px;
  right: auto;
}
table.table.table-hover.career_data td.score_total,
table.table.table-hover.career_data td.score_average {
  white-space: nowrap;
}

/*NBL CHANGEs 13-11-2024*/
/* .reduce-championship.championship-graph table {
  table-layout: fixed;
} */
/* .reduce-championship.championship-graph table td {
  width: 10%;
  min-width: 10%;
} */

@media (max-width: 767px) {
  .reduce-championship.championship-graph table {
    table-layout: fixed;
  }
  .reduce-championship.championship-graph table td {
    width: 10%;
    min-width: 10%;
  }
}

/*CHANGEs 19-11-2024*/
.fav-right {
  position: absolute;
  right: 12px;
  top: 3px;
  display: flex;
}

.card-item .bet-table .col-time .fav-right button.icon-btn {
  position: relative;
  top: 0;
  right: 0;
  
}
.fav-right > span {
  max-width: 50px;
  margin-right: 10px;
  margin-top: 4px;
}
/* .fav-right > span{
  background-color: #000;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin-right: 8px;
  margin-top: 4px;
} */
/* .fav-right > span > img {
  max-width: 16px;
} */

@media (max-width: 767px){
  /* .fav-right > span{
    padding: 6px;
  } */
  .fav-right > span {
      max-width: 30px;
      margin-right: 5px;
      margin-top: 2px;
  }
  .card-item .bet-table .col-time .fav-right button.icon-btn{
    top: 1px;
  }
  .card-item .bet-table .col-time .fav-right svg{
    width: 22px;
  }
}

/*More sports*/
.championship-graph.mob-championship-graph.more-championship-window table {
  table-layout: fixed;
}
.more-championship-window.championship-graph table td,
.more-championship-window.championship-graph table th {
  min-width: 18px;
  width: 18px;
  height: 18px;
  padding: 0;
}

.team-logo-block .content span {
  display: block;
  text-align: left;
  padding-left: 15px;
  font-size: 12px;
  font-weight: 500;
}
table.table.match_details_screen thead th:first-child {
  width: 65%;
  text-align: left;
}

table.table.match_details_screen tbody td:first-child {
  text-align: left;
}

table.table.match_details_screen thead th:last-child,table.table.table-hover.match_details_screen tbody td:last-child {
  width: 15%;
  text-align: center;
}
.table-responsive.championship-table.cw_graph_scroll {
  max-height: 1220px;
} 
.summary-block .red_card{
  background-color:#b8292f !important;
}
.summary-block .yellow_card{
  background-color:#ffc107 !important;
}
.team-summry-two.conv-miss a.loss {
  background: #fff;
  outline: 1px solid #000 !important;
  color: #000 !important;
  outline-offset: -1px;
}
.team-summry-one.conv-miss a.loss {
  background: #fff;
  outline: 1px solid #000 !important;
  color: #000 !important;
  outline-offset: -1px;
}
.summary-list.sports-table-cards .team-name-popup {
  text-align: left;
}
.match-chart-area:not(.up-down) table td {
  height: 100px;
}

/* //Tipsters CSS */

.bet-section-wapper{
  max-width: 100%;
  background: white;
  /* border-radius: 8px; */
  overflow: hidden;
}
.bet-section-wapper  .tipster_content {
  border: 1px solid #979797;
}

.bet-section-wapper .tipster_content {
  margin-bottom: 15px;
}

.bet-section-wapper .tipster_content:last-child {
  margin-bottom: 0;
}
.match-block h5 {
  color: #979797;
  font-weight: 500;
}
.bet-section-wapper .bet-header-text {
  background: black;
  color: white;
  padding: 10px 15px;
  font-weight: bold;
}
.bet-section-wapper .sub-bet-header {
  background: #c1c1c1;
  padding: 8px 15px;
  font-weight: 600;
}
.bet-section-wapper .bet-contents {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  padding: 15px;
}
.bet-section-wapper .tips-header {
  background: #1eafb3;
  color: white;
  padding: 10px 15px;
  font-weight: 600;
}
.bet-section-wapper .bet-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0;
  gap: 10px;
}
.bet-section-wapper .bet-info .logo-images img {
  width: 110px;
  border-radius: 109%;
  margin-right: 0;
  object-fit: cover;
  height: 110px;
  display: inline-block;
}
.bet-section-wapper .bet-stats {
  font-size: 14px;
}
.bet-section-wapper .bet-stats span {
  color: green;
}
.bet-section-wapper .single-bet {
  padding: 15px;
  display: flex;
  align-items: flex-start ;
  justify-content: space-between;
  border-bottom:2px solid #d1d1d1; 
}
.bet-section-wapper .stake {
  display: inline-block;
  border: 2px solid #d1d1d1;
  padding: 8px 20px;
  border-radius: 60px;
  
  margin-right: 10px;
  font-style: italic;
}
.bet-section-wapper .graph-link p a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  padding-right: 15px;
}
.bet-section-wapper .bet-btn {
  display: inline-flex;
    align-items: center;
    color: white;
    padding: 0;
    border-radius: 50px;
    font-weight: bold;
    position: relative;
    top: -2px;
    left: -2px;
}
.bet-section-wapper .odds {
  display: inline-block;
  padding: 5px 0 5px 0px;
  border-radius: 5px;
  font-size: 11px;
  width: 90%;
  margin-top: 5px;
  margin-left: auto;
  text-align: center;
  max-width: 140px;
  display: block;
}
.bet-section-wapper .logo-images {
  max-width: 130px;
}
td.results-name {
  font-size: 10px !important;
  color: #5d5d5d;
}
.bet-section-wapper .bet-btn span.bet {
  padding: 8px 20px;
  border: 2px solid #000;
  border-radius: 50px;
  background-color: #009c3b;
}
.bet-section-wapper  .bet-btn span.price {
  color: #000;
  padding: 8px 15px;
  display: inline-block;
  
}

.bet-section-wapper span.bold {
  font-weight: 800;
}
.stakes-wrapper {
  font-size: 14px;
}
.bet-single-wrapper {
  font-size: 14px;
}
.bet-section-wapper .bet-single-wrapper strong {
  font-weight: 600;
}
.bet-section-wapper .bet-single-wrapper p {
  margin: 15px 0;
}
.team-percentage {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bet-section-wapper h2.bet-info-head {
  margin: 0 0 10px;
  padding-left: 10px;
  font-size: 17px;
}
.bet-section-wapper td {
  padding: 5px 10px;
  text-align: left;
  font-size: 14px;
}
.bet-section-wapper span.theme-color {
  color: #0097a7;
  font-weight: 600;
}
.bet-section-wapper span.loss {
  color: #b8292f;
  font-weight: 900;
}
.bet-section-wapper span.push {
  color: #979797;
  font-weight: 900;
}
.navigate-graphs a {
  text-decoration: none;
  padding: 4px 20px;
  margin-right: 5px;
  background: #0097a7;
  display: inline-block;
  border-radius: 60px;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}
a.graph.active {
  background: #1eafb3;
}
a.graph {
  border-radius: 18px;
  background-color: #cacaca;
  color: #fff;
  display: inline-block;
  line-height: 1;
  padding: 4px 10px 4px 10px;
  letter-spacing: 0.1em;
  font-weight: 300;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 18px;
  height: 25px;
  text-align:center
}
.navigate-graphs {
  padding: 5px 15px;
}

.navigate-graphs {
  display: flex;
}
a.graph:hover {
  background:  var(--dark-gray);
}

.graph-wrapper {
  border: 2px solid #c1c1c1;
  margin: 10px;
  border-radius: 10px;
}
.graph-wrapper img {
  padding: 10px;
  display: block;
  margin: 0 auto;
}
.highcharts-data-table table {
  font-family: Verdana, sans-serif;
  border-collapse: collapse;
  border: 1px solid #ebebeb;
  margin: 10px auto;
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.highcharts-data-table caption {
  padding: 1em 0;
  font-size: 1.2em;
  color: #555;
}

.highcharts-data-table th {
  font-weight: 600;
  padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
  padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
  background: #f8f8f8;
}

.highcharts-data-table tr:hover {
  background: #f1f7ff;
}
/* .highcharts-figure,
.highcharts-data-table table {
    min-width: 310px;
    max-width: 800px;
    margin: 1em auto;
}

.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid #ebebeb;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}

.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
    padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: #f1f7ff;
}

.highcharts-description {
    margin: 0.3rem 10px;
} */
.stakes-wrapper .bet-btn.bet-icon img {
  width: 73px;
  height: 40px;
  object-fit: fill;
  border-radius: 50px;
  border: 2px solid #000;
}
.bet-prize-btn {
  border: 2px solid #0097a7;
  border-radius: 50px;
  width: 131px;
  height: 40px;
}
.stakes-wrapper {
  display: flex;
}
span.price {
  padding: 0 11px 0 3px;
  font-weight: 600;
}
.highcharts-credits{
  display:none;
}
.center_score{
  text-align: center !important;
}
.no-tips-found-block{
  text-align: center;
  margin: 30px 0;
}
.no-tips-found-block h6{
  font-weight: 400;
}
.odds_subject{
  font-size: 10px;;
}
/* .promotion{
  font-size:14px;
  font-weight: 600;
  color: var(--likely-red);
 
  border-radius: 5px;
   
    width: 90%;
    margin-top: 5px;
    margin-left: auto;
    text-align: center;
    max-width: 140px;
    display: block;
} */
.bet-section-wapper .promotion {
  display: inline-block;
  /* border: 2px solid #d1d1d1; */
  padding: 3px 11px;
  border-radius: 60px;
  background-color: var(--likely-red);
  margin-right: 0px;
  font-style: italic;
  color:white;
  float:right;
  font-size: 12px;
  margin-top:10px;
  margin-bottom: 0px;
}
.promotion_subject{
  font-weight: 600;
}
.promotion_odds {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.no-tips-found-block h5 {
  font-size: 13px;
  font-weight: 400;
}
.team-percentage table tr {
  transition: opacity 0.3s ease;
}

.team-percentage table tr[style*="display: none"] {
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
}
ul.navbar-nav li a.nav-logo.active {
  padding: 2px 8px !important;
  border: 2px solid #00b4b6;
  background-color: #323232;
}
ul.navbar-nav li a.nav-logo {
  padding: 4px 8px !important;
  background-color: #323232;
}
ul.navbar-nav li a.nav-logo img{
  max-width: 90px;
}

ul.navbar-nav li a.nav-tipster-logo.active {
  padding: 2px 8px !important;
  border: 2px solid #79d004;
  background-color: #323232;
}
ul.navbar-nav li a.nav-tipster-logo {
  padding: 4px 8px !important;
  background-color: #323232;
}
ul.navbar-nav li a.nav-tipster-logo img{
  max-width: 80px;
}
.chart-container {
  width: 100%;
  height: 300px; /* Default for desktop */
}
.graph-wrapper{
  overflow: hidden;
}

/* 31-03 */
.date-navigation #datepicker1 {
  width: 136px;
  outline: none;
  border: none;
  padding: 6px 6px 6px 14px;
  color: #979797;
  font-weight: 500;
  font-size: 14px;

}