﻿.spinner {
    border: 16px solid silver;
    border-top: 16px solid #337AB7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 700ms linear infinite;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    position: fixed;
    z-index: 9;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.LabelFont {
    font-family: 'Century Gothic';
    font-size: medium;
    font-weight: bold;
    color: #002E61;
}

.valueLabel {
    font-family: 'Century Gothic';
    font-size: medium;
    color: dimgrey;
}

.rz-dialog-titlebar {
    background-color: lightsteelblue !important;
}

.sidebar .collapse {
    display: block;
}

.footer {
    border-top: solid thin;
    border-top-color: #002E61;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: white;
    color: #002E61;
    text-align: right;
}
