/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 16 2026 | 10:29:53 */
.custom-copy-notice {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #946fc2;
    color: #fff;
    padding: 16px 41px;
    border-radius: 100px;
    font-size: 15px;
	font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
	width: max-content;
    max-width: 90%;
}

.custom-copy-notice.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}