/**
 * @file
 * CSS for counter and curtain overlay.
 */

.recurly-paywall-counter {
    padding: 12px 10px;
    position: fixed;
    bottom: 5%;
    left: 5%;
    height: 30px;
    color: #fff;
    background: gray;
    display: none;
    float: left;
}

.recurly-paywall-overlay {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    overflow-y: scroll;
    z-index: 99;
    width: 100%;
    background-color: #000;
}

.recurly-paywall-content {
    margin: 0 auto;
    padding: 10px;
    position: relative;
    width: 50%;
    max-width: 630px;
    text-align: left;
    background: white;
}

.recurly-paywall-close {
    padding: 5px 10px;
    position: absolute;
    top:0;
    right:0;
    z-index: 100;
    cursor: pointer;
    float: right;
}