#magical-popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        z-index: -9999;
        opacity: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(0,0,0,0.4);
        cursor: pointer;
    }
    
    #magical-popup-overlay.active {
        z-index: 9999;
        opacity: 1;
    }
    
    #magical-popup-container {
        position: fixed;
        width: 60%;
        max-width: 551px;
        min-height: 100px;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 10px 10px 60px #555;
    	z-index: 10;
    }
    
    #magical-popup-close {
        position: absolute;
        top: 160px;
        right: 200px;
        z-index: 9999;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgb(255, 0, 0);
        border: 2px solid rgb(153, 153, 153);
        border-radius: 50%;
        cursor: pointer;
        font-weight: bold;
        font-size: 25px;
        color: rgb(255, 255, 255);
                
    }
    
    #magical-popup-close:hover  {
        top: 185px;
        right: 225px;
    }
    
    /* MEDIA QUERIES */
    /* 768px */
    @media screen and (max-width: 768px) {
        #magical-popup-overlay {
            pointer-events: none;
        }
        .adsbygoogle {
            pointer-events: auto;
        }
        #magical-popup-container {
            width: 100%;
        }
    
        #magical-popup-close {
            top: 60px;
            right: 175px;
        }
    
        #magical-popup-close:hover {
            top: 85px;
            right: 200px;
        }
    
        #magical-popup-close.active {
            top: 85px;
            right: 200px;
        }
    }