.matchstat body,
.steveg body {
  font-size: 16px;
}

.ms-default-link,
a {
  text-decoration: none;
  color: var(--primary-text);
  transition: all 0.2s ease;
}

.matchstat .section-header a {
  color: #21272a;
}

.ms-default-link:hover,
.matchstat .section-header a:hover {
  color: #464d55;
}

.match-stats-text {
  font-size: 17px;
  margin-bottom: 20px;
}

/* -----------------Stats Model----------------- */

#h2hStats {
  position: relative;
}

.stats {
  width: 350px;
  padding: 1rem;
  box-shadow: #64646f99 0 7px 19px;
  display: none;
  z-index: 9999;
  position: fixed;
  top: 20px;
  left: 450px;
  background: #fff;
}

.stats img {
  width: 112px;
  object-fit: cover;
}

.stats-info-row {
  display: grid;
  grid-template-columns: 1fr 0.5fr 1fr;
}

.stats-info-row div {
  margin: 0 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-gray);
}

.stats-player {
  display: flex;
  justify-content: space-between;
}

.stats-info :last-child div {
  border: none;
}
.stats-player img {
  width: 112px;
  height: auto;
}

/* ----------------------------------HEADER------------------------------ */
.header-menu {
  background: var(--primary-color);
  line-height: 1.5;
  display: flex;
  padding: 16px 32px;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.ms-logo a {
  color: #fff;
}

.header-left {
  width: 48%;
  display: flex;
  align-items: center;
}

.header-right {
  display: flex;
  justify-content: space-between;
}

.header-menu-links {
  color: #fff;
  list-style-type: none;
  display: flex;
  gap: 21px;
  margin-bottom: 0;
  width: 100%;
}

.header-menu-links .mail-link {
  display: none;
}

.header-menu-links a {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  gap: 4px;
  white-space: nowrap
}

.header-menu-links img {
  width: 22px;
  height: 22px;
}

.header-logo {
  height: 44px;
}

.header-menu-buttons {
  display: flex;
}

.search-area {
  display: flex;
  background-color: #fff;
  border-radius: 6px;
  height: fit-content;
  margin-left: 120px;
  width: 45%;
}

.search-area input {
  background: transparent;
  padding: 10px 20px 10px 0;
  outline: none;
  border: none;
  width: 100%;
}

.search-area input:focus + .search-list {
  display: unset !important;
}

.search-area img {
  margin: 0 10px;
}


/* -------------------------------BREADCRUMB----------------------------  */

.breadcrumb {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: -1.5rem;
  grid-column: 1 / -1;
}

.breadcrumb-link,
.breadcrumb-links {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #697077;
  cursor: pointer;
  transition: all 0.3s ease;
}

.breadcrumb-link.active,
.breadcrumb-link:hover {
  color: #21272a;
  transition: all 0.3s ease;
}

.breadcrumb-link-text {
  white-space: nowrap;
}

.plans-card {
  display: block;
  text-align: center;
  border-radius: 6px;
  cursor: default;
  margin-bottom: 20px;
}

.plans-card img {
  width: 80%;
  height: auto;
  border-radius: 6px;
  margin: 0 auto;
}

/* ----------------- Youtube Frame ------------- */
.youtube-frame {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* ----------------Predictions Images */

.prediction-images {
  background-color: var(--light-gray-color);
  padding: 1rem;
  border-radius: 6px;
}

.capture-image {
  width: 100%;
  height: auto;
}

.prediction-images:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.prediction-images:not(:last-child) {
  margin-bottom: 20px;
}

.prediction-images img {
  width: 100%;
  height: auto;
}
.btn-blue.prediction-unlock-btn {
  padding: 8px 10px 12px;
  white-space: nowrap;
  background-color: #3a63f3;
  color: white;
}
#h2h-captures:has(img[data-type='h2h-stats'].display-none):has(
    img[data-type='h2h-profile'].display-none
  ) {
  display: none;
}
/* ------------------------- Social Sharing Links ---------------------------------- */
.social-sharing-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.social-sharing-links-item {
  width: 58px;
  border-radius: 4px;
  background-color: red;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
}
.social-sharing-links-item img {
  height: 20px;
}

.social-sharing-links-item.twitter {
  background-color: #00acee;
}
.social-sharing-links-item.reddit {
  background-color: #ff4006;
}
.social-sharing-links-item.facebook {
  background-color: #4267b2;
  padding: 5.5px 10px;
}
.social-sharing-links-item.facebook img {
  height: 26px;
}

/* ------------------------- Email Verification --------------------------------- */
.email-verify-top {
  background: #ff4006;
  color: white;
  padding: 4px 8px;
  margin-bottom: 10px;
  text-align: center;
  border-radius: 6px;
}
.email-verify-top span {
  cursor: pointer;
  border-bottom: 1px solid white;
}

/* ------------------------- Toast ---------------------------------- */
.toast-container {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 99;
  transition: all 0.5s ease-in;
}
.toast-container.hide-toast {
  opacity: 0;
  transition: all 0.5s ease-in;
}
.toast-container.display-toast {
  opacity: 1;
  transition: all 0.5s ease-in;
}
.toast-container .ngx-toastr {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px;
  background-repeat: no-repeat;
  background-size: 24px;
  box-shadow: 0 0 12px #999;
  color: #fff;
  font-size: 16px;
  transition: opacity 1s;
  transition-delay: 4s;
}

.toast-info {
  background-color: #2f96b4;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOS4wNDMgOCA4IDExOS4wODMgOCAyNTZjMCAxMzYuOTk3IDExMS4wNDMgMjQ4IDI0OCAyNDhzMjQ4LTExMS4wMDMgMjQ4LTI0OEM1MDQgMTE5LjA4MyAzOTIuOTU3IDggMjU2IDh6bTAgMTEwYzIzLjE5NiAwIDQyIDE4LjgwNCA0MiA0MnMtMTguODA0IDQyLTQyIDQyLTQyLTE4LjgwNC00Mi00MiAxOC44MDQtNDIgNDItNDJ6bTU2IDI1NGMwIDYuNjI3LTUuMzczIDEyLTEyIDEyaC04OGMtNi42MjcgMC0xMi01LjM3My0xMi0xMnYtMjRjMC02LjYyNyA1LjM3My0xMiAxMi0xMmgxMnYtNjRoLTEyYy02LjYyNyAwLTEyLTUuMzczLTEyLTEydi0yNGMwLTYuNjI3IDUuMzczLTEyIDEyLTEyaDY0YzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MTAwaDEyYzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MjR6Jy8+PC9zdmc+');
}

.toast-success {
  background-color: #51a351;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeicvPjwvc3ZnPg==');
}

.toast-delete {
  background-color: #bd362f;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6bTEyMS42IDMxMy4xYzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMzggMzc3LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwyNTYgMzEybC02NS4xIDY1LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwxMzQuNCAzMzhjLTQuNy00LjctNC43LTEyLjMgMC0xN2w2NS42LTY1LTY1LjYtNjUuMWMtNC43LTQuNy00LjctMTIuMyAwLTE3bDM5LjYtMzkuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsNjUgNjUuNyA2NS4xLTY1LjZjNC43LTQuNyAxMi4zLTQuNyAxNyAwbDM5LjYgMzkuNmM0LjcgNC43IDQuNyAxMi4zIDAgMTdMMzEyIDI1Nmw2NS42IDY1LjF6Jy8+PC9zdmc+');
}
.dropdown {
  max-width: 100px;
}
/* ------------------------- Search Listing ---------------------------------- */
.search-list {
  box-shadow: #64646f99 0 7px 19px;
  background: white;
  position: absolute;
  width: auto;
  min-width: 250px;
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 4px 16px;
  z-index: 9999;
  transform: translate(0, 36px);
}

.search-list-items {
  margin-bottom: 16px;
}

.search-list-items h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

.search-list-items a .home-team {
  font-weight: normal !important;
}

.search-list-items a {
  padding-left: 16px;
  font-size: 16px;
}

.search-list-items a:hover {
  cursor: pointer;
  color: #697077;
}

.search-list-items a img {
  margin: 0;
  width: 24px;
}

.tournament-items a:hover {
  color: #0a58ca;
}
.tournament-items a {
  color: #0d6efd;
  display: block;
}

/* ------------------------- Sidebar Ranking ------------------------------------ */

.in-h2h.ranking-data {
  display: grid;
  grid-template-columns: 30px 1fr 80px;
  gap: 4px;
}

.in-h2h-player img {
  border-radius: 0;
}

/* ----------------------Tennis Banner--------------------- */
.steveg-tennis-banner {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 20px;
}

/*  ----------------------- Redirect Tabs ----------------------- */
.redirect-tabs {
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.redirect-tabs .tab {
  background: var(--primary-color);
  color: #fff;
  transition: all 0.2s ease;
  flex-grow: 1;
  font-size: 14px;
  margin-bottom: 0;
  white-space: nowrap;
}

.redirect-tabs .tab:hover {
  background: #fff;
  color: var(--primary-color);
  box-shadow: 0 8px 15px #1a315024;
  transition: all 0.2s ease;
}

/* ---------------Prediction Banner ----------------- */

.prediction-banner .link-group {
  display: flex;
  gap: 0.5rem;
  margin-top: 20px;
}

.prediction-banner-block .link-group .link {
  display: flex;
  padding: 4px 18px;
  justify-content: center;
  align-items: center;
  grid-gap: 16px;
  gap: 16px;
  border-radius: 100px;
  text-decoration: none;
}

.prediction-banner-block .link-group .link a {
  color: #fff;
  background-color: transparent;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  padding: 6px 8px;
}

.prediction-banner-block .backtesting-link {
  background: #00bf6f;
  transition: all 0.2s ease;
}

.prediction-banner-block .premium-link {
  background: #32bfff;
  transition: all 0.2s ease;
}

/* ------------------Prediction Table--------------------- */

.prediction-table-title {
  font-size: 18px;
  margin-bottom: 0.5rem;
}

.section-container.prediction-table-container {
  background-color: var(--border-gray);
}

.prediction-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px;
}

.prediction-title {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
}

.prediction-table-header p {
  font-size: 14px;
}

.prediction-title h1 {
  display: flex;
  align-items: center;
  font-size: 24px;
  gap: 4px;
  flex-wrap: wrap;
  white-space: nowrap;
}

.prediction-title p:last-child {
  font-weight: 500;
  color: #fffc;
}

.prediction-title span {
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 4px;
  text-transform: capitalize;
  white-space: nowrap;
}

.prediction-title a {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 24px;
  flex-wrap: wrap;
}

.prediction-title a:hover {
  color: #fffc !important;
  transition: all 0.2s ease;
}

.matchstat .prediction-title a:hover {
  color: #777 !important;
  transition: all 0.2s ease;
}

.prediction-time {
  margin-left: auto;
  text-align: right;
}

#prediction-stat-section {
  margin-top: 2.5rem;
}

