#subscriptions {
    min-height: 500px;
}

.spinner-overlay {
    opacity: 0.5;
    background: #000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 99999;
    display: none;
}

.spinner {
    position: absolute;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    height: 40px;
    width: 40px;
    margin: 0 auto;
    -webkit-animation: rotation .6s infinite linear;
    -moz-animation: rotation .6s infinite linear;
    -o-animation: rotation .6s infinite linear;
    animation: rotation .6s infinite linear;
    border-left: 6px solid rgba(0, 174, 239, .15);
    border-right: 6px solid rgba(0, 174, 239, .15);
    border-bottom: 6px solid rgba(0, 174, 239, .15);
    border-top: 6px solid #00A1CB;
    border-radius: 100%;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}

@-moz-keyframes rotation {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(359deg);
    }
}

@-o-keyframes rotation {
    from {
        -o-transform: rotate(0deg);
    }
    to {
        -o-transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

table.table td {
    text-transform: capitalize;
}

.stripe-infobox {
    padding-left: 0;

}

.stripe-infobox .input-group {
    background-color: lightgrey;
    border-radius: 5px;
    padding: 10px;
}

.stripe-infobox .input-group li {
    font-size: 18px;
    margin: 3px;
}

.stripe-alert-invoice {
    background-color: #fff0f1;
}

#use_saved_cc {
    height: 36px;
}

#card-element {
    border: 1px solid #ccc;
    padding: 2px;
}