/*System*/

i line-height-12 {
    line-height: 1.2;
}

.card-header i {
    padding-right: 0.5em;
}

.card-header i,
button i {
    vertical-align: middle !important;
    padding-bottom: 0.2em;
}

.card-header h5 {
    display: inline;
    margin-bottom: 0;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 12em;
}

.footer p {
    margin: 0;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 3em;
    text-align: center;
}

.loader {
    border: 5px solid #e0e0e0;
    border-radius: 50%;
    border-top: 5px solid #337ab7;
    border-right: 5px solid #337ab7;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin: auto;
}

.loader-25 {
    width: 25px;
    height: 25px;
    border-width: 5px;
}

.loader-150 {
    width: 150px;
    height: 150px;
    border-width: 30px;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

;