.content-header {
  background: transparent;
  padding-bottom: 13px;
  text-transform: uppercase;
  color: #697077;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
}

.custom-header-grid,
.custom-body-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.name-item {
  padding-left: 24px;
}

.odds-item {
  text-align: center;
}

.odds-item,
.value-item,
.prediction-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.prediction-item span {
  font-size: 16px;
  font-weight: 600;
}

.value-item {
  text-align: center;
}

.item-padding {
  padding: 14px 24px;
}

.player-name-pt {
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  text-transform: capitalize;
  color: #12253d;
}

.player-sub-pt {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-transform: capitalize;
  color: #697077;
  margin-top: 3px;
}

.item-border {
  position: relative;
}

.item-border:not(:last-child):after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 2px;
  background-color: #dde1e6;
}

.content-row {
  background: #f1f2f5;
  margin-bottom: 8px;
}

.content-row:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.content-row:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.button-pt {
  display: flex;
  justify-content: center;
  text-align: center;
}

.button-yl {
  background: #ffcb2e;
  border-radius: 4px;
  padding: 16px 32px;
  color: #000;
  margin-top: 16px;
  text-transform: uppercase;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  width: fit-content;
}

/* --------------------Prediction PAge------------------- */
.plan-link {
  font-weight: 700;
  color: #0a58ca !important;
}

