
/* Orange strip */
.orange-strip { background:#ff6600; color:#fff; text-align:center; padding:14px 0; font-size:35px; font-weight:bold; }
/* Green Urgent Hiring */
.green-strip { background: green; color: white; text-align: center; padding: 10px; font-weight: bold; font-size: 35px; animation: blinkBg 2s infinite alternate; }
@keyframes blinkBg { 0% { background-color: green; } 50% { background-color: red; } 100% { background-color: blue; } }
/* Blue strip */
.blue-strip {
    background: #ffcc00;
    color: #003366;
    text-align: center;
    padding: 9px;
    font-size: 23px;
    font-weight:bold;
}
/* Blink animation text */
.blink { color:red; font-weight:bold; animation: blinkText 1s infinite; }
 @keyframes blinkText { 0% { color: red; } 25% { color: orange; } 50% { color: green; } 75% { color: blue; } 100% { color: #ffcc00; } }

.blinkrecommendation {
    font-weight: bold;
    animation: blinkText 1s infinite;
}

@keyframes blinkText {
    0% {
        color: red;
    }

    50% {
        color: blue;
    }

    100% {
        color: red;
    }
}

