.in-stock {
    background-color: rgba(51,122,183,0.4);
    border-radius: 8px;    
    font: bold 12px Sans-Serif;
    color: black;
    text-align: center;
    position: relative;
    padding: 2px 0;
    right: -5px;
    top: 5px;
    width: 58px;
    cursor: default;
    z-index: 99;
}

.out-of-stock {
    background-color: rgba(201,48,44,0.4);
    border-radius: 8px;    
    font: bold 12px Sans-Serif;
    color: black;
    text-align: center;
    position: relative;
    padding: 2px 0;
    right: -5px;
    top: 5px;
    width: 80px;
    cursor: default;
    z-index: 99;
}

.qty-text {
    text-align: right;
}