.prediction-unlock {
  display: flex;
  grid-gap: 12px;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 28px;
  padding-bottom: 8px;
}

.unlock-all.prediction-unlock {
  padding: 12px 0 32px 0;
}

.prediction-unlock-email input {
  background: #fff;
  outline: none;
  border: none;
  padding: 16px;
  border-radius: 4px;
  min-width: 300px;
}

.prediction-unlock-btn {
  background: #ffcb2e;
  padding: 16px 32px;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
}

.unlock-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: center;
}

.unlock-container p {
  font-size: 16px;
  line-height: 24px;
}

.btn-yellow.prediction-unlock-btn {
  padding: 10px 12px;
  white-space: nowrap;
}

/* -------------Bottom Banner--------------- */
.bottom-banner {
  position: fixed;
  display: block;
  bottom: 2%;
  left: calc(50% - 200px);
  z-index: 9999;
  background: #F9DB18;
  width: 400px;
  margin: 0 auto;
  box-shadow: 0 2px 6px #0003;
  padding: 12px 10px;
  border-radius: 100px;
  color: #000;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-size: 18px;
}

/* -----------------------------Upcoming Matches Links------------------------- */
.upcoming-tennis-matches a:hover {
  color: #75adff !important;
  transition: all 0.2s ease;
}

.t-link p a:hover {
  color: #75adff !important;
}

