@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

:root {
  --yellow-: rgb(239, 187, 1);
  --green-: rgb(4, 117, 13);
  --blue-: rgb(32, 126, 240);
  --black-: rgb(20, 20, 20);
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: #1e1e1e;
}

::-webkit-scrollbar-thumb {
  background: var(--yellow-);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(204, 160, 0);
}

html body {
  width: 100%;
  max-width: 1600px;
  margin: auto;
  background-image: url("../img/bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  justify-content: center;
}
html body > .website_warn {
  width: 100%;
  height: 40px;
  background-color: var(--yellow-);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
}
html body > .website_warn > p {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
html body > .front_menu {
  width: 100%;
  height: 60px;
  -webkit-backdrop-filter: blur(3px) brightness(0.5);
          backdrop-filter: blur(3px) brightness(0.5);
  position: sticky;
  left: 0;
  top: 0px;
  display: flex;
  z-index: 100000000000000000;
  justify-content: space-between;
  border-bottom: 2px solid var(--yellow-);
}
html body > .front_menu > .row_content {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 40px;
}
html body > .front_menu > .row_content:nth-child(2) {
  justify-content: flex-end;
  gap: 10px;
}
html body > .front_menu > .row_content:nth-child(2) > a {
  padding: 15px;
  background-color: var(--green-);
  filter: drop-shadow(0px 0px 15px var(--green-));
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  color: white;
  line-height: 0;
}
html body > .front_menu > .row_content:nth-child(2) > a:nth-child(1) {
  padding: 10px;
  display: flex;
  align-items: center;
}
html body > .front_menu > .row_content:nth-child(2) > a:nth-child(1) > i {
  padding: 0;
  padding-right: 3px;
  line-height: 1;
}
html body > .front_menu > .row_content:nth-child(2) > a:nth-child(2) {
  background-color: var(--yellow-);
  color: black;
  padding: 10px;
}
html body > .front_menu > .row_content:nth-child(2) > a:nth-child(2) > i {
  padding: 0;
  padding-right: 3px;
  line-height: 1;
}
html body > .front_menu > .row_content:nth-child(2) > a:nth-child(3) {
  background-color: white;
  color: black;
  font-weight: 500;
  border-radius: 50px;
  padding: 18px 13px;
  filter: drop-shadow(0px 0px 15px white);
}
html body > .front_menu > .row_content:nth-child(2) > a:nth-child(4) {
  background-color: var(--yellow-);
  filter: drop-shadow(0px 0px 15px var(--yellow-));
  color: black;
  border-radius: 50px;
  padding: 18px 13px;
}
html body > .front_menu > .row_content:nth-child(2) > a[type=balance] {
  border-radius: 4px;
  padding: 10px;
  text-align: left;
}
html body > .front_menu > .row_content > .timeline {
  display: inline-block;
  color: var(--yellow-);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  padding-left: 10px;
  width: 75px;
}
html body > .front_menu > .row_content:nth-child(1) > .logo_content {
  display: flex;
  align-items: center;
}
html body > .front_menu > .row_content:nth-child(1) > .logo_content > img {
  max-width: 130px;
  margin: auto;
}
html body > .front_menu > .row_content:nth-child(1) > .sports_content {
  margin-left: 20px;
}
html body > .front_menu > .row_content:nth-child(1) > .sports_content > a {
  padding: 8px;
  border-radius: 10px;
  background-color: var(--yellow-);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 13px;
  filter: drop-shadow(0px 0px 15px var(--yellow-));
  color: black;
  display: flex;
  align-items: center;
}
html body > .front_menu > .row_content:nth-child(1) > .sports_content > a > i {
  margin: auto 4px;
}
html body > .front_menu > .row_content > #profile {
  color: black;
  border-radius: 3px !important;
  padding: 10px 8px !important;
  background-color: var(--yellow-);
}
html body > .front_menu > .row_content > #profile > i {
  line-height: 1;
}
html body > .sports_betting {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  gap: 8px;
  box-sizing: border-box;
}
html body > .sports_betting > .sports_categories {
  width: 300px;
  flex-shrink: 0;
  height: auto;
  min-height: 300px;
  background-color: var(--black-);
  border-radius: 6px;
}
html body > .sports_betting > .sports_categories > .search_box {
  width: 100%;
}
html body > .sports_betting > .sports_categories > .search_box > label {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 10px;
}
html body > .sports_betting > .sports_categories > .search_box > label > i {
  width: 35px;
  height: 35px;
  padding: 3px 8px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 10px;
  cursor: pointer;
  font-size: 14px;
  border-top: 1px solid rgb(47, 47, 47);
  border-bottom: 1px solid rgb(47, 47, 47);
  border-right: 1px solid rgb(47, 47, 47);
  color: rgba(255, 255, 255, 0.3);
}
html body > .sports_betting > .sports_categories > .search_box > label > input {
  margin: auto;
  width: 100%;
  height: 35px;
  padding: 3px 8px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-left: 1px solid rgb(47, 47, 47);
  border-top: 1px solid rgb(47, 47, 47);
  border-bottom: 1px solid rgb(47, 47, 47);
  border-right: 0;
  background-color: rgb(21, 21, 21);
  color: white;
  outline: none;
}
html body > .sports_betting > .sports_categories > .search_box > label > input::-moz-placeholder {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 500;
}
html body > .sports_betting > .sports_categories > .search_box > label > input::placeholder {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 500;
}
html body > .sports_betting > .sports_categories > .down_categories {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  padding: 0 10px;
}
html body > .sports_betting > .sports_categories > .down_categories > .match_btn {
  flex: 1 0 100px;
  padding: 8px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}
