html {
    font-size: 14px;
}
@media (min-width: 375px) {
    .xs-font {
        font-size: .8rem; 
    }
}

@media (min-width:576px) {
    .xs-font {
        font-size:1rem;
    }
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.card-background-header {
    background-color: blue;
    color: white;
    font-weight: bold;
}

.card-padding-header {
    padding-top: 4px;
    padding-bottom: 4px;
}

.blue-pill a,
.blue-pill a:hover,
.blue-pill .active {
    color: black;
}

.blue-pill .active {
    border-bottom: 10px solid #498AC7;
    border-radius: 6px;
}

.blue-pill .active-sm {
    border-bottom: 6px solid #498AC7;
    border-radius: 6px;
}

/*
.blue-pill .active a, 
.blue-pill .active a:hover {
    border-bottom:solid 3px blue;
    border-radius:6px;
    background-color:blue;
    color:white;


}
*/

.validation-summary-errors {
    margin: auto;
    width: 50%;
    border: 3px solid green;
    padding: 10px;
}

/* Don't show validation summary unless there are actual errors to display */
.validation-summary-valid {
    display: none;
}

.spinner {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: Black;
    filter: alpha(opacity = 60);
    opacity: 0.6;
    -moz-opacity: 0.8;
}

.center-div {
    width: 300px;
    height: 300px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -150px;
}

.inner-div {
    background-color: white;
    border-radius: 15px;
    margin: auto;
    padding: 2%;
    width: 150px;
}

.loader {
    margin: auto;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #15a0ec;
    border-bottom: 16px solid #15a0ec;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

thead {
    background-color: #498AC7;
    color: white;
}

.thead {
    background-color: #498AC7;
    color: white;

}

    thead tr {
        vertical-align: top;
    }

tfoot {
    background-color: #EBF6FF;
    color: black;
    font-weight: bold;
}

.tfooter {
    background-color: #EBF6FF !important;
    color: black;
    font-weight: bold;
}

    .tfooter td {
        background-color: #EBF6FF !important;
        text-align: right;
        margin-right: 8px;
    }

input[type=text], select, textarea {
    width: 380px;
}
.odometer-formatting-mark {
    vertical-align:bottom;
}