.product-order-label {
    --dark-red: #c90000;
    --aqua-green: #00c9bd;

    line-height: 22.4px;

    &:not(.variant-light)::before {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        margin-right: 4px;
        position: relative;
        top: -1px;
    }

    &.BACKORDER::before {
        background-color: var(--dark-red);
    }

    &.BACKORDER {
        color: var(--dark-red);
    }

    &.PREORDER::before {
        background-color: var(--aqua-green);
    }

    &.PREORDER {
        color: var(--aqua-green);
    }

    &.variant-bold {
        font-family: "Futura Bold", sans-serif;
    }

    &.variant-light {
        font-family: "Futura Book", sans-serif;
    }

    &.multi-line::after {
        content: "";
        display: block;
    }
}
