#push-overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    display: block;
    z-index: 1100;
    right: 0;
    left: 0;
}
#push-overlay .overlay-bg {
    width: 100%;
    position: relative;
    margin: auto;
}
#push-overlay .overlay-modal {
    width: 500px;
    position: absolute;
    top: 160px;
    left: 220px;
}
#push-overlay .overlay-content-container {
    display: flex;
    padding: 10px;
    border: 1px solid white;
    border-radius: 20px;
    background: white;
}
#push-overlay .overlay-creative {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 10px 20px;
}
#push-overlay .overlay-creative-title {
    font-size: 24px;
    padding: 5px;
}
#push-overlay .overlay-creative-separator {
    height: 3px;
    width: 100px;
    margin: 10px 0 10px 10px;
}
#push-overlay .overlay-creative-message {
    font-size: 16px;
    padding: 5px;
}
#push-overlay .overlay-close-button {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}