﻿@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-size: unset;
}

body {
  background-color: #e8e8e8;
  font-family: "Nunito", sans-serif;
  overflow-x: hidden;
  line-height: unset;
}

a {
  text-decoration: none;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 5px;
  background: #ffffff;
  margin: 0 0.5rem;
}

/* Scrollbar Track Styles */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0px rgba(255, 255, 255, 0);
  border-radius: 10px;
}

/* Scrollbar Thumb Styles */
::-webkit-scrollbar-thumb {
  background: #858585;
  border-radius: 10px;
}

.noSelect {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.noSelect:focus {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

:focus {
  outline: none !important;
}

/* section,
footer {
  padding: 0;
  position: unset;
  background-attachment: unset;
} */
.my_h1, .my_h2, .my_h3, .my_h4, .my_h5, .my_h6, .my_p {
  margin: 0;
  padding: 0;
  line-height: unset;
  letter-spacing: unset;
  font-size: unset;
}

.my_dl, .my_ol, .my_ul {
  margin: unset;
  padding: unset;
}

.center {
  width: 1600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 1.5rem;
  /* You can uncomment this line if needed */
}

.center_main {
  width: 1600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 1.5rem;
  /* You can uncomment this line if needed */
}

.header, .main_section, .top_header, .my_cards {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_header {
  background: #221f1f;
}

.top_header .top_header_center {
  padding: 0rem 1.5rem;
  align-items: center;
}

.top_header .top_header_center .right_side {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  align-items: center;
}

.top_header .top_header_center .right_side .user {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.top_header .top_header_center .right_side .user p {
  color: #fff;
  font-weight: 600;
  padding-left: 5px;
  font-size: 14px;
}

.email, .logout {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center_hamburger {
  justify-content: center;
  align-items: center;
}

.header {
  background-color: #fff;
}

.header .center .company_logo {
  font-size: 20px;
  margin: 0;
}

.header .center .company_logo a {
  text-decoration: none;
  color: #292929;
}

.header .center .desktop_nav_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
  transition: 0.3s;
}

.header .center .desktop_nav_item li {
  margin: 0 0.4rem;
  text-align: center;
}

.header .center .desktop_nav_item li a {
  /* padding: 1.1rem 0.5rem; */
  padding: 0.7rem 0.5rem;
  color: #000;
  font-weight: 500;
  opacity: 0.9;
  border-radius: 2px;
  font-size: 16px;
}

.header .center .desktop_nav_item li:hover a {
  opacity: 0.7;
}

.header .center .desktop_nav_item li a.active {
  opacity: 1 !important;
  font-weight: 600;
  border-bottom: 3px solid var(--primary-color);
}

.cards_center {
  flex-direction: column;
  align-items: center;
}

.cards_center .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* margin-top: 3.5rem; */
  margin-top: 1rem;
}

.cards_center .text h1 {
  font-size: 30px;
  color: #000000;
  opacity: 0.8;
  margin: 1rem 0;
}

.cards_center .text p {
  color: #747474;
  font-weight: 500;
  border-radius: 2px;
  font-size: 16px;
  text-align: center;
  line-height: 28px;
}

.cards_center .allCards {
  width: 100%;
  align-items: center;
  margin-top: 1rem;
}

.main_section {
  margin-top: 1.5rem;
}

.main_section .center_main .countries, .main_section .center_main .highlights {
  background-color: #fff;
  width: 280px;
  height: 500px;
  border-radius: 15px;
  box-shadow: 0 4px 7px 0 #dbdbdb;
  transition: 0.3s;
}

.main_section .center_main .countries .top_part {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1.5rem 1.3rem;
  border-bottom: 1px solid #f3f3f3;
  position: relative;
}

.main_section .center_main .countries .top_part .closeIcon {
  position: absolute;
  top: 1.3rem;
  right: 1.2rem;
  opacity: 0.4;
  width: 14px;
  cursor: pointer;
  display: none;
  transition: 0.3s;
}

.main_section .center_main .countries .top_part .closeIcon:hover {
  opacity: 0.7;
}

.main_section .center_main .countries .top_part p {
  font-weight: 600;
  color: #858585;
  font-size: 16px;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}

.main_section .center_main .countries .top_part .search_area {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f4f4f4;
  padding: 0 1rem;
  border-radius: 50px;
}

.main_section .center_main .countries .top_part .search_area input {
  width: 205px;
  border: none;
  outline: none;
  background-color: #f4f4f4;
  height: 100%;
  font-weight: 500;
  padding: 0.7rem 0;
  font-size: 16px;
  color: #858585;
  font-family: "Nunito", sans-serif;
}

.main_section .center_main .countries .top_part .search_area .search_icon {
  height: 40.38px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 31px;
  cursor: pointer;
}

.main_section .center_main .countries .country_list {
  padding: 0 1.3rem;
  overflow-y: auto;
  height: 327px;
  margin-right: 0.5rem;
  margin-top: 0.5rem;
}

.main_section .center_main .countries .country_list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main_section .center_main .countries .country_list ul li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(238, 238, 238, 0.6509803922);
  user-select: none;
}

.main_section .center_main .countries .country_list ul li:last-child {
  border-bottom: none;
}

.main_section .center_main .countries .country_list ul li .parent {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.main_section .center_main .countries .country_list ul li .parent .left_side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main_section .center_main .countries .country_list ul li .parent .left_side img {
  width: 25px;
  height: 25px;
  border-radius: 50px;
}

/* Country Name Styles */
.main_section .center_main .countries .country_list ul li .parent .left_side .country_name {
  margin: 0 0 0 1rem;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  opacity: 0.8;
  user-select: none;
}

/* Right Side Styles */
.main_section .center_main .countries .country_list ul li .parent .right_side {
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}

/* Nested Link Styles */
.main_section .center_main .countries .country_list ul li .nested_link {
  width: 100%;
  list-style: none;
  padding: 0;
  padding-left: 2.5rem;
  display: none;
  transition: display 0.3s ease;
}

.main_section .center_main .countries .country_list ul li .nested_link.show {
  display: block;
}

.main_section .center_main .countries .country_list ul li .nested_link li {
  padding: 0;
}

.main_section .center_main .countries .country_list ul li .nested_link li a {
  width: 100%;
  padding: 0.8rem 0 !important;
  color: #626262;
  border-bottom: 1px solid rgba(238, 238, 238, 0.6509803922);
}

.main_section .center_main .countries .country_list ul li .nested_link li:last-child a {
  border-bottom: none;
  padding: 0.8rem 0 0.3rem 0 !important;
}

.main_section .center_main .topLeagues, .main_section .center_main .highlights {
  background-color: #fff;
  width: 280px;
  height: 500px;
  border-radius: 15px;
  box-shadow: 0 4px 7px 0 #dbdbdb;
  transition: 0.3s;
}

.main_section .center_main .topLeagues .top_part {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1.5rem 1.3rem;
  border-bottom: 1px solid #f3f3f3;
  position: relative;
}

.main_section .center_main .topLeagues .top_part .closeIcon {
  position: absolute;
  top: 1.3rem;
  right: 1.2rem;
  opacity: 0.4;
  width: 14px;
  cursor: pointer;
  display: none;
  transition: 0.3s;
}

.main_section .center_main .topLeagues .top_part .closeIcon:hover {
  opacity: 0.7;
}

.main_section .center_main .topLeagues .top_part p {
  font-weight: 600;
  color: #858585;
  font-size: 16px;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}

.main_section .center_main .topLeagues .top_part .search_area {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f4f4f4;
  padding: 0 1rem;
  border-radius: 50px;
}

.main_section .center_main .topLeagues .top_part .search_area input {
  width: 205px;
  border: none;
  outline: none;
  background-color: #f4f4f4;
  height: 100%;
  font-weight: 500;
  padding: 0.7rem 0;
  font-size: 16px;
  color: #858585;
  font-family: "Nunito", sans-serif;
}

.main_section .center_main .topLeagues .top_part .search_area .search_icon {
  height: 40.38px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 31px;
  cursor: pointer;
}

.main_section .center_main .topLeagues .country_list {
  padding: 0 1.3rem;
  overflow-y: auto;
  height: 327px;
  margin-right: 0.5rem;
  margin-top: 0.5rem;
}

.main_section .center_main .topLeagues .country_list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main_section .center_main .topLeagues .country_list ul li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(238, 238, 238, 0.6509803922);
  user-select: none;
}

.main_section .center_main .topLeagues .country_list ul li:last-child {
  border-bottom: none;
}

.main_section .center_main .topLeagues .country_list ul li .parent {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.main_section .center_main .topLeagues .country_list ul li .parent .left_side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main_section .center_main .topLeagues .country_list ul li .parent .left_side img {
  width: 25px;
  height: 25px;
  border-radius: 50px;
}

/* Country Name Styles */
.main_section .center_main .topLeagues .country_list ul li .parent .left_side .country_name {
  margin: 0 0 0 1rem;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  opacity: 0.8;
  user-select: none;
}

/* Right Side Styles */
.main_section .center_main .topLeagues .country_list ul li .parent .right_side {
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}

/* Nested Link Styles */
.main_section .center_main .topLeagues .country_list ul li .nested_link {
  width: 100%;
  list-style: none;
  padding: 0;
  padding-left: 2.5rem;
  display: none;
  transition: display 0.3s ease;
}

.main_section .center_main .topLeagues .country_list ul li .nested_link.show {
  display: block;
}

.main_section .center_main .topLeagues .country_list ul li .nested_link li {
  padding: 0;
}

.main_section .center_main .topLeagues .country_list ul li .nested_link li a {
  width: 100%;
  padding: 0.8rem 0 !important;
  color: #626262;
  border-bottom: 1px solid rgba(238, 238, 238, 0.6509803922);
}

.main_section .center_main .topLeagues .country_list ul li .nested_link li:last-child a {
  border-bottom: none;
  padding: 0.8rem 0 0.3rem 0 !important;
}

.main_section .center_main .highlights {
  height: auto;
  padding-bottom: 1px;
  margin-bottom: 1.5rem;
}

.main_section .center_main .highlights .heading {
  font-weight: 500;
  color: #858585;
  font-size: 16px;
  opacity: 0.7;
  padding: 1.2rem 1.3rem;
  border-bottom: 1px solid #f3f3f3;
}

.highlights_option {
  margin: 1rem 0;
  padding: 0 1.3rem;
  overflow-y: scroll;
}

.highlights_option .option {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.highlights_option .option:last-child {
  margin-bottom: 0;
}

.highlights_option .option:hover {
  margin-left: 0.5rem;
}

.highlights_option .option img {
  width: 25px;
}

.highlights_option .option p {
  margin: 0 0 0 0.5rem;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  opacity: 0.8;
  user-select: none;
}

/* Right Side Styles Continued */
.main_section .center_main .right_side {
  width: calc(100% - 300px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.main_section .center_main .right_side .drop_downs {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Drop-Down Styles */
.drop-down {
  position: relative;
  display: inline-block;
  width: 180px;
  margin: 0px 0.2rem 0.3rem;
}

.drop-down select {
  width: 180px;
  display: block;
  border-radius: 15px;
  outline: none;
  border: none;
  padding: 0.55rem 1rem;
  font-size: 15px;
  font-weight: 500;
  color: #353535;
  font-family: "Nunito", sans-serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  box-shadow: 0 4px 7px 0 #dbdbdb;
}

.drop-down::before {
  content: url(../../img/angle-down-solid.svg);
  position: absolute;
  top: 56%;
  right: 18px;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Date Picker Styles */
#date_picker {
  width: 180px;
  display: block;
  border-radius: 15px;
  outline: none;
  border: none;
  padding: 0.8rem 1rem;
  font-size: 15px;
  font-weight: 500;
  color: #353535;
  font-family: "Nunito", sans-serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  box-shadow: 0 4px 7px 0 #dbdbdb;
  margin-left: 0.6rem;
}

.drop_down_right_side {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Button Styles */
.main_section .center_main .right_side .buttons {
  width: 100%;
  background: #221f1f;
  margin: 1rem 0;
  border-radius: 15px;
  overflow: hidden;
}

.main_section .center_main .right_side .buttons ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.main_section .center_main .right_side .buttons ul li a {
  color: #c2c2c2;
  padding: 1rem;
  display: inline-block;
  transition: 0.3s;
}

.main_section .center_main .right_side .buttons ul li a:hover {
  color: #e1e1e1;
}

.main_section .center_main .right_side .buttons ul li a.active {
  background: #3b3a3a;
  border-bottom: 3px solid var(--primary-color);
  color: #fff;
  border-radius: 10px;
}

/* Button Styles */
.comboHistory .buttons {
  width: 100%;
  background: #221f1f;
  margin: 1rem 0;
  border-radius: 15px;
  overflow: hidden;
}

.comboHistory .buttons ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.comboHistory .buttons ul li a {
  color: #c2c2c2;
  padding: 1rem;
  display: inline-block;
  transition: 0.3s;
}

.comboHistory .buttons ul li a:hover {
  color: #e1e1e1;
}

.comboHistory .buttons ul li a.active {
  background: #3b3a3a;
  border-bottom: 3px solid #f6bf0b;
  color: #fff;
  border-radius: 10px;
}

/* .main_section .center_main .right_side .buttons button {
  min-width: 80px;
  min-height: 27px;
  background-color: #fff;
  border: none;
  outline: none;
  border-radius: 5px;
  color: #292929;
  font-family: 'Nunito', sans-serif;
  margin: 0.3rem;
  border: 1px solid #2929298c;
  cursor: pointer;
  padding: 0 0.3rem;
  transition: 0.3s;
}

.main_section .center_main .right_side .buttons button:hover {
  opacity: 0.8;
}

.main_section .center_main .right_side .buttons button.active {
  background-color: #292929;
  color: #fff;
  opacity: 1 !important;
} */
/* my_table Styles */
.my_table {
  width: 100%;
  border-radius: 10px;
  background-color: #e1e1e1;
  margin-bottom: 1.5rem;
}

.my_table .my_table_main_heading {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 1.1rem;
}

.my_table .my_table_main_heading img {
  width: 20px;
  height: 20px;
  border-radius: 50px;
}

.my_table .my_table_main_heading h1 {
  font-size: 15px;
  margin-left: 0.7rem;
  font-weight: 600;
}

.my_table .my_table_body {
  border-radius: 0 0 15px 15px;
}

.my_table .my_table_body .my_table-heading {
  width: 100%;
  height: 35px;
  background-color: #fafafa;
  display: flex;
  align-items: center;
}

.my_table .my_table_body .my_table-heading .time {
  text-align: center;
  height: 100%;
  align-content: center;
  flex-grow: 1;
  flex-basis: 7.1%;
  flex-shrink: 2;
}

.my_table .my_table_body .my_table-heading .matches {
  display: flex;
  height: 100%;
  align-items: center;
  flex-grow: 1;
  flex-basis: 29.5%;
  flex-shrink: 4;
}
.my_table .my_table_body .my_table-heading .matches p {
  margin-left: 3%;
}

/* my_table Heading Styles */
.my_table .my_table_body .my_table-heading .tip {
  height: 100%;
  text-align: center;
  align-content: center;
  flex-grow: 1;
  flex-basis: 15.5%;
  flex-shrink: 3;
}

.my_table .my_table_body .my_table-heading .probability {
  height: 100%;
  align-content: center;
  flex-grow: 1;
  flex-basis: 12%;
  flex-shrink: 1;
  text-align: center;
}

.my_table .my_table_body .my_table-heading .trend {
  height: 100%;
  align-content: center;
  flex-grow: 1;
  flex-basis: 29.8%;
  flex-shrink: 4;
}
.my_table .my_table_body .my_table-heading .trend p {
  margin-left: 1rem;
}

.my_table .my_table_body .my_table-heading .betted {
  height: 100%;
  align-content: center;
  flex-grow: 1;
  flex-basis: 17.8%;
  flex-shrink: 2;
  text-align: center;
}
.my_table .my_table_body .my_table-heading .drop {
  height: 100%;
  align-content: center;
  flex-grow: 1;
  flex-basis: 37.8%;
  flex-shrink: 5;
}
.my_table .my_table_body .my_table-heading .drop p {
  margin-left: 1rem;
}

.my_table .my_table_body .my_table-heading div p {
  font-size: 14px;
  color: #b5b5b5;
}

.my_table .my_table_body .my_table-heading .probability p {
  padding: 0.7rem;
}

/* my_table Body Styles */
.my_table .my_table_body {
  background: #ffffff;
  border-radius: 0 0 10px 10px;
}

.my_table .my_table_body .my_table-body .my_row {
  height: 95px;
  display: flex;
  align-items: center;
  border-top: 1px solid #e1e1e1;
}

.my_table .my_table_body .my_table-body .my_row .my_col-1 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  flex-basis: 7.1%;
  flex-shrink: 2;
}

.my_table .my_table_body .my_table-body .my_row .my_col-1 h4 {
  color: #000000;
  opacity: 0.8;
  font-weight: 500;
}

.my_table .my_table_body .my_table-body .my_row .my_col-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-grow: 1;
  flex-basis: 29.5%;
  flex-shrink: 4;
}

.my_table .my_table_body .my_table-body .my_row .my_col-2 .list {
  display: flex;
  margin: 0.3rem 0;
}

.my_table .my_table_body .my_table-body .my_row .my_col-2 .list img {
  width: 20px;
  height: 20px;
  border-radius: 50px;
}

.my_table .my_table_body .my_table-body .my_row .my_col-2 .list p {
  margin-left: 0.7rem;
  font-weight: 500;
  color: #000000;
  opacity: 0.8;
}

.my_table .my_table_body .my_table-body .my_row .my_col-3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-grow: 1;
  flex-basis: 15.5%;
  flex-shrink: 3;
}

.my_table .my_table_body .my_table-body .my_row .my_col-3 p {
  font-weight: 500;
  color: #000000;
  opacity: 0.8;
}

.my_table .my_table_body .my_table-body .my_row .my_col-betted {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-grow: 1;
  flex-basis: 17.8%;
  flex-shrink: 2;
}
.my_table .my_table_body .my_table-body .my_row .my_col-betted p {
  font-weight: 500;
  color: #000000;
  opacity: 0.8;
}

.my_table .my_table_body .my_table-body .my_row .my_col-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
  flex-grow: 1;
  flex-basis: 12%;
  flex-shrink: 1;
}

.my_table .my_table_body .my_table-body .my_row .my_col-4 .circle {
  width: 45px;
  height: 45px;
  background-color: #009864;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.my_table .my_table_body .my_table-body .my_row .my_col-4 .circle .indise-circle {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.my_table .my_table_body .my_table-body .my_row .my_col-4 .circle .indise-circle p {
  font-size: 18px;
  font-weight: 500;
  color: #009864;
}

.my_table .my_table_body .my_table-body .my_row .my_col-5 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 1rem !important;
  flex-grow: 1;
  flex-basis: 29.8%;
  flex-shrink: 4;
}

.my_table .my_table_body .my_table-body .my_row .my_col-5 p {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  opacity: 0.8;
}

.my_table .my_table_body .my_table-body .my_row .my_col-drop {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-grow: 1;
  flex-basis: 37.8%;
  flex-shrink: 5;
}
.my_table .my_table_body .my_table-body .my_row .my_col-drop p {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  opacity: 0.8;
}

.my_table .my_table_body .my_table-body .my_row .my_col {
  border-left: 1px solid #e1e1e1;
  height: 100%;
  padding: 1.5% 1%;
}

.my_table .my_table_body .my_table-body .my_row .my_col:first-child {
  border-left: none;
}

/* Mobile Styles */
.hamburger_country_icon, .hamburger_nav_item {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  display: none;
}

.hamburger_country_icon img, .hamburger_nav_item img {
  width: 18px;
}

.footer {
  background-color: #221f1f;
}

.footer .top_part {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0 1rem;
  border-bottom: 1px solid #898b8d;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-image: linear-gradient(94deg, #2a2a2a, #898b8d, #2a2a2a);
  border-image-slice: 1;
}

.footer .top_part .footer_center .my_column p a {
  font-weight: 500;
  color: #ccc;
  font-size: 15px;
}

.footer .top_part .footer_center .my_column p {
  color: #ccc;
  margin: 1rem 0;
  font-size: 14px;
  color: #898b8d;
  /* font-weight: 500; */
  border-radius: 2px;
  font-size: 16px;
  /* text-align: center; */
  line-height: 26px;
}

.footer .top_part .footer_center .my_column h1 {
  font-weight: 500;
  color: #ccc;
  font-size: 16px;
}

.footer .top_part .footer_center .my_column ul {
  list-style: none;
  margin: 0.5rem 0;
}

.footer .top_part .footer_center .my_column ul li::before {
  content: "•";
  color: #f6bf0b;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  /* margin-left: -1em; */
}

.footer .top_part .footer_center .my_column ul li a {
  color: #898b8d;
  border-radius: 2px;
  font-size: 16px;
  /* line-height: 26px; */
  line-height: 16px;
  margin: 0.5rem 0;
  display: inline-block;
  transition: 0.3s;
}

.footer .top_part .footer_center .my_column ul li a:hover {
  color: #ccc;
}

.footer .top_part .footer_center .my_column:first-child p:first-child {
  margin-top: 0;
}

.get_app_buttons {
  margin: 1rem 0;
}

.get_app_buttons a {
  min-width: 130px;
  height: 40px;
  border-radius: 50px;
  border: 1px solid #b8b8b8;
  margin: 1rem 0;
  padding: 0 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: 0.3s;
}

.get_app_buttons a:hover {
  border-top-color: #ef476f;
  box-shadow: 0 0 4px 0 #ef476f;
  animation: animatedBorder 1s ease-in infinite;
}

@keyframes animatedBorder {
  0% {
    border-top-color: #ef476f;
    box-shadow: 0 0 4px 0 #ef476f;
    border-bottom-color: #ffd166;
    border-left-color: #ef476f;
    border-right-color: #ffd166;
  }
  30% {
    border-top-color: #ffd166;
    box-shadow: 0 0 4px 0 #ffd166;
    border-bottom-color: #ef476f;
    border-right-color: #ef476f;
    border-left-color: #ffd166;
  }
  60% {
    border-top-color: #06d6a0;
    box-shadow: 0 0 4px 0 #06d6a0;
    border-left-color: #390099;
    border-bottom-color: #390099;
    border-right-color: #06d6a0;
  }
  90% {
    border-top-color: #390099;
    box-shadow: 0 0 4px 0 #390099;
    border-bottom-color: #06d6a0;
    border-right-color: #390099;
    border-left-color: #06d6a0;
  }
  100% {
    border-top-color: #ef476f;
    box-shadow: 0 0 4px 0 #ef476f;
    border-bottom-color: #ffd166;
    border-left-color: #ef476f;
    border-right-color: #ffd166;
  }
}
.get_app_buttons a img {
  width: 18px;
  margin-right: 4px;
  /* width: 23px; */
  /* margin-right: 7px; */
}

.get_app_buttons a .right_side p {
  margin: 0 !important;
  font-size: 8px !important;
  font-weight: 400 !important;
  line-height: 14px !important;
  color: #b8b8b8 !important;
}

.get_app_buttons a .right_side p:last-child {
  font-size: 15px !important;
  font-weight: 500 !important;
}

.drop_down {
  position: relative;
  display: inline-block;
  width: 130px;
}

.drop_down::before {
  content: url(../../img/angle-down-solid.svg);
  position: absolute;
  top: 56%;
  right: 18px;
  transform: translateY(-50%);
  pointer-events: none;
}

.drop_down select {
  width: 130px;
  height: 40px;
  display: block;
  border-radius: 50px;
  outline: none;
  padding: 0 1rem;
  font-size: 15px;
  font-weight: 500;
  font-family: "Nunito", sans-serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  margin: 1rem 0;
  background: transparent;
  border: 1px solid #b8b8b8;
  color: #898b8d;
}

.GMT_Time {
  margin-top: 2rem;
}

.bottom_part {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom_part .center p {
  color: #898b8d;
  font-size: 16px;
}

.footer_bottom_part {
  justify-content: center;
  align-items: center;
}

/* Media Queries */
@media screen and (max-width: 1100px) {
  .desktop_nav_item {
    display: none;
  }
}
@media screen and (min-width: 1517px) {
  .main_section .center_main .countries {
    height: 550px;
  }
  .main_section .center_main .countries .country_list {
    height: 377px;
  }
  .main_section .center_main .topLeagues {
    height: 550px;
  }
  .main_section .center_main .topLeagues .country_list {
    height: 377px;
  }
}
@media screen and (min-width: 1707px) {
  .main_section .center_main .countries {
    height: 650px;
  }
  .main_section .center_main .countries .country_list {
    height: 475px;
  }
  .main_section .center_main .topLeagues {
    height: 650px;
  }
  .main_section .center_main .topLeagues .country_list {
    height: 475px;
  }
}
@media screen and (min-width: 1081px) {
  .header .center .desktop_nav_item {
    visibility: visible !important;
    opacity: 1 !important;
  }
}
@media screen and (min-width: 1821px) {
  .main_section .center_main .countries {
    height: 733px;
  }
  .main_section .center_main .countries .country_list {
    height: 559px;
  }
  .main_section .center_main .topLeagues {
    height: 733px;
  }
  .main_section .center_main .topLeagues .country_list {
    height: 559px;
  }
  .header .center .desktop_nav_item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header .center .desktop_nav_item li {
    margin: 0 1rem;
  }
}
@media screen and (max-width: 1517px) {
  .cards_center .text p br {
    display: none;
  }
}
@media screen and (min-width: 846px) {
  .dropsControll {
    width: 150px !important;
  }
}
@media screen and (max-width: 1366px) {
  .cards_center .allCards .my_card {
    width: 360px;
  }
  .cards_center .allCards .my_card .card_left_part {
    /* min-height: 186px; */
    /* min-height: 242px; */
    min-height: 204px;
  }
}
@media screen and (max-width: 1180px) {
  .cards_center .allCards .my_card {
    width: 465px;
  }
  .cards_center .allCards {
    justify-content: center;
  }
}
@media screen and (max-width: 1175px) {
  .drop-down {
    margin: 0.2rem 0.2rem;
  }
}
@media screen and (min-width: 846px) and (max-width: 1420px) {
  .my_col-3 {
    display: block !important;
  }
  .my_col-betted {
    display: block !important;
  }
}
.mobileTopLeague {
  display: none !important;
}

@media screen and (max-width: 1202px) {
  .header .center .my_navbar {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 110px;
    left: 0;
    background-color: rgba(77, 77, 77, 0.6588235294);
    z-index: 11;
    backdrop-filter: blur(2px);
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  .header .center .desktop_nav_item {
    position: absolute;
    top: 20px;
    left: 5%;
    background: #fff;
    width: 90%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    padding: 25px 30px;
  }
  .header .center .desktop_nav_item li a {
    padding: 0.4rem;
  }
  .hamburger_country_icon, .hamburger_nav_item {
    display: flex;
  }
  .center_hamburger {
    align-items: center;
    justify-content: space-between;
  }
  .index_center_hamburger {
    justify-content: flex-end;
  }
  .main_section .center_main .country {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 57px;
    left: 0;
    background-color: rgba(77, 77, 77, 0.6588235294);
    z-index: 11;
    backdrop-filter: blur(2px);
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  .highlights_top {
    display: block !important;
  }
  .main_section .center_main .countries {
    position: absolute;
    height: calc(100% - 57px);
    box-shadow: none;
    border-radius: 0;
    transition: 0.3s;
    transform: translateX(-400px);
    overflow-y: auto;
  }
  .main_section .center_main .countries .country_list {
    overflow-y: hidden;
    height: max-content;
  }
  .main_section .center_main .topLeagues {
    position: absolute;
    height: calc(100% - 57px);
    box-shadow: none;
    border-radius: 0;
    transition: 0.3s;
    transform: translateX(-400px);
  }
  .main_section .center_main .topLeagues .country_list {
    height: calc(100% - 175px);
  }
  .main_section .main_content .main_right_side_content {
    width: 100%;
  }
  .main_section .center_main .highlights {
    display: none;
  }
  .main_section .center_main .countries .top_part .closeIcon {
    display: block;
  }
  .main_section .center_main .topLeagues .top_part .closeIcon {
    display: block;
  }
  .main_section .center_main .topLeagues {
    display: none;
  }
  .mobileTopLeague {
    display: flex !important;
  }
}
@media screen and (max-width: 991px) {
  .heroSection {
    padding-top: 4rem !important;
  }
}
@media screen and (max-width: 900px) {
  .my_column {
    margin: 1rem;
  }
}
@media screen and (max-width: 820px) {
  .main_section .center_main .right_side .drop_downs {
    flex-wrap: wrap;
  }
  .drop-down, #date_picker {
    margin: 0.3rem 0.2rem;
  }
}
@media screen and (max-width: 535px) {
  .topOption {
    flex-direction: column !important;
  }
  .optionTop {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 924px) {
  /* .main_section .center_main .right_side .buttons button {
    font-size: 14px;
  } */
  .my_table .my_table_body .my_table-heading {
    display: none;
  }
  .my_table .my_table_body .my_table-body .my_row {
    flex-direction: column;
    height: auto !important;
    padding: 0.7rem 1.2rem;
    border-left: none;
  }
  .my_table .my_table_body .my_table-body .my_row:nth-child(even) {
    background-color: #fafafa;
  }
  .my_table .my_table_body .my_table-body .my_row .my_col {
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 0rem 1rem 7rem !important;
    border: none;
    border-bottom: 1px solid #e1e1e1;
    position: relative;
  }
  .my_table .my_table_body .my_table-body .my_row .mostBettedMob {
    padding: 1rem 0rem 1rem 11rem !important;
  }
  .my_table .my_table_body .my_table-body .my_row .my_col-2 {
    justify-content: center;
    align-items: flex-end;
  }
  .my_table .my_table_body .my_table-body .my_row .my_col::before {
    content: attr(data-title);
    position: absolute;
    left: 0;
    font-size: 16px;
    color: #b5b5b5;
  }
  .my_table .my_table_body .my_table-body .my_row .my_col:last-child {
    border-bottom: none;
  }
  .main_section .center_main .right_side {
    justify-content: center;
  }
  .main_content {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .main_section .center_main .right_side .drop_downs {
    flex-wrap: wrap;
  }
  .drop-down select {
    font-size: 14px;
  }
  .drop-down:first-child {
    width: 100%;
  }
  .drop-down:first-child select {
    width: 100%;
  }
  .allCards {
    display: none;
  }
  .drop-down:nth-child(2) {
    width: 100% !important;
  }
  .drop-down:nth-child(2) select {
    width: 100% !important;
  }
  .drop-down:nth-child(3) {
    width: 100% !important;
  }
  .drop-down:nth-child(3) select {
    width: 100% !important;
  }
  .drop_down_left_side {
    width: 100% !important;
  }
  .drop_down_right_side {
    width: 100% !important;
  }
  .drop_down_right_side .pickerdate {
    width: 100% !important;
  }
  .drop_down_right_side .drop-down:first-child {
    width: 100% !important;
  }
  .drop_down_right_side .drop-down:first-child select {
    width: 100% !important;
  }
  .onOffFilterSwitch {
    width: 100% !important;
    margin: 0.3rem 0.2rem;
  }
  #date_picker {
    width: 100%;
    font-size: 14px;
    margin: 0.3rem 0.2rem;
  }
  .drop-down {
    margin: 0.3rem 0.2rem;
  }
  .my_table .my_table_main_heading h1, .my_table .my_table_body .my_table-body .my_row .my_col-1 h4, .my_table .my_table_body .my_table-body .my_row .my_col p {
    font-size: 16px;
  }
  .my_table .my_table_body .my_table-body .my_row .my_col-5 p {
    font-size: 14px;
  }
  .my_table .my_table_main_heading {
    align-items: flex-start;
  }
  .my_table .my_table_body .my_table-body .my_row .my_col-4 .circle {
    width: 40px;
    height: 40px;
  }
  .my_table .my_table_body .my_table-body .my_row .my_col-4 .circle .indise-circle {
    width: 30px;
    height: 30px;
  }
  .my_table .my_table_body .my_table-body .my_row .my_col-4 .circle .indise-circle p {
    font-size: 14px;
  }
  .drop_down_right_side {
    justify-content: flex-start;
    margin: 0.3rem 0.2rem;
  }
  .main_section .center_main .countries .top_part .search_area input {
    width: 85%;
  }
  .main_section .center_main .topLeagues .top_part .search_area input {
    width: 85%;
  }
  .main_section {
    margin-top: 0.8rem;
  }
  .main_section .center_main .countries {
    width: 300px;
  }
  .main_section .center_main .topLeagues {
    width: 300px;
  }
  .teamDiv {
    padding: 0px 0px 2rem 0rem !important;
  }
  .chartDiv {
    padding: 0 0 2rem 0 !important;
  }
}
@media screen and (max-width: 480px) {
  .mostBetMobile {
    margin-top: 20% !important;
  }
  .my_table .my_table_body .my_table-body .my_row .mostBettedMob {
    padding: 1rem 0rem 1rem 1rem !important;
  }
}
@media screen and (max-width: 500px) {
  .cards_center .allCards .my_card {
    width: 100%;
  }
  .footer .top_part {
    padding: 1rem 0;
  }
  .footer_center {
    flex-direction: column;
  }
  .footer .top_part .footer_center .my_column p br {
    display: none;
  }
  .my_column {
    margin: 1rem 0;
  }
  .main_section .center_main .right_side .buttons ul li a {
    margin-left: 0.5rem;
  }
  .get_app_buttons {
    display: flex;
  }
  .get_app_buttons a:last-child {
    margin: 1rem 0 0 1rem;
  }
  .GMT_Time .drop_down {
    width: 100%;
  }
  .GMT_Time .drop_down select {
    width: 100%;
  }
}
@media screen and (max-width: 459px) {
  .cards_center .allCards .my_card {
    flex-direction: column;
  }
  .cards_center .allCards .my_card .card_left_part, .cards_center .allCards .my_card .card_right_part {
    width: 100%;
    padding: 0.7rem 1.2rem 1.2rem;
  }
  .cards_center h1 {
    text-align: center;
    font-size: 24px;
  }
  .cards_center .allCards .my_card .card_right_part .detail p {
    font-size: 14px;
  }
  .cards_center .allCards .my_card .card_right_part .detail p:last-child {
    padding-bottom: 0;
  }
  .top_header .top_header_center .right_side .user p {
    display: none;
  }
    .top_header .top_header_center {
        padding-left: 0.4rem;
        padding-bottom: 0.3rem;
        padding-right: 0.4rem;
    }
}
@media screen and (max-width: 337px) {
  .top_header .top_header_center {
    padding: 0 0 1.1rem 0 !important;
    flex-direction: column;
  }
  .header .center .my_navbar {
    top: 142px;
  }
  .main_section .center_main .country {
    top: 82px;
  }
  .center {
    width: 97%;
  }
  .get_app_buttons {
    flex-direction: column;
  }
  .get_app_buttons a:last-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 330px) {
  .main_section .center_main .countries {
    width: 90%;
  }
  .main_section .center_main .topLeagues {
    width: 90%;
  }
}
@media screen and (max-width: 280px) {
  .center {
    padding: 1rem 0.5rem;
  }
}
.validation-summary-errors {
  color: #dc3545 !important;
}

.bg-color-premium {
  background: linear-gradient(to right, #c5a703, #FFD700);
}

.bg-color-sportstrading {
  background: linear-gradient(to right, #99e5aa, #0abd3a);
}

.bg-color-prematch {
  background: linear-gradient(to right, #0457a1, #92c3ff);
}

.bg-color-inplay {
  background: linear-gradient(to right, #12cb3a, #0bf64a);
}

.bg-color-dropping {
  background: linear-gradient(to right, #f11717, #ff815c);
}

.color-prematch {
  color: #0270d1 !important;
}

.color-inplay {
  color: #12cb3a !important;
}

.color-dropping {
  color: #f11717 !important;
}

.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
  top: 10px !important;
}

.bootstrap-select.show-tick .dropdown-menu li a span.text {
  margin-top: 5px;
}

.bronze-affiliate-color {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text !important;
  background: linear-gradient(to right, #CD7F32, #8C6239);
}

.silver-affiliate-color {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text !important;
  background: linear-gradient(to right, #C0C0C0, #A8A9AD);
}

.gold-affiliate-color {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text !important;
  background: linear-gradient(to right, #FFD700, #FFB700);
}

.platinum-affiliate-color {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text !important;
  background: linear-gradient(to right, #996600, #ECB437);
}

.resultDiv {
  display: flex;
  flex-direction: column;
}

.highlighted_sportstrading_rule {
  background-color: palegreen;
}

.onOffFilterSwitch {
  border-radius: 15px;
  padding: 0.25rem 0.2rem 0.42rem 0.2rem;
  display: inline-block;
  background-size: cover;
  font-size: 15px;
  background-color: white;
  font-weight: 500;
  color: #353535;
}

#hp-switch.switch:checked::after {
  background: #12cb3a !important;
}

/* Register Bettador - Persona Image Styles */
.register-form-container {
  position: relative;
  width: 100%;
}



/* Bettador Brand Colors and CTA */
.btn-bettador-primary {
  background-color: #B4DB27;
  color: #0B1F51;
  border: none;
  font-weight: 600;
  padding: 10px 24px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-bettador-primary:hover {
  background-color: #a0c921;
  color: #0B1F51;
  box-shadow: 0 4px 12px rgba(180, 219, 39, 0.3);
  transform: translateY(-2px);
}

.btn-bettador-primary:active,
.btn-bettador-primary:focus {
  background-color: #a0c921;
  color: #0B1F51;
  outline: none;
  box-shadow: 0 2px 8px rgba(180, 219, 39, 0.2);
}

/* Legal Text */
.legal-text {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  border-top: 1px solid #95B3FF;
  padding-top: 15px;
}

/* Bettador Logo */
.logo-bettador {
  max-width: 200px;
  height: auto;
  display: inline-block;
}

@media (max-width: 767px) {
  .logo-bettador {
    max-width: 150px;
  }
}
