﻿.reportstate_none, .reportstate_error, .reportstate_run, .reportstate_ready {
    margin-right: 20px;
}

.reportstate_none {
    color: #999999;
}

.reportstate_run {
    /* color: #daa520; */
}

.reportstate_run::before {
    content: url("./Images/Grid/spinner.gif");
    vertical-align: middle;
}

.reportstate_error, .reportstate_ready {
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
}

.reportstate_error {
    color: #ff0000;
}

.reportstate_ready {
    color: #32ab32;
}

.reportstate_signalNone {
    display: none;
}

.reportstate_signalHiddenReady, .reportstate_signalHiddenStarted, .reportstate_signalVisible {
    position: absolute;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -130px;
    margin-left: -160px;
    height: 80px;
    width: 200px;
    color: #000;
    background-color: #cccccc;
    padding: 10px;
    border: 3px solid #777;
    border-radius: 10px;
    background-clip: padding-box;
}

.reportstate_signalHiddenReady, .reportstate_signalHiddenStarted {
    opacity: 0;
    transition: opacity cubic-bezier(0, 1, 0.5, 1);
}

.reportstate_signalHiddenReady {
    transition-duration: 4s;
}

.reportstate_signalHiddenStarted {
    transition-duration: 2s;
}

.reportstate_signalHiddenReady:before,
.reportstate_signalHiddenReady:after,
.reportstate_signalHiddenStarted:before,
.reportstate_signalHiddenStarted:after,
.reportstate_signalVisible:before,
.reportstate_signalVisible:after {
    content: "\0020";
    display: block;
    position: absolute;
    top: 97px;
    left: 150px;
    z-index: 2;
    width: 0;
    height: 0;
    overflow: hidden;
    border: solid 20px transparent;
    border-bottom: 0;
    border-top-color: #cccccc;
}

.reportstate_signalHiddenReady:before,
.reportstate_signalHiddenStarted:before,
.reportstate_signalVisible:before {
    top: 101px;
    z-index: 1;
    border-top-color: #777;
}