﻿/*********************** Start of Sticky Footer *****************************/
html, body {
    height: 100%;
    margin: 0;
}

.content {
    /*padding: 20px;*/
    min-height: 100%;
    margin: 0 auto -50px;
    background-color: #fafafb
}

.footer,
.push {
    height: 50px;
}

footer {
    background-color: #303136;
    font-size: 9pt;
    line-height: 50px;
    text-align: center;
    color: #d4d4d4;
    position: absolute;
    width: 100%;
}
/*********************** End of Sticky Footer *****************************/


/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column */
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
select,
textarea {
    max-width: 280px;
}

.card-container {
    width: 300px;
    text-align: center;
    margin: 0 auto;
    padding: 24px;
    border-radius: 5px;
    background-color: #FFF;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05), 0 20px 48px rgba(0,0,0,0.05), 0 1px 4px rgba(0,0,0,0.1);
}

.form-control-margin {
    margin-top: 5px;
    margin-bottom: 15px;
    width: 100%;
}

.err-msg {
    color: red;
}

.login-partial-bg,
.menu-partial-bg {
    background-color: #fafafb;
}

.clarity-green {
    background-color: #71b84c;
}

.read-only-span {
    background-color: #eee !important;
    color: #888 !important;
    text-align: left;
}

.font-sm {
    font-size: 12px;
}



/*Loading spinner ------------------------------------------------------------
    /* Start by setting display:none to make this hidden.
        Then we position it in relation to the viewport window
        with position:fixed. Width, height, top and left speak
        for themselves. Background we set to 80% white with
        our animation centered, and no-repeating */
.loading-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba( 255, 255, 255, .6 );
}
/* When the body has the loading-spinner class, we turn
           the scrollbar off with overflow:hidden */
body.loading-spinner .loading-modal {
    overflow: hidden;
}

/* Anytime the body has the loading-spinner class, our
        loading-modal element will be visible */
body.loading-spinner .loading-modal {
    display: block;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}
/*Actual spinner*/
.spinner:before {
    z-index: 2000;
    content: '';
    box-sizing: border-box;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #015d99;
    border-bottom-color: #015d99;
    animation: spinner .8s ease infinite;
}

.loading-overlay {
    background: rgba( 255, 255, 255, .6 );
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/*Info Button*/
.btn-popup-info {
    float: right;
    border-radius: 50% !important;
    height: 30px;
    width: 30px;
}