.apb-container {
    width: 100%;
    margin: 30px auto;
    text-align: left;
}

.apb-all-bars .apb-container:last-child {
    margin-bottom: 0;
}

.apb-title {
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}

.apb-main-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.apb-progress-wrapper {
    position: relative;
    width: 100%;
    padding: 6px;
    border-radius: 6px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
    overflow: hidden;
}

.apb-progress-bar {
    width: 0;
    border-radius: 4px;
    transition-property: width, background-color;
    box-sizing: border-box;
}

.apb-striped {
    background-image: linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.18) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.18) 50%,
        rgba(255, 255, 255, 0.18) 75%,
        transparent 75%,
        transparent
    );
    background-size: 18px 18px;
    animation: apbStripeMove 1s linear infinite;
}

.apb-bar-with-inside-value {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    min-width: 0;
}

.apb-inside-value {
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

.apb-value {
    margin-top: 8px;
    text-align: right;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
}

.apb-value-inline {
    margin-top: 0;
    text-align: left;
    white-space: nowrap;
    min-width: max-content;
}

.apb-inline-layout .apb-progress-wrapper {
    flex: 1 1 auto;
}

@keyframes apbStripeMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 18px 0;
    }
}
