#simple-monitor-protected-banner{
    position: fixed;
    top: 0;
    background-color: rgba(123, 193, 68, 0.8);
    width: 100%;
    text-align: center;
    padding: 3px;
    z-index: 99999;
    /* animation: slideOut 6s linear; */
    transform: translateY(-100%);
}

@keyframes slideOut {
    0% {
        transform: translateY(0);
    }
    95%{
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}