.divizion-wholesale-prices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.divizion-wholesale-prices__row {
    padding: 0;
}

.divizion-wholesale-prices__name {
    margin-bottom: 2px;
    color: #777;
    font-size: 12px;
}

.divizion-wholesale-prices__value {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

@media (max-width: 600px) {
    .divizion-wholesale-prices {
        grid-template-columns: 1fr;
    }
}

.divizion-wholesale-prices__hint {
    margin-top: 3px;
    color: #777;
    font-size: 12px;
    line-height: 1.35;
}

.divizion-wholesale-inline-hint {
    margin-top: 4px;
    color: #777;
    font-size: 12px;
    line-height: 1.35;
}

.divizion-wholesale-basket-status {
    margin: 0 0 20px;
    padding: 16px 18px;
    border: 1px solid #ddd;
    border-left: 4px solid var(--theme-base-color, #e31e24);
    border-radius: 4px;
    background: #fff;
}

.divizion-wholesale-basket-status--changed {
    animation: divizion-wholesale-highlight 1.6s ease-out;
}

.divizion-wholesale-basket-status__title {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 700;
}

.divizion-wholesale-basket-status__text {
    color: #555;
    font-size: 14px;
    line-height: 1.45;
}

.divizion-wholesale-basket-status__progress {
    height: 6px;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 3px;
    background: #eee;
}

.divizion-wholesale-basket-status__progress-value {
    height: 100%;
    border-radius: inherit;
    background: var(--theme-base-color, #e31e24);
    transition: width .3s ease;
}

@keyframes divizion-wholesale-highlight {
    0% { background: #fff3cd; }
    100% { background: #fff; }
}
