/* Outer */
.sarw-popup {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
  /*  background: rgba(256,256,256, 1);*/
    font-weight: 400;
    overflow: hidden;
    color:#fff;
    overflow-y: auto;
}
.sarw-popup { z-index:99999999 !important; background: #C83E4B !important; color:#fff;}
.sarw-popup h2 {
    color: white;
    font-size:17px;
    margin:90px 0px 0px 0px;
}

/* Inner */
.sarw-popup .popup-inner {
    max-width: 700px;
    width: 100%;
    padding: 40px;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    text-align: center;
    color: black;
}

.sarw-enter,
.sarw-exit {
    min-height: 40px;
    padding: 0 15px;
    line-height: 1.6em;
    font-size: 16px;
    border-radius: 0px;
    padding: 11px 15px;
    color: #fff;
    background: #C83E4B;
    border: 1px solid #fff;
    margin: 10px;
    
}

.sarw-enter:hover,
.sarw-exit:hover {
    text-decoration:none;
    color:#fff;
    background:#a83b4b;
    border-radius:0px;
}

/* Responsive Styles */
@media screen and (min-width: 750px) {
    
    /* Inner */
    .sarw-popup .popup-inner {
        width: 90%;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    
}