﻿body {
}

@keyframes spinner {
    to {
        transform: rotate(3600deg);
    }
}

.loading {
    position: absolute;
    top: 50%;
    left: 52%;
    z-index: 5;
    width: 6rem;
    height: 6rem;
    border: 3px solid #ccc;
    border-radius: 50%;
    border-top-color: green;
    animation: spinner 5s linear infinite;
    margin: 3rem auto;
}

#transp {
    position: absolute;
    background: rgba(250,250,250,0.8);
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 4;
}

.dataTables_filter {
    width: 75%;
    float: right;
    text-align: right;
}
