.push-wrapper-div { 
    position: fixed; 
    display: flex;
    justify-content: center;
    top: 0; 
    left: 0; 
    bottom: 0;
    right: 0; 
    background: rgba(0,0,0,0.5); 
    z-index: 999999;
} 
    
.push-modal-div { 
    width: 450px; 
    height: 150px; 
    background: rgb(255, 255, 255); 
    border-radius: 3px; 
    position: relative; 
    box-sizing: border-box;
    padding: 20px;
    font-family: sans-serif;
} 
     
.push-logo {
    width: 70px;
    height: 70px;
}

.push-text {
    position: absolute;
    top: 30px;
    right: 20px;
    left: 110px;
    color: rgb(82, 82, 82);
}

.push-btn { 
    width: 110px; 
    height: 40px; 
    border-radius: 3px;
    position: absolute; 
    bottom: 15px; 
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.push-block-btn:hover {
    background: none;
}

.push-allow-btn:hover {
    background: rgb(22, 145, 252);
}

.push-allow-btn { 
    right: 20px; 
    color: white;
    background: rgb(22, 145, 252);
} 
      
.push-block-btn { 
    right: 140px;
    color: rgb(22, 145, 252);
    background: none;
}

.push-mobile-wrapper {
    display: none;
}

@media only screen and (max-width: 800px) {
    .push-wrapper-div {
        display: none;
    }

    .push-mobile-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 150px;
        background: rgb(255, 255, 255); 
        box-sizing: border-box;
        font-family: sans-serif;
        border-top: 2px solid #eee;
        z-index: 999999;
    }

    .mobile-modal-flex {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .push-text-mobile {
        margin: 0 10px;
        color: rgb(82, 82, 82);
    }

    .checkbox-margin {
        margin-left: 10px;
    }

    .push-btn { 
        width: 110px; 
        height: 40px; 
        border-radius: 3px;
        position: relative;
        bottom: 0;
        border: none;
        cursor: pointer;
    } 

    .push-allow-btn { 
        right: auto; 
        color: white;
        background: rgb(22, 145, 252);
    } 
          
    .push-block-btn { 
        right: auto;
        color: rgb(22, 145, 252);
        background: none;
    }

    .push-mobile-allow,
    .push-mobile-block {
        zoom: 0.8;
    }

    .mobile-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }
} 
