#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 {
    position: absolute;
    top: 0;
    left: 0;
    right: 30%;
}
#push-overlay .overlay-content-container {
    display: flex;
    padding: 10px;
    border: 1px solid white;
    border-radius: 0;
    background: white;
}
#push-overlay .overlay-creative {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-left: 45%;
}
#push-overlay .overlay-creative-title {
    font-size: 24px;
    padding: 5px;
}
#push-overlay .overlay-creative-message {
    font-size: 16px;
    padding: 5px;
}
#push-overlay .overlay-arrow {
    position: absolute;
    top: 48px;
    left: 318px;
}
#push-overlay .overlay-arrow img {
    opacity: 0;
}
#push-overlay .overlay-close-button {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}
@media screen and (min-width: 721px) and (max-width: 1366px){
    #push-overlay .overlay-arrow {
        top: 45%;
    }
    #push-overlay .overlay-content-container {
        height: 200px;
    }
    #push-overlay .overlay-arrow-alt {
        left: 37% !important;
    }
}
@media screen and (min-width: 1367px) and (max-width: 1920px) {
    #push-overlay .overlay-arrow {
        top: 30%;
    }
    #push-overlay .overlay-content-container {
        height: 150px;
    }
    #push-overlay .overlay-arrow-alt {
        left: 27% !important;
    }
}