/**
 * WooCommerce Delisted Products Styles
 */

/* The Delisted Badge on Archive/Loop pages */
.badge-delisted {
    display: inline-block;
    background-color: #d9534f; /* Red */
    color: #ffffff;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Product Page Notice */
.delisted-notice-box {
    border-left: 5px solid #ff5252;
    background-color: #fff3cd;
    font-size: 20px;
    line-height: 1.5;
    position: absolute;
    top:33%;
    z-index: 100;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 15px;
}

.delisted-notice-box a {
    font-weight: bold;
    text-decoration: underline;
}