#bonus-box-logo {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

#bonus-box-logo .bonus-box {
  width: 280px;
  display: flex;
  flex-direction: column;
  background-color: rgb(161 50 39 / 0%);
  text-align: center;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid grey;
  background-color: black;
}

#bonus-box-logo .bonus-box:last-child {
  margin-right: 0px;
}

#bonus-box-logo .bonus-title {
  font-size: 17px;
  color: white !important;
  margin-top: 7px;
  margin-bottom: 7px;
  text-transform: uppercase;
}

#bonus-box-logo .logo-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

#bonus-box-logo .logo-wrapper img {
  height: 70px !important;
}

#bonus-box-logo .star-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

#bonus-box-logo .star-wrapper p {
  color: #fdd835;
  margin-right: 5px;
  margin-bottom: 0;
  font-weight: bold;
}

#bonus-box-logo .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;
}

#bonus-box-logo .star-rating .star.active {
  background-color: #ffd700;
}

#bonus-box-logo .star-rating .star.active.half {
  background: linear-gradient(90deg, #ffd700 50%, #ccc 50%);
}

#bonus-box-logo .star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

#bonus-box-logo .bonus-box .bonus-text {
  color: white !important;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 10px;
}

#bonus-box-logo .bonus-box .bonus-text a {
  color: white !important;
}

#bonus-box-logo .bonus-box .cross-banner {
  background-color: rgb(255 255 255 / 50%);
  padding: 10px;
}

#bonus-box-logo .bonus-box .cross-banner .cross-banner-text {
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0 0.5rem;
  font-weight: 600;
  height: 70px;
  display: flex;
  align-items: center;
}

#bonus-box-logo .bonus-box .bottom-link-wrapper {
  padding: 20px;
  text-transform: uppercase;
}

#bonus-box-logo .bonus-box .bottom-link-wrapper a,
#bonus-box-logo .bonus-box .bottom-link-wrapper a:visited {
  display: block;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.8rem;
  text-decoration: none;
  border-radius: 4px;
}

#bonus-box-logo .bonus-box .bottom-link-wrapper a {
  color: #000;
  padding: 5px;
  font-weight: bold;
  line-height: inherit;
  font-size: 0.9rem;
  background-color: lightgreen;
}

#bonus-box-logo .bonus-box .bottom-link-wrapper a:last-child {
  margin-bottom: 0px;
}

#bonus-box-logo .review {
  margin-bottom: 5px;
  background-color: transparent !important;
  border: 2px solid white;
  color: white !important;
}

#bonus-box-logo .review:hover {
  background-color: white !important;
  color: black !important;
}

button.animate-pulse,
a.animate-pulse {
  animation: kf-animate-pulse 2s infinite;
}

@keyframes kf-animate-pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.90);
  }

  100% {
    transform: scale(1);
  }
}