{
  padding: 0;
  margin: 0;
}

#betting-table-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 5px;
    margin-bottom: 15px;

}

#betting-table-container .betting-table {
  width: 96%;
  margin: 0 auto;
  border: 1px solid grey;
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  text-align: center;
  padding: 8px;
background:transparent!important;
}

#betting-table-container .wrapper-for-betting {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  text-align: center;
}

.mobile-wrapper-only {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#betting-table-container .betting-logo {
  border-radius: 10px;
}

#betting-table-container .betting-logo img {
  width: 120px;
  display: block;
  height: auto;
  border-radius: 10px;
}

#betting-table-container .raiting {
  padding: 0px 5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8em;
color:black!important;
}

#betting-table-container .icon-star {
  --star-size: 20px;
  position: relative;
  display: inline-block;
  color: gold!important;
  width: var(--star-size);
  height: var(--star-size);
  background-color: gold;
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 68% 57%, 
    79% 91%, 50% 70%, 21% 91%, 32% 57%, 
    2% 35%, 39% 35%
  );
}

#template_star_rating {
  padding: 0 5px;
}

#betting-table-container .bonus-box {
  display: flex;
  flex-direction: column;
  width: 40%;
}

#betting-table-container .bonus-title {
  font-size: 12px;
  color: black;
  text-transform: uppercase;
  text-align: center;
  font-weight: 400;
  margin-bottom: 3px;
  margin-top: 5px;
}

#betting-table-container .bonus-offer {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  text-decoration: none !important;
  color: black;
}

#betting-table-container .review {
  width: 15%;
  border: none !important;
}

#betting-table-container .review a {
  font-size: 12px;
}

#betting-table-container .review:hover {
  background-color: transparent !important;
}

#betting-table-container .review-link {
  color: rgb(11, 127, 244);
  text-decoration: none;
}

.betting-btn-wrapper {
  width: 17%;
  display: flex;
  justify-content: center;
}

#betting-table-container .link-btn {
  display: block;
  border: none !important;
  border-radius: 20px;
  padding: 5px;
  width: 150px;
  background-color: rgb(10, 177, 10);
  color: white;
  font-weight: bold;
  cursor: pointer;
  box-shadow: inset 0px 19px 9px -11px #ffffff2b, inset 0px -18px 9px -11px #007f2e21, 0px 0px 0px 4px #00000014;
  text-decoration: none;
  font-size: 12px;
}

#betting-table-container .link-btn:hover {
  background-color: #7dd47d;
}

#betting-table-container .terms {
  font-size: 8px;
  line-height: 11px;
  margin-top: 0;
  margin-bottom: 0;
color:black!important;
}

#betting-table-container .betting-table > div:not(:first-child)::before {
  content: '';
  display: block;
  border-left: 1px solid #EFEFF2;
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

#betting-table-container .betting-table > div {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
}

/* Media Queries */
@media (max-width: 800px) {
  .mobile-wrapper-only {
    flex-direction: column;
  }

  #betting-table-container .betting-table > div:not(:first-child)::before {
    border-left: none;
  }
}

@media (max-width: 670px) {
  #betting-table-container .betting-table {
    flex-direction: column;
    min-width: 200px;
    height: 250px;
    text-wrap: wrap;
    padding: 10px;
  }

  #betting-table-container .wrapper-for-betting {
    display: flex;
    flex-direction: column;
    height: 90%;
    gap: 10px;
  }

  #betting-table-container .terms {
    font-size: 6px;
    margin-top: 5px;
    font-weight: normal;
  }

  #betting-table-container .review {
    width: 60%;
  }

  #betting-table-container .bonus-box,
  .betting-btn-wrapper {
    width: 100%;
  }

  #betting-table-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
margin: 5px 10px;
  }

  ::-webkit-scrollbar {
    width: 7px;
    height: 7px;
  }

  ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
    border: 3px solid #f1f1f1;
  }

  ::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }
}