.logo_background {
    background: url(../logo.png) 10px 15px no-repeat #fbfbfb;
    padding: 15px 0px 15px 120px;
}

.bluepayment-loader-bg {
    display: none;
    width: 100%;
    height: 100%;
    margin: auto;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    background: #222;
    opacity: 0.3;
    filter: alpha(opacity=30); /* For IE8 and earlier */
}

div.payment-option > label > img {
    width: 70px;
}

.bluepayment-loader {
    display: none;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    animation: bluepayment_spin 1.5s linear infinite;
    margin: auto;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

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