<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* The Modal (background) */
.po-modal {
    position: fixed; /* Stay in place */
    z-index: 999999999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.po-modal-content {
    box-sizing:border-box;
    position:relative;
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 400px; 
}

@media (max-width:480px) {
    .po-modal-content {
        width:100%;
    }

    .save-purchase-order-w3 {
        margin:20px;
    }
}

/* The Close Button */
.po-close {
    position:absolute;
    top:8px;
    right:8px;
    color: #aaa;
    font-size: 26px;
    line-height:12px;
    font-weight: bold;
}

.po-close:hover,
.po-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.po-input {
    box-sizing:border-box;
    display:block;
    border:1px solid #aaa;
    width: 100%;
    padding: 10px 18px;
    border-radius: 2px;
    font-size: 16px;
    height:auto;
    margin-bottom:10px;
}

#po-submit {
    margin-top:8px;
    background-color:#000;
    display:block;
    width:100%;
    color:#fff;
    border:0px;
    padding:10px 18px;
}

#po-submit:hover {
    background-color:#444;
    cursor:pointer;

}

#po-submit.loading {
    line-height:1;
}

#po-submit.loading span {
    background-image:url('https://purchaseorders.w3apps.co/images/loading2.gif');

    display: inline-block;
    width: 32px;
    height: 32px;
    overflow: hidden;
    color: transparent
}

.po-error-list {
    border-radius: 8px;
    padding: 8px;
    font-size: 12px;
    background-color: #fddcdc;
    color: #940000;
    margin-bottom: 10px;
}

.save-purchase-order-w3 {
    background-image:url('https://purchaseorders.w3apps.co/images/po-icon.png');
    background-repeat:no-repeat;
    background-position-y:center;
    display: inline-block;
    padding: 8px 10px;
    padding-left:35px;
    background-color: #000;
    color: #fff;
    text-decoration:none;
}

.save-purchase-order-w3:hover, .save-purchase-order-w3:active, .save-purchase-order-w3:visited {
    background-color:#444;
    color:#fff;
}

.po-desktop-full {
    width: 100% !important;
    margin-left: 0px !important;
    background-position-x: calc(50% - 50px);
    text-align: center;
}

@media (max-width:767px) {
    .po-mobile-full {
        width: 100% !important;
        margin-left: 0px !important;
        margin-top:15px;
        background-position-x: calc(50% - 50px);
        text-align: center;
    }
}</pre></body></html>