.product-labels{
    position:absolute;
    z-index:1;
    display:flex;
    align-items:flex-start;
    flex-direction:column;
    flex-wrap:nowrap;
    max-width:50%;
    transition:opacity .3s ease
		
}
.product-label{
    min-width:50px;
    color:#fff;
    text-align:center;
    text-transform:uppercase;
    word-break:break-all;
    font-weight:600;
    line-height:1.2
	
}
.product-label:not(:last-child){
    margin-bottom:10px
}
.product-label.onsale{
    background-color:var(--wd-primary-color)
}
.product-label.featured{
    background-color:#E22D2D
}
.product-label.new{
    background-color:#438E44
}
.product-label.out-of-stock{
    background-color:var(--bgcolor-white);
    color:var(--color-gray-900)
}
.product-label.attribute-label:not(.label-with-img){
    background-color:var(--bgcolor-white);
    color:var(--color-gray-900)
}
@media (max-width: 576px){
    .product-label{
        min-width:40px
    }
    .product-label:not(:last-child){
        margin-bottom:5px
    }
}

