.pl_orders_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 10000;
}
#pl_orders_form, #pl_orders_tnx {
    position: absolute;
    width: 400px;
    max-width: 100%;
    min-height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    -webkit-box-shadow: 5px 5px 15px 5px #000000; 
    box-shadow: 5px 5px 15px 5px #000000;
    z-index: 10001;
}
#pl_orders_form button {
    display: block;
    font-weight: bold;
    color: white;
    padding: 0.7em 1em;
    background: #4287f5;
    border: 1px solid white;
    border-radius: 7px;
    font-size: 1.25em;
    margin-top: 15px;
    width: 100%;
}
#pl_orders_form .close, #pl_orders_tnx .close {
    text-align: right;
}
#pl_orders_btn {
    display: inline-block;
    font-weight: bold;
    color: white;
    padding: 0.7em 1em;
    background: #4287f5;
    border: 1px solid white;
    border-radius: 7px;
    font-size: 1.25em;
}
#pl_orders_btn::hover {
    background: #2c6dd4;
}