<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* PRODUCT POPUP STYLES */

.popup-overlay, .popup-overlay2 {
    position:fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: opacity 500ms;
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 999999;
}

.popup-overlay:target, .popup-overlay2:target {
    visibility: visible;
    opacity: 1;
    z-index: 999999;
}

.product-popup {
    color: #333;
    max-height: 90%;
    text-align: left;
    margin: 0 auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius:.375em;
    padding: 2em;
    background: #ffffff;
    max-width: 800px;
    width: 90%;
    position: relative;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    overflow: auto;
    z-index: 99999999;
}

.product-popup .popup-close {
    position: absolute;
    top: 20px;
    right: 30px;
    -webkit-transition: all 200ms;
    transition: all 200ms;
    font-size: 2em;
    text-decoration: none;
    color: #333;
}

.popup-close2 {
   position:fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
}

.product-popup .popup-close:hover {
    color: #8f1502;
}
</pre></body></html>