.bonusplus-basket-container {
    min-width: 250px;
    margin: 15px 10px;
    padding: 15px;
    border: 1px solid var(--site-color);
    border-radius: 5px;
    background: color-mix(in srgb, var(--site-color) 2.5%, transparent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.width-fixed {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: start;
}

.width-full {
    width: 100%;
}

.position-right {
    justify-content: end;
}

.position-center {
    justify-content: center;
}

.js-bonus-input-block {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.bonus-debit-btn {
    padding: 6px 15px;
    background: var(--site-color);
    color: var(--text-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 5px;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.bonus-debit-btn:hover{
    background-color: var(--site-color-hover);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.js-bonus-amount-input:focus {
    border-color: var(--site-color) !important;
    outline: none !important;
    box-shadow: 0 0 0 1px var(--site-color) !important;
}