.spinner {
    border: 16px solid silver;
    border-top: 16px solid #00cc00;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 700ms linear infinite;
    top: 40%;
    left: 55%;
    position: absolute;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}


/* Write your CSS */




img {
    max-width: 100%;
}

.issue-status {
    display: inline-block;
    vertical-align: middle;
    width: 35px;
    height: 16px;
}



td.e-rowcell .statustxt.e-activecolor {
    color: #00cc00;
    position: relative;
    top: 9px;
}

td.e-rowcell .statustxt.e-inactivecolor {
    color: #e60000;
    position: relative;
    top: 9px;
}

.statustemp.e-inactivecolor {
    background-color: #ffd7cc;
    width: 200px;
}

.statustemp.e-activecolor {
    background-color: #ccffcc;
    width: 200px;
}

.statustxt.e-activecolor {
    color: #00cc00;
}

.statustxt.e-inactivecolor {
    color: #e60000;
}

.statustemp {
    position: relative;
    height: 24px;
    border-radius: 5px;
    text-align: center
}