html body > .sports_betting > .sports_categories > .down_categories > .match_btn:nth-child(1) {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}
html body > .sports_betting > .sports_categories > .down_categories > .match_btn:nth-child(2) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background-color: var(--yellow-);
  color: black;
  cursor: pointer;
  font-weight: 500;
}
html body > .sports_betting > .sports_categories > .all_categories {
  padding: 10px;
}
html body > .sports_betting > .sports_categories > .all_categories > .categories_content {
  width: 100%;
  height: 35px;
  display: flex;
  align-items: center;
  margin-bottom: 2px;
  cursor: pointer;
}
html body > .sports_betting > .sports_categories > .all_categories > .categories_content > .cat_content {
  width: 100%;
  height: 100%;
  background-color: #242424;
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding-left: 6px;
  transition: 0.3s linear;
}
html body > .sports_betting > .sports_categories > .all_categories > .categories_content > .cat_content:hover {
  filter: brightness(1.2);
}
html body > .sports_betting > .sports_categories > .all_categories > .categories_content > .cat_content > p > span {
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  padding-left: 6px;
}
html body > .sports_betting > .sports_categories > .all_categories > .categories_content > .cat_content > p > i {
  font-size: 15px;
  padding: 0 6px;
}
html body > .sports_betting > .sports_categories > .all_categories > .categories_content:nth-child(1) > .cat_content > p > i {
  color: #0097b7;
}
html body > .sports_betting > .sports_categories > .all_categories > .categories_content:nth-child(2) > .cat_content > p > i {
  color: #583de3;
}
html body > .sports_betting > .sports_categories > .all_categories > .categories_content:nth-child(3) > .cat_content > p > i {
  color: #2275e9;
}
html body > .sports_betting > .sports_categories > .all_categories > .categories_content:nth-child(4) > .cat_content > p > i {
  color: #109121 !important;
}
html body > .sports_betting > .sports_match {
  flex: 1;
  max-width: calc(100% - 320px);
  height: auto;
  background-color: var(--black-);
  padding: 5px;
  border-radius: 6px;
}
html body > .sports_betting > .sports_match > .match {
  padding: 5px 10px;
  margin: 3px 0;
  background-color: rgb(34, 34, 34);
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s linear;
}
html body > .sports_betting > .sports_match > .match:hover {
  filter: brightness(1.2);
}
html body > .sports_betting > .sports_match > .match .match_teams {
  display: grid;
  grid-template-columns: 1fr 3fr 2fr;
  align-items: center;
}
html body > .sports_betting > .sports_match > .match .match_teams .times {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
html body > .sports_betting > .sports_match > .match .match_teams .times .time {
  font-size: 11px;
  font-family: "Poppins", sans-serif;
  color: #bbb;
  line-height: 1.1;
}
html body > .sports_betting > .sports_match > .match .match_teams .teams_section {
  display: grid;
  grid-template-columns: 25px auto;
  align-items: center;
  gap: 10px;
}
html body > .sports_betting > .sports_match > .match .match_teams .teams_section .content_i {
  display: flex;
  align-items: center;
  justify-content: center;
}
html body > .sports_betting > .sports_match > .match .match_teams .teams_section .content_i i {
  font-size: 22px;
  color: white;
}
html body > .sports_betting > .sports_match > .match .match_teams .teams_section .teams {
  font-size: 13px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: white;
  line-height: 1.2;
}
html body > .sports_betting > .sports_match > .match .match_teams .teams_section .teams > div:nth-child(2) {
  color: var(--yellow-);
}
html body > .sports_betting > .sports_match > .match .match_teams .odds-row {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 5px 0;
}
html body > .sports_betting > .sports_match > .match .match_teams .odds-row .odd-btn {
  width: 60px;
  height: 30px;
  border-radius: 3px;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: white;
  background: #3a3a3a;
  cursor: pointer;
  margin: auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s linear;
}
html body > .sports_betting > .sports_match > .match .match_teams .odds-row .odd-btn:hover {
  background-color: var(--yellow-);
  color: black;
}
html body > .sports_betting > .sports_match > .match .match_teams .odds-row .odd-empty {
  background: #2a2a2a;
  border: 1px solid #444;
  color: #777;
}
html body > .sports_betting > .sports_match > .match .match_teams .odds-row > span {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
html body > .sports_betting > .sports_match > .match .match_teams .odds-row > span > i {
  transform: rotate(-90deg);
}
html body > .sports_betting > .sports_match > .match_odds_details {
  width: 100%;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 42px;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  text-transform: uppercase;
  font-size: 12px;
  grid-template-columns: 1fr 3fr 2fr;
}
html body > .sports_betting > .sports_match > .match_odds_details > div {
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  line-height: 1;
  margin: auto 0;
  top: 2px;
}
html body > .sports_betting > .sports_match > .match_odds_details > div:nth-child(1) {
  display: grid;
  grid-template-columns: 39px auto;
}
html body > .sports_betting > .sports_match > .match_odds_details > div:nth-child(2) {
  display: grid;
  grid-template-columns: 23px auto;
}
html body > .sports_betting > .sports_match > .match_odds_details > div:nth-child(3) {
  display: grid;
  grid-template-columns: 52px auto;
}
html body > .sports_betting > .match_odds {
  width: 300px;
  flex-shrink: 0;
  height: auto;
  min-height: 300px;
  background-color: var(--black-);
  border-radius: 6px;
}
html body > .sports_betting > .match_odds .game_detail {
  width: 100%;
  height: 140px;
  background-image: url("../img/soccer.png");
  background-size: cover;
  background-position: center;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  position: relative;
  overflow: hidden;
}
html body > .sports_betting > .match_odds .game_detail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  pointer-events: none;
}
html body > .sports_betting > .match_odds .game_detail > .game_match_details {
  width: 100%;
  height: auto;
  padding: 10px;
}
html body > .sports_betting > .match_odds .game_detail > .game_match_details > .game_match_details_down {
  display: flex;
  gap: 6px;
  align-items: center;
}
html body > .sports_betting > .match_odds .game_detail > .game_match_details > .game_match_details_down > img {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 10;
}
html body > .sports_betting > .match_odds .game_detail > .game_match_details > .game_match_details_down > p {
  color: white;
  position: relative;
  z-index: 10;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 11px;
}
html body > .sports_betting > .match_odds .game_detail > .game_match_details > p {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 10;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  margin-top: 5px;
}
html body > .sports_betting > .match_odds .game_detail > .game_match_details_matching {
  width: 100%;
  height: auto;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
}
html body > .sports_betting > .match_odds .game_detail > .game_match_details_matching > .game_match_details_teams > h3 {
  width: 100%;
  color: white;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 2px 0;
}
html body > .sports_betting > .match_odds > .match_detail_odds {
  padding: 6px;
}
html body > .sports_betting > .match_odds > .match_detail_odds > .game_match_details > .match_odds_details {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
}
html body > .sports_betting > .match_odds > .match_detail_odds > .game_match_details > .match_odds_details > i {
  color: white;
  font-size: 12px;
}
html body > .sports_betting > .match_odds > .match_detail_odds > .game_match_details > .match_odds_details > p {
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-transform: capitalize;
}
html body > .sports_betting > .match_odds > .match_detail_odds > .game_match_details > .match_odds_all {
  width: 100%;
  height: auto;
}
html body > .sports_betting > .match_odds > .match_detail_odds > .game_match_details > .match_odds_all > .match_odds_ids {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 2px;
}
html body > .sports_betting > .match_odds > .match_detail_odds > .game_match_details > .match_odds_all > .match_odds_ids > div {
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 9px;
  text-align: center;
  background-color: rgba(239, 187, 1, 0.2);
  border-radius: 4px;
  padding: 8px 0;
}
html body > .sports_betting > .match_odds > .match_detail_odds > .game_match_details > .match_odds_all > .match_odds_id_contents {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  text-align: center;
}
html body > .sports_betting > .match_odds > .match_detail_odds > .game_match_details > .match_odds_all > .match_odds_id_contents > div {
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 11px;
  text-align: center;
  background-color: rgb(58, 58, 58);
  border-radius: 4px;
  padding: 8px 0;
  transition: 0.3s linear;
  cursor: pointer;
}
html body > .sports_betting > .match_odds > .match_detail_odds > .game_match_details > .match_odds_all > .match_odds_id_contents > div:hover {
  background-color: rgba(239, 187, 1, 0.8);
}
html body > .sports_betting > .match_odds > .match_detail_odds > .game_match_details > .match_odds_all:nth-child(4) > .match_odds_ids,
html body > .sports_betting > .match_odds > .match_detail_odds > .game_match_details > .match_odds_all:nth-child(6) > .match_odds_ids {
  grid-template-columns: repeat(2, 1fr) !important;
}
html body > .sports_betting > .match_odds > .match_detail_odds > .game_match_details > .match_odds_all:nth-child(4) > .match_odds_id_contents,
html body > .sports_betting > .match_odds > .match_detail_odds > .game_match_details > .match_odds_all:nth-child(6) > .match_odds_id_contents {
  grid-template-columns: repeat(2, 1fr) !important;
}
html body > .sports_betting > .sports_coupon {
  width: 300px;
  flex-shrink: 0;
  height: auto;
  min-height: 300px;
  border-radius: 6px;
  margin: 0 !important;
}

.odd-btn.selected-odd {
  background: var(--yellow-) !important;
  color: #000 !important;
}

.selected-odd {
  background: var(--yellow-);
  color: black !important;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.sports_coupon {
  padding: 15px;
  border-radius: 10px;
  width: 100%;
  margin-top: 20px;
  color: #fff;
  font-family: Arial;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.sports_coupon h3 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 13px;
  background-color: rgba(239, 187, 1, 0.4);
  padding: 6px 0;
  border-radius: 4px;
  -webkit-backdrop-filter: brightness(0.4);
          backdrop-filter: brightness(0.4);
  border-bottom: 2px solid var(--yellow-);
}

.coupon_list {
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 5px;
}

.coupon_item {
  padding: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.coupon_item p {
  font-size: 14px;
}

.coupon_item span {
  font-weight: bold;
  display: inline-block;
  margin-top: 3px;
  color: gold;
}

.remove_coupon {
  float: right;
  background: #ff4a4a;
  border: none;
  padding: 3px 6px;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.coupon_bottom {
  margin-top: 20px;
}

.bet_label {
  display: grid;
  margin-top: 10px;
}

#coupon_bet_amount {
  margin-top: 5px;
  padding: 5px;
  border-radius: 6px;
  border: none;
}

#play_coupon {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  background: linear-gradient(135deg, gold, #be8e00);
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.coupon_item {
  background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.2);
  position: relative;
  font-family: "Poppins", sans-serif;
}

.coupon_item_title {
  font-size: 16px;
  font-weight: 600;
  color: #ffdd55;
}

.coupon_item_market {
  font-size: 13px;
  color: #d0d0d0;
  margin-top: 2px;
}

.coupon_item_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.coupon_item_odd {
  font-size: 18px;
  font-weight: 700;
  color: #ffd700;
}

.coupon_warning {
  color: #ff4444;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.remove_coupon {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: #ffd700;
  padding: 2px 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.2s;
}

.remove_coupon:hover {
  background: rgba(255, 215, 0, 0.25);
  color: #fff;
  border-color: #ffd700;
}

.coupon_footer {
  background: #161616;
  border: 1px solid rgba(255, 215, 0, 0.25);
  padding: 15px;
  border-radius: 12px;
  margin-top: 10px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.coupon_footer .footer_label {
  font-size: 15px;
  color: #ffdd55;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.coupon_footer .footer_value {
  float: right;
  font-size: 16px;
  font-weight: 700;
  color: #ffd700;
}

.bet_input_field {
  margin-top: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.2s;
}

.bet_input_field::-moz-placeholder {
  color: #b6b6b6;
}

.bet_input_field::placeholder {
  color: #b6b6b6;
}

.bet_input_field:focus {
  border-color: #ffdd55;
  background: rgba(255, 255, 255, 0.1);
}

.footer_sub {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #ddd;
}

.footer_sub_value {
  float: right;
  color: #ffd700;
  font-size: 13px;
  font-weight: 700;
}

.empty_coupon_msg {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  margin-top: 15px;
  font-weight: 500;
  display: none;
}

.match.started {
  opacity: 0.45;
}

.match.started .odd-btn {
  background: #3d3d3d !important;
  color: #a1a1a1 !important;
  border: 1px solid #555 !important;
  cursor: not-allowed !important;
}

.odd-btn.locked {
  pointer-events: none !important;
}

.odd-btn.locked,
.match.started .odd-btn.locked,
.match.started .odd-btn {
  cursor: not-allowed !important;
}

.match_detail_odds.match_ended .odd-btn {
  opacity: 0.45 !important;
  filter: grayscale(60%);
}

.match_detail_odds.match_ended .match_odds_id_contents,
.match_detail_odds.match_ended .match_odds_ids {
  opacity: 0.55 !important;
}

.match_detail_odds.match_ended .odd-btn:hover {
  transform: none !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
}

.register {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.register > .register_content {
  width: 100%;
  max-width: 800px;
  min-height: 400px;
  height: auto;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 6px;
  border-top: 2px solid var(--yellow-);
  border-bottom: 2px solid var(--yellow-);
  margin-top: 100px;
}
.register > .register_content > .reg_content {
  width: auto;
  height: auto;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}
.register > .register_content > .reg_content > img {
  max-width: 150px;
}
.register > .register_content > .reg_content > form {
  width: 100%;
  display: flex;
  justify-content: center;
}
.register > .register_content > .reg_content > form > .reg_content_inputs > input {
  width: 500px;
  display: flex;
  padding: 8px 0;
  border-radius: 4px;
  border: 0;
  outline: none;
  color: white;
  padding-left: 8px;
  background-color: black;
  border: 1px solid var(--yellow-);
  margin: 5px 0;
  font-size: 14px;
}
.register > .register_content > .reg_content > form > .reg_content_inputs > input::-moz-placeholder {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 13px;
  color: white;
  opacity: 0.6;
}
.register > .register_content > .reg_content > form > .reg_content_inputs > input::placeholder {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 13px;
  color: white;
  opacity: 0.6;
}
.register > .register_content > .reg_content > form > .reg_content_inputs > input[type=submit] {
  margin-top: 10px;
  background-color: var(--yellow-);
  color: black;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s linear;
}
.register > .register_content > .reg_content > form > .reg_content_inputs > input[type=submit]:hover {
  filter: brightness(1.1);
}
.register > .register_content > .reg_content > form > .reg_content_inputs > span {
  color: white;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
}

.profile_container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile_container > .profile_row {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.profile_container > .profile_row > .profile_left_menu {
  width: 18%;
  height: 100%;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-right: 1px solid var(--yellow-);
}
.profile_container > .profile_row > .profile_left_menu > ul {
  width: 100%;
  height: auto;
  padding-top: 15px;
}
.profile_container > .profile_row > .profile_left_menu > ul > li {
  width: 100%;
  height: auto;
  padding: 0 15px;
}
.profile_container > .profile_row > .profile_left_menu > ul > li > a {
  width: 100%;
  height: auto;
  background-color: rgb(17, 14, 14);
  display: flex;
  padding: 10px 5px;
  margin: 5px 0;
  border-radius: 2px;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 13px;
  border: 1px solid var(--yellow-);
  transform: 0.3s linear;
  align-items: center;
}
.profile_container > .profile_row > .profile_left_menu > ul > li > a > i {
  display: flex;
  align-items: center;
  color: var(--yellow-);
  margin: 0 7px;
}
.profile_container > .profile_row > .profile_left_menu > ul > li > a:hover {
  background-color: var(--yellow-);
  color: black;
}
.profile_container > .profile_row > .profile_left_menu > ul > li > a:hover > i {
  color: black;
}
.profile_container > .profile_row > .profile_left_menu > ul > span {
  padding-left: 15px;
  color: rgb(255, 255, 255);
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 13px;
  margin: 5px 0;
}
.profile_container > .profile_row > .profile_left_menu > p,
.profile_container > .profile_row > .profile_left_menu > span {
  color: white;
  font-family: "Poppins", sans-serif;
  text-align: center;
  display: flex;
  justify-content: center;
  font-size: 12px;
  align-items: center;
  gap: 3px;
}
.profile_container > .profile_row > .profile_left_menu > p > span,
.profile_container > .profile_row > .profile_left_menu > span > span {
  font-size: 15px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  color: var(--yellow-);
}
.profile_container > .profile_row > .profile_left_menu > span {
  opacity: 0.4;
}
.profile_container > .profile_row > .profile_right_content {
  width: 82%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile_container > .profile_row > .profile_right_content > .profile_inner_content {
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  padding: 20px;
}

.profile_coupon {
  width: 100%;
  height: auto;
}
.profile_coupon > .coupon_text {
  width: 100%;
  height: auto;
}
.profile_coupon > .coupon_text > h1 {
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 23px;
  text-transform: uppercase;
}

.profile_coupon {
  width: 100%;
  color: white;
  font-family: "Poppins", sans-serif;
}

.coupon_title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffd558;
}

.coupon_item {
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(255, 199, 57, 0.35);
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.2s ease;
}

.coupon_item:hover {
  background: rgba(255, 215, 0, 0.07);
  border-color: gold;
}

.coupon_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.coupon_header .left h3 {
  margin: 0;
  font-size: 15px;
  color: #ffd558;
  font-weight: 600;
}

.coupon_date {
  font-size: 11px;
  margin-top: 3px;
  color: #aaa;
}

.coupon_total {
  font-size: 15px;
  font-weight: 700;
  color: gold;
}
.coupon_total > span {
  display: flex;
  font-size: 13px;
}
.coupon_total > span#match_win {
  color: rgb(0, 212, 0);
}
.coupon_total > span#match_loss {
  color: rgb(206, 0, 0);
}
.coupon_total > span#match_waiting {
  color: rgb(128, 128, 128);
}

.coupon_details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  margin-top: 10px;
}

.coupon_details.open {
  max-height: 600px;
}

.coupon_section_title {
  font-size: 13px;
  margin-bottom: 6px;
  color: #ffe18a;
  font-weight: 600;
  border-left: 3px solid gold;
  padding-left: 6px;
}

.coupon_matches {
  max-height: 240px;
  overflow-y: auto;
  padding-right: 6px;
  margin-bottom: 12px;
}

.coupon_matches::-webkit-scrollbar {
  width: 6px;
}

.coupon_matches::-webkit-scrollbar-thumb {
  background: gold;
  border-radius: 10px;
}

.coupon_matches::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.match_row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 7px 10px;
  border-radius: 7px;
  margin-bottom: 6px;
  font-size: 12px;
  align-items: center;
}

