<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* wpvp-popup CSS */
.wpvp-popup {
    z-index: 9999;
    width:100%;
    height:100%;
    display:none;
    position:fixed;
    top:0px;
    left:0px;
    /* background:rgba(0,0,0,0.75);*/
}
.wpvp-popup:before {
    content: "";
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.84);
}
.popup-inner {
    max-width: 600px;
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 3px solid #000;
    border-radius: 5px;
}

.wpvp-popup .popup-inner {
    max-width: 400px;
    border: 6px solid rgba(0, 0, 0, 0.65);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.43);
}
.wpvp-popup .popup-content {
    padding: 20px;
}
.wpvp-popup td {
    padding: 0px;
    margin: 0px;
    vertical-align: super;
}
.wpvp-popup label {
    font-weight: 600;
}
.wpvp-popup select, .wpvp-popup input {
    padding: 0px 5px 0px 5px;
    margin-bottom: 12px;
    border-radius: 2px;
    border: 1px solid #c3c3c3;
    width: 100%;
}
.wpvp-popup .single_variation_wrap {
    text-align: right;
}
.wpvp-popup .quantity {
    display: inline-block;
    width: 31%;
    margin-right: 10px;
}
.wpvp-popup .single_add_to_cart_button {
    padding: 7px 15px;
    border-radius: 3px;
    background: #000;
    border: none;
    font-weight: 700;
    color: #fff;
}

.wpvp-popup .product-title{
    font-size: 30px;
    font-weight: 700;
    color: #000;
}

.wpvp-popup .price{
    font-size: 17px;
}

.wpvp-popup .product-title-price {
    margin-bottom: 10px; 
}

.wpvp-popup-close {
    position: absolute;
    right: -13px;
    top: -16px;
    background: #595959;
    width: 24px;
    height: 25px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: -1px;
}</pre></body></html>