.pricing_section {
  background-color: #fff;
  box-shadow: 0 0 10px 0 #10bd7f;
  font-family: "Geomanist Medium", Sans-serif;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  margin: 2rem 100px;
}

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

.pricing_wrapper__item {
  align-self: stretch;
  overflow: hidden;
}

.pricing_wrapper__item ul {
  padding: 13px 0;
}

.pricing_wrapper__item ul > li {
  font-size: 15px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 4px 0;
}

.pricing_wrapper__item ul > li > svg {
  margin-right: 8px;
}

.pricing_wrapper__name {
  flex: 1;
  position: relative;
  width: 100%;
  padding: 6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing_wrapper__name > h3 {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  padding: unset;
  margin: unset;
}

.pricing_wrapper__name > div {
  position: absolute;
  top: 0;
  padding: 0 50px;
  left: 0;
  width: max-content;
  height: 23px;
  color: white;
  background-color: #10bd7f;
  transform: translate(-25%, 100%) rotate(-45deg);
  text-transform: uppercase;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.pricing_wrapper_price {
  width: 100%;
  flex: 1;
  padding: 12px 0;
  background-color: #61ce7026;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing_wrapper_price > div {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.pricing_wrapper_price > div > big {
  font-size: 50px;
  line-height: 0.8;
}

.pricing_wrapper_price > div > div {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.4;
}

.pricing_wrapper_price > div > span {
  font-size: 1rem;
  margin-right: 3px;
  line-height: 1;
}

.pricing_wrapper_price > div > strike {
  line-height: normal;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
  font-size: medium;
  font-style: normal;
  margin-right: 16px;
  color: gray;
}

.pricing_wrapper_price > div > strike > span {
  color: #000;
}

.pricing_wrapper_btn a {
  background-color: #10bd7f;
  color: #fff;
  text-decoration: none;
  box-shadow: none;
  display: inline-block;
  line-height: 1;
  border-radius: 3px;
  padding: 12px 14px;
  text-align: center;
  transition: all 0.3s;
}

.flex_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.flex_column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flex_column_2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.flex_1 {
  flex: 1;
}

.flex_2 {
  flex: 2;
}

.centered_pd {
  padding: 0 20px;
}

@media (max-width: 700px) {
  .pricing_section {
    padding-bottom: 20px;
    margin: 0 8px;
  }

  .pricing_wrapper__row {
    flex-direction: column;
  }

  .pricing_wrapper__name {
    padding: 18px 0;
  }

  .pricing_wrapper__name > div {
    transform: translate(-33%, 60%) rotate(-45deg);
  }

  .flex_column_2 {
    align-items: center;
  }

  .flex_row {
    justify-content: center;
  }
}


.section_item {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  color: dimgray;
  margin: 15px 0;
  text-transform: unset;
  display: flex;
  flex-direction: column !important;
  text-align: start;
  align-items: flex-start;
}
.section_item.tab {
  text-transform: unset;
}
.cus_tbl_head {
  white-space: nowrap;
}
.cus_tbl_head tr th {
  color: #2d3f4e;
  text-align: start;
  font-size: 13px;
}
.cus_tbl_body {
  white-space: nowrap;
}
.cus_tbl_body tr td {
  text-align: start;
  font-size: 12px;
}
.table-responsive {
  scrollbar-width: thin;
}
.data_table_section {
  margin: 10px 0 40px 0;
}
.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.related-post-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.related-post-item:hover {
  transform: translateY(-5px);
}
.related-post-thumbnail {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.related-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-post-title {
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  text-align: center;
}
.related-post-link {
  text-decoration: none;
  color: inherit;
}
.related-post-link:hover .related-post-title {
  color: #0073aa;
}
.c_dropdown {
  position: relative;
  display: inline-block;
  min-width: 8rem;
}
.c_dropdown .c_dropdown_btn {
  border: none;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  width: 100%;
}
.c_dropdown .c_dropdown_menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 15rem;
  padding: 0;
  margin: 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
}
.c_dropdown .c_dropdown_menu.show {
  display: block;
}
.c_dropdown .c_dropdown_item {
  padding: 10px 15px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c_dropdown .c_dropdown_item:hover {
  background-color: #f8f9fa;
  color: #007bff;
}
.c_dropdown .c_dropdown_item.show {
  background-color: #007bff;
  color: #fff;
  font-weight: 700;
}
.c_dropdown .c_dropdown_menu.no-border {
  border: none;
}
.c_dropdown .c_dropdown_menu.large {
  min-width: 15rem;
}
.gh23_search_container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border-radius: 4px;
  max-width: 280px;
  border: 1px solid #edf0f3;
  color: #485a72;
}
.gh23_search_container .searchBet_inp {
  flex: 1;
  height: 100%;
  border: 1px solid #fff0;
  font-size: 14px;
  margin: 0 5px;
  padding: 1px 5px;
  background: ghostwhite;
}
.gh23_search_container .searchBet_inp:focus {
  border: 1px solid blue;
}
.gh23_search_container .searchBet_icon {
  font-size: 14px;
  padding: 0 2px;
}
.gh23_search_container .searchBet_c_btn {
  cursor: pointer;
  background: #fff0;
  border: none;
  padding: 0 2px;
}
.searchBet_c_btn:hover {
  color: red;
}
.section_item > h4 {
  text-transform: capitalize;
  color: slategray;
  margin-top: 5px;
  margin-bottom: 10px;
  white-space: break-spaces;
  font-weight: 700;
}
.fs_7 {
  font-size: 14px;
}
.fs_8 {
  font-size: 12px;
}
.m_unset {
  margin: unset;
}
.odds_pill {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  background-color: darkseagreen;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  flex-direction: column;
  border: 2px solid powderblue;
}
.odds_pill .odds_pill_label {
  background: #036d9a;
  font-size: 10px;
  width: 100%;
  text-align: center;
}
.odds_pill .odds_pill_value {
  padding: 2px 6px;
  font-size: 15px;
}
.bets_pages_section {
  background: #fff;
  padding: 10px 4px 4px 4px;
  margin: 5px 0 10px 0;
  border-radius: 5px;
}
.bets_pages_h4 {
  text-align: center;
  text-transform: capitalize;
  color: slategray;
  margin-top: 20px;
  margin-bottom: 20px;
  white-space: break-spaces;
  font-weight: 700;
}
.row_fixed {
  width: 100%;
  margin: auto;
}
.toggle-buttons-container {
  padding: 5px 0;
  border-top: 1px solid gray;
  width: 100%;
}
.toggle-buttons {
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.toggle-btn {
  padding: 5px;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
  margin: 0 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.toggle-btn.active {
  background-color: #7bb37b;
  color: #fff;
}
.toggle-btn:hover {
  background-color: #7bb37b;
  color: #fff;
}
.toggle-btn svg {
  width: 24px;
  height: 24px;
}
.font_card_text {
  font-size: 14px;
}
.card_body_list_texts {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 5px;
}
.card_body_list_texts .key {
  text-transform: capitalize;
  font-weight: 500;
  color: #343938;
}
.card_body_list_texts .value {
  color: #3d3d3d;
  font-weight: 700;
}
.card_body_list_texts .key2 {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}
.card_body_list_texts .members_only_btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20px;
  margin-top: 15px;
}
.card_body_list_texts .members_only_btn > div {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid lightgray;
  background: whitesmoke;
  border-radius: 10px;
  cursor: pointer;
  padding: 5px 12px;
  font-weight: 400;
  white-space: nowrap;
}
.pg6g {
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 0 8px 0 #00000047;
  width: 70%;
  gap: 30px;
  margin: 25px auto;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.2s;
}
.pg6g:hover {
  box-shadow: 0 0 8px 0rgb (0 0 0 / 0.35);
}
.pg6g .pg6g_hfrg5h_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pg6g .pg6g_hfrg5h_text p {
  margin-bottom: 2px;
  font-size: 1rem;
}
.pg6g .pg6g_hfrg5h_text strong {
  font-size: 0.9rem;
}
.pg6g .pg6g_unlock_btn {
  background: #006cc1;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.pg6g .pg6g_unlock_btn:hover {
  background-color: #025492;
}
.allsdgh_preds {
  position: relative;
  transition: all 0.3s;
}
.allsdgh_preds:hover {
  box-shadow: 0 4px 30px rgb(0 0 0 / 0.1);
}
.allsdgh_preds .didfg5.pred_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  opacity: 0;
  background: rgb(255 255 255 / 0.26);
  box-shadow: 0 4px 30px rgb(0 0 0 / 0.1);
  backdrop-filter: blur(5.3px);
  -webkit-backdrop-filter: blur(5.3px);
  border: 1px solid rgb(255 255 255 / 0.3);
  z-index: 99;
}
.filter00874_btn {
  background-color: #fff;
  color: #404040;
  border-radius: 3px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  box-shadow: 0 0 5px 0 #00000059;
  font-size: 14px;
  font-weight: 400;
}
.allsdgh_preds .didfg5.pred_overlay > a {
  padding: 10px 15px;
  background: #fff;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 8px 0 #73d186;
  border: 2px solid #f2f2f2;
  text-transform: uppercase;
  color: dimgray;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.allsdgh_preds .didfg5.pred_overlay > a > svg {
  margin-right: 10px;
  transition: all 0.2s;
}
.allsdgh_preds .didfg5.pred_overlay > a:hover {
  background-color: #181a71;
  color: #fff;
}
.tpstr_row {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
  overflow-x: auto;
  cursor: normal;
}
.tpstr_row .tpstr_header,
.tpstr_row .tpstr_body {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding: 10px;
  width: 100%;
}
.tpstr_row .tpstr_header div,
.tpstr_row .tpstr_body div {
  flex: 1;
  display: block;
  width: 100%;
  min-width: 9.5rem;
}
.tpstr_row .tpstr_body {
  font-weight: 700;
}
.tpstr_value:nth-child(1) {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #bddfce;
  word-break: break-word;
  color: darkslateblue;
  font-weight: 400;
}
.tpstr_value {
  padding: 20px 4px;
  background: #8fbc8f3b;
}
.bet_row {
  display: flex;
  flex-wrap: wrap;
}
.bet_col {
  flex: 0 0 auto;
  width: 50%;
}
.bet_card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  margin: 5px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
  transition: all 0.2s linear;
}
.bet_card:hover {
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.36);
}
.bet_card_header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2px;
  margin-bottom: 8px;
}
.favorite_icon {
  font-size: 16px;
  color: #ffc107;
  cursor: pointer;
}
.bet_card_content {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.team_name {
  font-size: 16px;
  font-weight: 700;
}
.bet_stats {
  display: flex;
  align-items: center;
  gap: 2em;
  width: auto;
  overflow-x: scroll;
  scrollbar-width: none;
}
.stat_item {
  text-align: start;
  white-space: nowrap;
  padding-right: 4px;
  border-right: 1px solid #e5e5e5;
}
.stat_item:last-child {
  border-right: unset !important;
}
.stat_label {
  font-size: 12px;
  color: #000;
  display: block;
}
.stat_value {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}
.odds_link {
  color: #0073e6;
}
.odds_icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.h2h_link_cls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.h2h_link_cls a {
  text-decoration: none;
}
.h2h_link_cls a:hover {
  text-decoration: underline;
}
.subs_banner_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #f3f4f6);
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
  border-radius: 12px;
  padding: 20px 30px;
  max-width: 800px;
  margin: 20px auto;
}
.sbw_content {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.sbw_content_text {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 15px;
}
.sbw_content_text > div > p {
  text-align: center;
}
.sbw_headline {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #333;
}
.sbw_subtext {
  font-size: 14px;
  margin: 5px 0 0;
  color: #555;
}
.sbw_btn {
  text-align: center;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
  transition: background 0.3s, box-shadow 0.3s;
}
.sbw_btn:hover {
  background: linear-gradient(135deg, #0056b3, #003580);
  box-shadow: 0 6px 10px rgb(0 0 0 / 0.15);
}
@media (max-width: 567px) {
  .sbw_content {
    flex-direction: column;
    gap: 15px;
  }
  .sbw_content_text {
    flex-direction: column;
    gap: 15px;
  }
  .is-logo-svg img {
    padding: 5px 0 !important;
  }
  .team_name {
    font-size: 0.9rem;
  }
  .bet_col {
    width: 100%;
  }
  .tpstr_row {
    cursor: grab;
  }
  .card_body_list_texts .members_only_btn {
    padding-left: 5px;
  }
  .card_body_list_texts .members_only_btn > div {
    padding: 5px 8px;
  }
  .card_body_list_texts .members_only_btn > div > span > svg {
    width: 16px;
    height: 16px;
  }
  .bets_pages_h4 {
    font-size: 1rem;
  }
  .card_body_list_texts .key {
    font-size: 0.879rem;
  }
  .card_body_list_texts .value {
    color: #3d3d3d;
    font-weight: 700;
    font-size: 0.879rem;
  }
  .pg6g {
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .related-posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .c_dropdown .c_dropdown_menu {
    min-width: 12rem;
  }
  .c_dropdown .c_dropdown_item {
    text-align: center;
  }
}