.match_teams {
  color: #ddd;
  font-weight: 400;
}

.match_teams span {
  color: #777;
}

.match_pick {
  font-weight: 600;
  color: #ffe18a;
}

.match_odd {
  font-weight: 700;
  color: gold;
}

.coupon_footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  margin-top: 10px;
}

.coupon_footer p {
  font-size: 12px;
  margin: 3px 0;
}

#toast_container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999999;
}

.toast_item {
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  min-width: 220px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  border-left: 4px solid gold;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.35s ease;
}

.withdraw_container {
  width: 100%;
  max-width: 500px;
  margin: 40px auto;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 16px;
  padding: 25px 30px;
  color: white;
  font-family: "Poppins", sans-serif;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.08);
}

.withdraw_container h2 {
  font-size: 24px;
  font-weight: 700;
  color: gold;
  margin-bottom: 20px;
  text-align: center;
}

.withdraw_form label {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
  color: #ffe9a0;
  font-weight: 500;
}

.withdraw_form input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.5);
  background: rgba(255, 255, 255, 0.07);
  color: white;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  transition: 0.2s;
}

.withdraw_form input:focus {
  outline: none;
  border-color: gold;
  background: rgba(255, 255, 255, 0.12);
}

#withdraw_btn {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  border: none;
  border-radius: 12px;
  background: gold;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.25s;
  font-family: "Poppins", sans-serif;
}

