.row {margin-right: 0;
    margin-left: 0;
}

/* Grid tables */
.gridTable {
    table-layout: fixed;
}

.gridTable .r td,
.gridTable th {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.r:hover {
    cursor: pointer;
}

.bg-white {background-color: #FFFFFF;}

.bg-yellow {background-color: #FFDD00;}

#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color: #fff;
    z-index: 99;
    text-align: center;
    display:none;
}

#loading-image {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
}

.opacity-0 {
    opacity: 0 !important;
}

.opacity-1 {
    opacity: 0.2 !important;
}

.opacity-2 {
    opacity: 0.4 !important;
}

.opacity-3 {
    opacity: 0.6 !important;
}

.opacity-4 {
    opacity: .8 !important;
}

.opacity-5 {
    opacity: 1 !important;
}

.spin {
    animation: rotation 2s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.navbar-brand img {
    height: 60px;
    top: -12px;
    position: relative;
}