.upcoming-tennis-matches {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 18px;
}

.upcoming-tennis-matches a {
  text-decoration: none;
  line-height: 20px;
  color: #212529;
}

.stats-hover:hover {
  cursor: pointer;
}

/* ------------------------- Prediction Filter ---------------------------------- */

.prediction-filter {
  background-color: #fff;
  padding: 32px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.prediction-filter-group {
  display: flex;
  gap: 4px;
  align-items: center;
}

.prediction-filter-group:not(:last-child) {
  margin-bottom: 10px;
}

.prediction-filer-buttons {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-grow: 1;
  flex-wrap: wrap;
}

.prediction-filer-buttons button {
  padding: 14px 20px;
  border-radius: 8px;
  flex-grow: 1;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
}

.prediction-filer-buttons button.button-locks,
.prediction-filer-buttons button.button-locks:hover {
  color: #0000004d;
  background-color: #0000001a;
}

.prediction-filer-buttons button.button-locks a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 999999;
}

.prediction-filer-buttons button.filter-active,
.prediction-filer-buttons button:hover {
  background-color: var(--primary-color);
  color: #fff;
  transition: all 0.2s ease;
}
.matchstat .prediction-filer-buttons button:hover {
  background: var(--button-bg-ms);
}
.prediction-filter-label {
  font-size: 14px;
  min-width: 100px;
}

/* ------------ Media Query ------------------ */
@media screen and (max-width: 1530px) {
  .header-left {
    width: 40%;
  }

  .search-area {
    margin-left: 20px;
    width: 60%;
  }
}

@media screen and (max-width: 1400px) {
  .header-logo {
    width: auto;
    height: 32px;
  }

  .header-left {
    width: 30%;
  }
}

@media screen and (max-width: 1366px) {
  .header-menu {
    padding: 14px 32px !important;
  }
}

@media screen and (max-width: 1250px) {
  .header-left {
    width: 60%;
  }

  .header-logo {
    height: 44px;
  }

  .search-area {
    margin-left: 60px;
  }

  .header-right {
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-grow: 1;
    gap: 10px;
  }

  .header-menu-links {
    gap: 10px;
    justify-content: flex-end;
  }
}

@media screen and (min-width: 992px) {
  .display-992.header-menu-buttons {
    display: none;
  }
  .live-events {
    font-size: 14px;
  }

  .event-title {
    font-size: 10px;
  }
}

@media screen and (max-width: 992px) {
  .header-menu {
    flex-wrap: wrap;
  }

  .stats {
    left: 250px;
  }
  .steveg-tennis-banner {
    height: auto;
  }

  .header-menu-links {
    justify-content: space-between;
  }

  .header-menu-buttons {
    display: none;
  }

  .header-logo {
    width: auto;
    height: 32px;
  }

  .header-left {
    width: 100%;
    justify-content: space-between;
  }

  .search-area {
    width: auto;
    margin-left: 20px;
  }

  .display-992.header-menu-buttons {
    display: flex;
  }

  .input-checkbox[type='checkbox']::before {
    width: 20px;
    height: 20px;
  }

  .input-checkbox[type='checkbox'] {
    min-width: 40px;
    height: 20px;
  }

  .breadcrumb-link-text {
    white-space: normal;
    font-size: 14px;
  }

  .matchstat .header-menu {
    padding: 14px 32px;
    gap: 10px;
  }

  .matchstat .header-left {
    width: 100%;
    gap: 20px;
  }

  .matchstat .search-area input {
    padding: 4px 16px 4px 16px;
  }

  .ms-logo span:last-child {
    margin-left: -4px;
  }

  .prediction-banner-block {
    padding: 14px 18px;
  }

  .prediction-banner-block .link-group .link a {
    font-size: 10px;
    padding: 6px 0;
  }

  .prediction-banner-block h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
  }

  .upcoming-tennis-matches {
    font-size: 14px;
    gap: 4px;
  }

  .section-container.upcoming-tennis-matches {
    padding: 12px 24px;
  }

  .unlock-container {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
  }

  .unlock-container p {
    text-align: left !important;
  }
}