#withdraw_btn:hover {
  background: #ffde55;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

#withdraw_toast_container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999999;
}

.withdraw_toast {
  background: rgba(0, 0, 0, 0.85);
  border-left: 4px solid gold;
  padding: 12px 16px;
  margin-top: 10px;
  color: white;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.35s ease;
  min-width: 220px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.withdraw_form input[type=file] {
  position: relative;
  width: 100%;
  padding: 14px;
  font-family: "Poppins", sans-serif;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid #ffcc00;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
}

.withdraw_form input[type=file]::-webkit-file-upload-button {
  visibility: hidden;
}

.withdraw_form input[type=file]::before {
  content: "Dekont Yükle";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffcc00;
  color: black;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  pointer-events: none;
}

.withdraw_form input[type=file] {
  color: rgba(255, 255, 255, 0.8);
}

.withdraw_form input[type=file]:hover {
  border-color: #ffe680;
}

.withdraw_form input[type=file]::file-selector-button {
  visibility: hidden;
}

.withdraw_form button {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #ffcc00;
  color: black;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.withdraw_form button:hover {
  background: #ffe066;
}

.withdraw_form input[type=file] {
  color: transparent;
}

.withdraw_form input[type=file]::-moz-file-upload-text {
  visibility: hidden;
}

.deposit_wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.bank_info_box,
.deposit_form_box {
  width: 450px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid #ffcc00;
  border-radius: 18px;
  padding: 35px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  font-family: "Poppins", sans-serif;
}

.bank_info_box h2,
.deposit_form_box h2 {
  text-align: center;
  font-size: 28px;
  color: #ffcc00;
  margin-bottom: 25px;
  font-weight: 600;
}

.bank_row {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #ffcc00;
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #fff;
}

.bank_row strong {
  color: #ffcc00;
}

.withdraw_form label {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 15px;
}

.withdraw_form input[type=text],
.withdraw_form input[type=number] {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #ffcc00;
  border-radius: 10px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.withdraw_form input::-moz-placeholder {
  color: #aaa;
}

.withdraw_form input::placeholder {
  color: #aaa;
}

.bank_select_box {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #fdd835;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  outline: none;
}

.no_bank_warning {
  color: #ff4d4d;
  font-size: 15px;
  margin-top: 5px;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.bank_select_box {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #fdd835;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 16px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  font-family: "Poppins", sans-serif;
}

.bank_select_box::-ms-expand {
  display: none;
}

.admlogin {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-items: center;
  align-items: center;
}
.admlogin > .admlogin_row {
  width: 90%;
  max-width: 400px;
  height: 500px;
  -webkit-backdrop-filter: blur(20px) brightness(0.5);
          backdrop-filter: blur(20px) brightness(0.5);
  border-radius: 6px;
  margin: auto;
  padding: 20px;
}
.admlogin > .admlogin_row > .adm_logo {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 20%;
}
.admlogin > .admlogin_row > .adm_logo > img {
  margin: auto;
  max-width: 180px;
}
.admlogin > .admlogin_row > form {
  width: 100%;
  height: 80%;
  display: flex;
  justify-content: center;
}
.admlogin > .admlogin_row > form > .adm_rows {
  width: 100%;
}
.admlogin > .admlogin_row > form > .adm_rows > input {
  display: flex;
  width: 80%;
  height: 40px;
  margin: 8px auto;
  border: 1px solid var(--yellow-);
  border-radius: 20px;
  outline: none;
  background-color: #242424;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: white;
}
.admlogin > .admlogin_row > form > .adm_rows > input[type=text],
.admlogin > .admlogin_row > form > .adm_rows > input[type=password] {
  padding-left: 10px;
}
.admlogin > .admlogin_row > form > .adm_rows > input[type=submit] {
  cursor: pointer;
  transition: 0.3s linear;
  font-weight: 600;
}
.admlogin > .admlogin_row > form > .adm_rows > input[type=submit]:hover {
  background-color: var(--yellow-);
  color: black;
}
.admlogin > .admlogin_row > form > .adm_rows > h1 {
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin: auto;
  margin-top: 20px;
  text-align: center;
  line-height: 1;
}
.admlogin > .admlogin_row > form > .adm_rows > h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  line-height: 1;
  margin-bottom: 30px;
  font-size: 13px;
  margin-top: 5px;
  background-color: var(--yellow-);
  color: black;
  padding: 3px 0;
  border-radius: 2px;
  filter: drop-shadow(0 0 5px var(--yellow-));
}

.admin_content h2 {
  color: #ffd700;
  margin-bottom: 20px;
  font-size: 23px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.cekim_table table {
  width: 100%;
  border-collapse: collapse;
}

.cekim_table th, .cekim_table td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.pending {
  color: #ffcc00;
}

.approved {
  color: #00ff73;
}

.rejected {
  color: #ff4b4b;
}

.btn_ok {
  background: #00b83d;
  color: black;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.btn_red {
  background: #ff4747;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.modal_box {
  width: 400px;
  background: #111;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #ffcc00;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
  text-align: center;
}

.modal_box h3 {
  margin-bottom: 15px;
  color: #ffcc00;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.modal_box textarea {
  width: 100%;
  height: 110px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #222;
  color: white;
  resize: none;
  outline: none;
}

.modal_buttons {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.admin_list_table {
  width: 100%;
  border-collapse: collapse;
  color: white;
  font-size: 14px;
}

.admin_list_table th {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.admin_list_table td {
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.admin_btn {
  background: #ffaa00;
  color: black;
  padding: 5px 12px;
  border-radius: 6px;
}

.pagination {
  margin-top: 20px;
  text-align: center;
}

.page_btn {
  padding: 6px 10px;
  margin: 0 4px;
  background: #333;
  color: #fff;
  border-radius: 4px;
}

.page_current {
  margin: 0 10px;
  color: #ffaa00;
}

.admin_table > h2 {
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin: 10px 0;
}

.admin_success {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: white;
}/*# sourceMappingURL=main.css.map */