#crp-checkout-form input, #crp-checkout-form select{
    padding: 10px;
    border: 1px solid #ccc;
    width:100%;
}
#crp-checkout-form span.title-plan{
    font-size: 16px;
    font-weight: 700;
    color: #415161;
    text-transform: uppercase;
    margin-top: 10px;
}
form#crp-checkout-form {
    padding: 15px 0px;
}
p.accept-bid-promo-discount {
    margin-top: 15px !important;
    display: flex;
    align-content: center;
    justify-content: space-between;
display:none;
}

p.accept-bid-promo-discount  span.amount {
    font-weight: 700;
    float: right;
}
input#crp-promo-code {
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    border: solid 1px #b6afaf;
}
.credit-recharge {
    display: none !important;
}
.withdraw-account-table > :first-child {
    display: none;
}
span.spin-loader {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: #f7fbfbbd;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #24bdbc;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 