File: //proc/thread-self/cwd/wp-content/plugins/wp-event-manager/assets/css/wpem-deactivation.css
/* Popup Overlay */
#wpem-deactivation-popup {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.5);
justify-content: center;
align-items: center;
z-index: 1000;
flex-direction: column;
box-sizing: border-box;
}
/* Popup Content */
.popup-content {
background: #ffffff;
border-radius: 8px;
padding: 20px;
width: 400px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
position: relative;
}
/* Close Button */
.close-popup-button {
position: absolute;
top: 10px;
right: 10px;
font-size: 18px;
border: none;
background: none;
cursor: pointer;
}
/* Heading & Subheading */
.popup-heading {
font-size: 20px;
font-weight: bold;
margin-bottom: 10px;
color: #333;
}
.popup-subheading {
font-size: 14px;
color: #666;
margin-bottom: 20px;
}
/* Radio Options */
.radio-options label {
display: block;
margin-bottom: 10px;
font-size: 14px;
color: #333;
}
.radio-options input {
margin-right: 10px;
}
/* Other Reason Box */
#other-reason-box textarea {
width: 100%;
height: 60px;
padding: 8px;
font-size: 14px;
border: 1px solid #ddd;
border-radius: 5px;
resize: none;
}
/* Buttons */
.popup-buttons {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
.btn-submit-deactivate,
.btn-skip-deactivate {
padding: 10px 15px;
font-size: 14px;
border: none;
border-radius: 5px;
cursor: pointer;
width: 48%;
}
.btn-submit-deactivate {
background: #5a67d8;
color: #ffffff;
}
.btn-submit-deactivate:hover {
background: #4c51bf;
}
.btn-skip-deactivate {
background: #e2e8f0;
color: #333;
}
.btn-skip-deactivate:hover {
background: #cbd5e0;
}
.deactivating-message {
font-size: 18px !important;
font-weight: bold !important;
text-align: center !important;
padding: 20px !important;
color: #0073aa !important;
}