#plc-popup-overlay {
    position: fixed;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
#plc-popup-box {
    background: white;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    border-radius: 8px;
    text-align: center;
    position: relative;
	color: black;
}

#plc-popup-box h2 {
	margin-top: 32px;
	color: black;
	line-height: 1.1;
}


#plc-popup-box p {
	margin-bottom: 0px;
}


#plc-popup-box p {
	margin-top: 0px;
}



#plc-popup-close {
	display: flex;
	align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px; right: 10px;
	width: 40px;
	height: 40px;
	border-radius:100px;
    cursor: pointer;
    font-size: 20px;
    border: none;
    background: transparent;
}
#plc-popup-box input[type="email"] {
    width: 100%; padding: 8px; margin: 10px 0;
}
#plc-popup-box button {
    padding: 10px 20px;
    background: #0066b3;
    color: white;
    border: none;
    cursor: pointer;
}
