
.badge1 {
    font-size: 9px !important;
    line-height: 0.9 !important;
    padding: 4px 4px !important;
    position: absolute;
    left: 85px !important;
    text-align: center;
    bottom: 6px !important;
    background-color: rgba(220, 53, 69) !important;
    border-radius: 10px;
    color: #fff;
    white-space: nowrap;
    vertical-align: baseline;
  }

.blink_text
{
    animation:2s blinker linear infinite;
    -webkit-animation:2s blinker linear infinite;
    -moz-animation:1s blinker linear infinite;
    color: white;
}

@-moz-keyframes blinker
{  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker
{  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker
{  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
 }