.bonusBlock {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
}

.bonusItem {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 7px;
    background: linear-gradient(90deg, var(--color-gradient-1-bonus-item) 0%, var(--color-gradient-2-bonus-item) 100%);
    padding: 0 10px;
    min-width: 42px;
    height: 30px;
    font-size: 14px;
    color: #FFF;
}

.bonusItem img {
    height: 100%;
}

.bonusItem:first-child img {
    max-width: 28px;
    max-height: 28px;
}
.bonusItem:nth-child(2) img {
    max-width: 12px;
    max-height: 25px;
}
.bonusItem:nth-child(3) img {
    max-width: 21px;
    max-height: 15px;
}
.bonusItem:nth-child(4) img {
    max-width: 25px;
    max-height: 21px;
}
.bonusItem:nth-child(5) img {
    max-width: 25px;
    max-height: 18px;
}
.bonusItem:nth-child(6) img {
    max-width: 21px;
    max-height: 21px;
}

@media (max-width: 768px) {
    .bonusItem {
        padding: 0 5px;
        min-width: 38px;
        font-size: 12px;
    }
}

@media (max-width: 468px) {
    .bonusBlock {
        justify-content: space-between;
    }
}

@container mainContent (min-width: 910px) {
    .bonusItem {
        min-width: 50px;
        height: 35px;
        font-size: 17px;
    }
}

@container mainContent (min-width: 1366px) {
    .bonusItem {
        min-width: 65px;
        height: 47px;
        font-size: 22px;
    }
}