/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 15 2025 | 20:37:06 */
/* Success Message Styling */
#refined-crp-success-display {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#refined-crp-success-display.show {
    opacity: 1;
}

.refined-crp-animated {
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.refined-crp-success-content {
    text-align: center;
    padding: 2rem;
    max-width: 90%;
    width: 30rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s;
}

.refined-crp-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.refined-crp-checkmark {
    width: 100%;
    height: 100%;
}

.refined-crp-checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4BB543;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.refined-crp-checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke: #4BB543;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.refined-crp-success-title {
    color: #333;
    font-size: 1.8rem;
    margin: 0.5rem 0 1rem;
    font-weight: 600;
}

.refined-crp-success-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.refined-crp-success-message-container {
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.refined-crp-close-success-btn {
    padding: 0.8rem 2rem;
    background-color: #4BB543;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 12px rgba(75, 181, 67, 0.2);
}

.refined-crp-close-success-btn:hover {
    background-color: #3d9537;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(75, 181, 67, 0.25);
}

.refined-crp-close-success-btn:active {
    transform: translateY(0);
}

/* Add pulse effect to draw attention */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(75, 181, 67, 0.3);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(75, 181, 67, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(75, 181, 67, 0);
    }
}

.refined-crp-close-success-btn {
    animation: pulse 2s infinite;
}

.refined-crp-close-success-btn:hover {
    animation: none;
}
