.pyfr-loader {
    margin: 2em auto;
    border: .5rem solid #EAF0F6;
    border-radius: 50%;
    border-top: .5rem solid rgba(126, 197, 248, .9);
    width: 10rem;
    height: 10rem;
    animation: spinner 1s linear infinite
}

@-webkit-keyframes spinner {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

@keyframes spinner {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

.pyfr-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(126, 197, 248, .5)
}

.payment-options img {
    max-width: 30px;
    float: left;
    margin-right: 0.5em;
}