label.pay-form-label {
    color: rgb(48,49,61);
}
input#email {
    appearance: none;
    border: solid 1px #e6e6e6;
    font-size: 1rem;
    color: rgb(48,49,61);
    padding: .75rem;
    width: 100%;
    margin: 0 0 .75rem;
    box-sizing: border-box;
}
form#payment-form input:disabled {
    background-color: #DDD;
    color: #666;
}

div#payment-element {
    margin: .5em 0;
}

.yd-payment-cont-price {
    font-size: 1.125em;
}
    .yd-price {
        font-weight: bold;
    }

#yd-app-restrictions {
    border: solid 1px #888;
    border-radius: 12px;
    padding: 1em;
}
    #yd-app-restrictions p:last-child {
        margin-bottom: 0;
    }

#yd-product-hdr-txt {
    margin: 1em 0 1.5em;
    background-color: #EEE;
    padding: 1em;
    border-radius: 12px;
    box-shadow: 1px 1px 3px rgba(0,0,0,.2);
}
    #yd-product-hdr-txt p {
        line-height: 1.25em;
    }
        #yd-product-hdr-txt p:first-child {
            margin-top: 0;
        }
        #yd-product-hdr-txt p:last-child {
            margin-bottom: 0;
        }

#pay-submit {
    margin-top: .75em;
}
    #pay-submit:hover {
        color: #FFF;
    }

/* LOADING OVERLAY */
#yd-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9998;
    background-color: rgba(200,200,200,.65);
    opacity: 1;
}
#yd-loading-indicator {
    position: fixed;
    top: 30%;
    left: 50%;
    /* width: 24vw; */
    width: 130px;
    transform: translateX(-50%) translateY(-50%);
    z-index: 9999;
}
    #yd-loading-indicator svg {
        width: 100%;
        height: auto;
    }

#error-message.error {
    color: #F00;
}