.r9pop {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 99999;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: auto;
}

.r9pop .r9content {
    width: 70%;
    display: block;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    color: #555;
    padding: 2%;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.r9pop a.close {
    font-weight: normal;
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    border: 1px solid #a9a079;
    width: 40px;
    height: 14px;
    padding: 13px 0;
    line-height: 14px;
    font-size: 14px;
    text-align: center;
    margin-top: 2%;
    margin-bottom: 2%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    color: #a9a079;
    cursor: pointer;
}

.r9pop.popup {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.r9pop.popdown {
    visibility: hidden;
    opacity: 0;
}

.r9btn {
    cursor: pointer;
}

@media (max-width: 600px) {
    .r9pop .r9content {
        width: 88%;
        padding: 4%;
    }
}
