@charset "UTF-8";
/* CSS Document */
#webpush-confirm-dialog {
    display: none;
    position: absolute;
    background-color: white;
    /* width: 80%; */
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    margin-top: 150px;
    padding: 20px;
    text-align: center;
    border: 1px solid #aaa;
    box-shadow: 2px 2px 4px #888;
    z-index: 99;
}
#webpush-confirm-text {
    font-size: 13px;
    margin-top: 20px;
    margin-bottom: 15px;
    white-space: nowrap;
}
#btn-granted {
    font-size: 13px;
    color: White;
    margin: 10px;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: #1a5d9f;
}
#btn-denied {
    font-size: 13px;
    color: White;
    margin: 10px;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: #1a5d9f;
}

