﻿@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loadingGif {
    position: fixed;
    top: 26%;
    visibility: hidden;
    animation: 3s rotate linear infinite;
    z-index: 11000;
}

th {
    position: sticky !important;
    top: 0;
    background-color: white;
}
