/* Login price text */
body.woocommerce-order-received .woocommerce-order ul.wc-item-meta li {
    display: flex;
    gap: 0 5px;
    font-size: 14px;
}
body.is-wholesale-site div#customer_login > div:first-child {
    max-width: 100%;
    flex: 0 0 100%;
}
body.is-wholesale-site div#customer_login > div:nth-child(2) {
    display: none;
}

body.is-wholesale-site .disabled.wc-variation-is-unavailable span,
body.is-wholesale-site .disabled.wc-variation-is-unavailable div{
	display:none!important;
}

body.is-wholesale-site.cw-wholesale-guest .initail-price{display:none!important;}



/* hide newsletter popup */
body.is-wholesale-site .needsclick {
    display: none;
}
/* hide newsletter popup end*/



/* Nuclear option: hide any leftover price HTML */

.cw-wholesale-guest .woocommerce-Price-amount {
    display: none !important;
}

.cw-login-price {
    display: inline-block;
    font-weight: 600;
    color: #ab7a6b;
    text-decoration: none;
	position:relative;
}

.cw-login-price::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ab7a6b;
    -webkit-transition: 350ms ease;
    transition: 350ms ease;
}
.cw-login-price:hover::after { 
    width: 100%;
}

.filter-search .cw-login-price{color:#fff;}
.cw-login-price:hover {
    color: #ab7a6b;
    text-decoration: none;
}



/* Login button instead of add to cart */
.woocommerce a.button {
    background: #222;
    color: #fff;
}

.woocommerce a.button:hover {
    background: #000;
}

a.cw-login-price {
    flex: 1 0 auto;
    text-align: right;
}

/*
body.is-wholesale-site.cw-wholesale-guest .price-box span {
    display: none;
}

body.is-wholesale-site.cw-wholesale-guest .price-box:after {
    content: "Login to see price";
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

body.is-wholesale-site.cw-wholesale-guest .category-basic-listing__body-products .price-box:after
{color:#ab7a6b;}
*/

#cw-popup-overlay {
        position: fixed;
        top:0; left:0;
        width:100%; height:100%;
        background: rgba(0,0,0,0.6);
        display:flex;
        align-items:center;
        justify-content:center;
        z-index:99999;
    }

    #cw-popup-box h2 { margin-top:0; }
    #cw-popup-box button {
        margin-top:20px;
        padding:10px 20px;
        cursor:pointer;
    }

#cw-popup-box {
    background: #fff;
    padding: 0 0 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
}
#cw-popup-box h2 {
    text-align: center;
    width: 100%;
    font-size: 22px;
    font-weight: 600;
    line-height: 55px;
    background: #efe0d0;
    color: #ab7a6b;
}

#cw-popup-box p {
    font-size: 19px;
    text-align: center;
    padding:10px 20px 0;
	line-height: 30px;
}


#cw-popup-box button {
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    background-color: #ab7a6b;
    color: #fff;
    padding: 15px 20px!important;
    min-width: 190px;
    -webkit-transition: 350ms ease;
    transition: 350ms ease;
    line-height: 1;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border: 1px solid #ab7a6b;
    outline: none;
    margin: 20px 5px 0px 5px;
}