/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 11 2025 | 04:25:12 */
/* Modern floating toast replacing the plugin's alert box */
.msgmsg-box-wpcp {
all: unset !important;
position: fixed !important;
left: 50% !important;
top: 50% !important;
transform: translate(-50%, 10px) !important;
display: flex !important;
align-items: center !important;
justify-content: flex-start !important;
gap: 12px !important;
padding: 14px 20px !important;
background: rgba(15, 15, 20, 0.75) !important;
backdrop-filter: blur(10px) saturate(160%) !important;
-webkit-backdrop-filter: blur(10px) saturate(160%) !important;
color: #fff !important;
font-size: 14px !important;
border-radius: 14px !important;
border: 1px solid rgba(255, 255, 255, 0.12) !important;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4) !important;
pointer-events: none !important;
z-index: 99999 !important;
transition:
opacity 0.4s ease,
transform 0.4s ease,
visibility 0.4s ease !important;
width: auto !important;
}

/* Icon */
.msgmsg-box-wpcp::before {
display: none !important;
flex: 0 0 36px !important;
border-radius: 8px !important;
}

/* Text highlight */
.msgmsg-box-wpcp span {
font-weight: 600 !important;
margin-right: 4px !important;
color: #ff9f7c !important;
white-space: nowrap !important;
}

/* Responsive tweak */
@media (max-width: 500px) {
.msgmsg-box-wpcp.warning-wpcp {
padding: 12px 16px !important;
width: auto !important;
}
}

.hideme {
opacity: 0 !important;
visibility: hidden !important;
}