#bonusCardContainer a,
#bonusCardContainer a:hover {
  text-decoration: none;
}

#bonusCardContainer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

#bonusCardContainer .bonus-box-card {
  display: inline-block;
  width: 280px;
  height: 340px;
  overflow: hidden;
  position: relative;
  border: 1px solid #cdcaca;
  border-radius: 30px;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
  background-color: black;
}

#bonusCardContainer .bonus-box-card img {
  cursor: pointer;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px;
  object-fit: contain;
  height: 90px;
}

#bonusCardContainer .card-bottom-overlay {
  background-image: linear-gradient(0deg, #3f5efb, #fc466b);
  border-radius: 30px;
  position: absolute;
  top: 41%;
  left: -6px;
  height: 68%;
  width: 108%;
  transform: skew(18deg, -21deg);
}

#bonusCardContainer .bonus-box-card .card-bottom-overlay {
  background-image: linear-gradient(-20deg, #0b0b0b, #9e9882);
}

#bonusCardContainer .inner-wrapper {
  position: absolute;
  bottom: 3%;
  width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
  height: 195px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

#bonusCardContainer .star-wrapper {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

#bonusCardContainer .star-wrapper p {
  color: #fdd835;
  margin-right: 5px;
  margin-bottom: 0;
  font-weight: bold;
}

#bonusCardContainer .star-rating .star {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #ccc;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    margin-right: 2px;
}

#bonusCardContainer .star-rating .star.active {
    background-color: #ffd700;
}

#bonusCardContainer .star-rating .star.active.half {
    background: linear-gradient(90deg, #ffd700 50%, #ccc 50%);
}

#bonusCardContainer .star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}
#bonusCardContainer .bonus-title {
  font-size: 15px;
  color: white;
  margin-bottom: 0;
}

#bonusCardContainer .bonus-offer {
  color: white !important;
  font-weight: 900;
  margin-bottom: 0 !important;
  font-size: 17px;
  text-align: end;
  text-transform: uppercase;
}

#bonusCardContainer .bonus-offer a {
  color: white !important;
}

#bonusCardContainer .description p {
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
  font-size: 13px;
  text-align: end;
}

#bonusCardContainer .btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

#bonusCardContainer a.bonusBtn {
  flex-basis: calc(45% - 5px);
}

#bonusCardContainer a.recenzija {
  flex-basis: calc(55% - 5px);
}

#bonusCardContainer .hero-btn {
  color: #fff;
  padding: 7px 4px;
  border: none;
  margin-right: 5px;
  background-color: #a35757;
  border-radius: 5px;
  cursor: pointer;
}

#bonusCardContainer a.hero-btn {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 12px;
}

.terms {
  font-size: 11px;
  color: #ccc0c0 !important;
  width: 100%;
  text-align: center;
  margin-bottom: 0 !important;
}

#loadMoreBtn {
  margin-top: 10px;
  padding: 4px 8px;
  cursor: pointer;
  margin: 0 auto;
  border: none;
  border-radius: 5px;
}

@media (max-width: 550px) {
  #bonusCardContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}