.product-stock {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 7px;
    justify-content: center;

    font-size: 13px;
    line-height: 1.35;
}

.product-stock__dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
}

.product-stock__label {
    font-weight: 500;
}

.product-stock__quantity {
    font-weight: 600;
}

.product-stock--available {
    color: #27813b;
}

.product-stock--available .product-stock__dot {
    background: #2f9e44;
}

.product-stock--order {
    color: #9a6800;
}

.product-stock--order .product-stock__dot {
    background: #e2a100;
}

.product-stock--unknown {
    color: #777;
}

.product-stock--unknown .product-stock__dot {
    background: #a2a2a2;
}

.product-stock {
    cursor: help;
}

.product-availability,
.ppa-mobile-product-actions__availability {
    cursor: help;
}

.product-availability__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 2px;
}

.product-availability__main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.product-availability__updated {
    color: #929292;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
}