@media screen and (max-width: 768px) {

  .stats {
    left: 200px;
  }

  .user-info-icon {
    width: 20px !important;
    height: 20px !important;
  }

  .search-area img {
    height: auto;
  }

  .search-area input {
    padding: 5px 16px 6px 16px !important;
  }

  .social-sharing-links-item {
    width: 30px;
  }

  .user-info-links a,
  .user-info-links p {
    font-size: 14px !important;
  }

  .header-menu-buttons a,
  .header-menu-buttons button {
    padding: 4px 12px;
    font-size: 10px;
    border-radius: 3px;
  }

  .header-logo {
    height: 26px;
  }

  .header-menu-links {
    gap: 0;
  }

  .header-menu-buttons img:not(:has(.user-info-icon)) {
    width: 14px;
    height: 14px;
  }

  .search-area input {
    padding: 5px 10px 5px 0;
  }

  .search-area {
    font-size: 12px;
    border-radius: 3px;
    flex: 1;
    max-width: 300px;
  }

  .search-area img {
    margin: 0 6px;
    width: 14px;
  }

  .header-menu-links {
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  .matchstat body,
  .steveg body {
    font-size: 16px;
  }

  .search-list {
    transform: translate(-120px, 28px);
  }

  .bottom-banner {
    width: 250px;
    left: calc(50% - 135px);
    padding: 5px 8px;
    font-size: 12px !important;
  }

  .breadcrumb {
    margin-bottom: 0;
  }

  .plans-card img {
    width: 100%;
    height: auto;
  }

  .prediction-unlock-email input {
    min-width: 250px;
  }

  .checkbox-container {
    display: flex;
  }

  .header-menu-links {
    flex-wrap: wrap;
    gap: 6px;
  }

  .header-left {
    justify-content: flex-start;
  }

  .search-area {
    margin-left: 50px;
    margin-right: 40px;
  }

  .header-menu-buttons {
    gap: 20px;
  }

  .header-menu-buttons a,
  .header-menu-buttons button {
    min-width: 60px;
    font-size: 14px;
    margin-top: 4px;
    margin: 0;
    padding: 4px;
  }

  .header-menu-buttons a {
    margin-left: 0;
  }

  .matchstat .header-menu,
  .header-menu {
    padding: 14px 12px !important;
    gap: 10px;
  }

  .header-menu-buttons a {
    margin-left: auto;
  }

  .header-menu-buttons button:nth-child(2)::before {
    background-color: transparent;
  }

  .header-menu-links .mail-link {
    display: inline-block;
  }

  .prediction-banner .link-group {
    flex-direction: column;
  }

  .prediction-banner-block .link-group .link,
  .prediction-banner-block .link-group .link a {
    font-size: 12px;
    padding: 4px 10px;
  }

  .prediction-banner-block .link-group .link {
    gap: 0;
  }

  .user-info-links a,
  .user-info-links p {
    padding: 6px 12px;
    margin-left: 0;
  }

  .prediction-title h1 {
    font-size: 14px;
    white-space: normal;
    line-height: 4px;
    gap: 0;
  }

  .prediction-title span {
    font-size: 12px;
  }

  .prediction-title span img {
    width: 22px;
    height: fit-content;
  }

  .player-name-pt {
    font-size: 14px;
    line-height: 16px;
  }

  .player-sub-pt {
    font-size: 12px;
  }

  .content-header {
    padding: 14px 0;
  }

  .content-header div {
    font-size: 10px;
    line-height: 12px;
  }

  .item-padding {
    padding: 14px 6px 14px 14px;
  }

  .content-row {
    margin-bottom: 2px;
  }

  .prediction-item span {
    font-size: 14px;
  }

  .prediction-table-title {
    font-size: 14px;
  }

  .prediction-time {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }

  .button-pt {
    padding: 0 6px 0 6px;
  }

  .button-yl {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 16px 0;
    margin-bottom: 0;
  }

  .upcoming-tennis-matches {
    gap: 4px;
    font-size: 14px;
  }

  .prediction-filter {
    padding: 10px;
  }

  .prediction-filter-label {
    font-size: 12px;
    min-width: 70px;
  }

  .prediction-filer-buttons {
    gap: 6px;
  }

  .prediction-filer-buttons button {
    padding: 8px 6px;
    font-size: 10px;
    border-radius: 6px;
  }

  .prediction-filer-buttons button img {
    height: 10px;
    width: 10px;
  }

  .stats {
    width: 75%;
    font-size: 12px;
    padding: 6px;
    transform: none;
    position: fixed;
    top: 20%;
    left: 10%;
    right: 0;
  }

  .stats-info-row div {
    margin: 0 6px;
  }

  .stats-info :last-child div {
    border: none;
  }
}

@media screen and (max-width: 450px) {
  .search-area {
    width: 170px;
    margin-left: 20px;
    margin-right: 15px;
  }

  .breadcrumb {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
}

.header-menu-buttons a {
  margin-left: 12px;
}

/* -----------------------------H2h prediction btn width------------------------- */
.pred-h2h-btn .button-yl {
  width: 100%;
}
