   
    .f-popup-spam {
        background-color: #c1c1c186;
        position: fixed;
        top: 0;
        width: 100%;
        left: 0;
        height: 100%;
        display: flex;
        place-items: center;
        justify-content: center;
        z-index: 999999999999;
        display: none !important;
    }
    
    .f-popup-spam .f-module-content {
        max-width: 38rem;
        position: relative;
    }
    
    .f-popup-spam .f-module-content .close-btn {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 3;
        a {
            font-size: 1.5rem;
            color: #9f0505;
            padding: 0.5rem;
        }
    }
    
    .f-popup-spam .f-module-content .popup {
        background-color: white;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        border-radius: 1rem;
        overflow: hidden;
        animation-name: pop-spam;
        animation-duration: 3s;
        animation-iteration-count: infinite;
    }
    
    @keyframes pop-spam {
        0% {
            scale: 1;
        }
        80% {
            scale: 1;
        }
        88% {
            scale: 1.05;
        }
        93% {
            scale: 0.975;
        }
        96% {
            scale: 1.025;
        }
        98% {
            scale: 0.9875;
        }
        100% {
            scale: 1;
        }
    }
    
    .f-popup-spam .f-module-content .img {
        background-color: #9f0505;
        text-align: center;
        display: grid;
        padding: 2rem 1rem;
        display: none;
        img {
            width: 6rem;
        }
    }
    
    .f-popup-spam .f-module-content .text {
        padding: 2rem;
        text-align: center;
    }
    
    .f-popup-spam .f-module-content .text h3 {
        color: #9f0505;
        font-weight: 700;
        font-size: 2rem;
        margin: 0.5rem 0;
    }
    .f-popup-spam .f-module-content .text p{margin: 0.5rem 0;}
    .f-popup-spam .f-module-content .text .spam-mail {
        color: #9f0505;
    }
