#pushbanner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 999;
}

#pushbanner .pushbanner-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 640px;
    height: 276px;
    margin-left: -345px;
    margin-top: -138px;
    padding: 40px 0 0 50px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}

#pushbanner .logo-out {
    position: absolute;
    z-index: 0;
    top: -55px;
    right: -160px;
    width: 433px;
    height: 433px;
    border-radius: 50%;
    background: #94c971;
    background: -moz-linear-gradient(top,  #94c971 0%, #5fae39 100%);
    background: -webkit-linear-gradient(top,  #94c971 0%,#5fae39 100%);
    background: linear-gradient(to bottom,  #94c971 0%,#5fae39 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#94c971', endColorstr='#5fae39',GradientType=0 );
}
#pushbanner .logo-out .logo-in {
    position: absolute;
    top: 120px;
    left: 120px;
    width: 193px;
    height: 193px;
    border-radius: 50%;
    background: #fff;
}

#pushbanner .close {
    display: block;
    opacity: 0.8;
    position: absolute;
    top: 15px;
    right: 25px;
    font: 300 14px/18px "Open Sans",sans-serif;
    color: #fff;
    border-bottom: 1px dotted #fff;
    margin-right: 20px;
    z-index: 2;
    text-decoration: none;
    cursor: pointer;
}
#pushbanner .close:after {
    position: absolute;
    top: 0px;
    right: -26px;
    content: "×";
    font-size: 30px;
    color: #FFF;
    font-weight: 100;
    opacity: 0.9;
}
#pushbanner .close:hover {
    opacity: 1;
}

#pushbanner h3 {
    position: relative;
    z-index: 1;
    font: 40px/36px "Open Sans",sans-serif;
    margin: 0 0 20px;
}
#pushbanner p {
    position: relative;
    z-index: 1;
    font: 300 20px/24px "Open Sans",sans-serif;
    margin-bottom: 20px;
}
#pushbanner button {
    position: relative;
    z-index: 1;
    transition: all  0.3s;
    background-color: #76c36e;
    border: none;
    border-radius: 3px;
    color: #fff;
    font: 600 16px/16px "Open Sans",sans-serif;
    padding: 12px 30px;
    cursor: pointer;
}
#pushbanner button:hover {
    transition-duration: 0s;
    background-color: #000;
    color: #fff;
}

@media only screen and (max-width:700px) {
    #pushbanner .pushbanner-modal {
        width: 80%;
        margin-left: -45%;
    }
}

@media only screen and (max-width:360px) {
    #pushbanner .pushbanner-modal {
        width: 320px;
        margin-left: -160px;
        padding: 40px 0 0;
        text-align: center;
    }
}