/* BASIC css start */
.sold_out_label {
    position: relative; 
}

.sold_out_label:after {
    content: "Sold Out"; 
    z-index: 1;
    display: block;
    position: absolute;
    top: 200px;      
    left: 49.5%;
    width: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(-15deg);
    padding: 0.70em 2%;
    color: #FF0038;
    font-size: 2em;
    text-align: center;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 40px;
    border: 1px solid #FF0038;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.20);
}
/* BASIC css end */

