*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#bonus-box-recommended a {
    text-decoration: none;
}

/* CONTAINER */

#bonus-box-recommended {
    display: flex;
    flex-direction: column;
    margin:20px!important;
    gap:10px;
}

/* CARD */

#bonus-box-recommended .bbr-card {
    width: 90%;
    margin: 0 30px;
    border: 1px solid grey;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 10px;
    background:transparent!important;
    align-self: center;
}

/* CONTENT STACKED */

#bonus-box-recommended .bbr-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.bbr-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* LOGO */

#bonus-box-recommended .bbr-logo img {
    width: 120px;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* RATING */

#bonus-box-recommended .bbr-rating {
    display: flex;
    justify-content: center;
    gap: 3px;
}

#bonus-box-recommended .bbr-star {
    --star-size: 20px;
    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%
    );
}

/* BONUS */

#bonus-box-recommended .bbr-bonus {
    width: 100%;
}

#bonus-box-recommended .bbr-bonus-title {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 7px;
}

#bonus-box-recommended .bbr-bonus-offer {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
}

/* REVIEW */

#bonus-box-recommended .bbr-review {
    width: 100%;
}

#bonus-box-recommended .bbr-review-link {
    color: rgb(11, 127, 244);
}

/* BUTTON */

#bonus-box-recommended .bbr-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

#bonus-box-recommended .bbr-button {
    display: block;
    border-radius: 20px;
    padding: 6px;
    width: 150px;
    background-color: rgb(10, 177, 10);
    color: white;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
}

#bonus-box-recommended .bbr-button:hover {
    background-color: #7dd47d;
}

/* TERMS */

#bonus-box-recommended .bbr-terms {
    font-size: 8px;
    margin-top: 5px;
}

/* DESKTOP */

@media (min-width: 768px) {

#bonus-box-recommended {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

#bonus-box-recommended .bbr-card {
    width: 300px;
}

}