header#header {
    background: #1b2123;
}
.banner-status {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(32 87 53);
    padding: 4px 0;
    color: #00B67B;
    color: #FFF;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    background: rgb(32 87 53) !important;
}
.banner-status-img {
    width: 11px;
    height: 11px;
    position: relative;
    opacity: 0.3;
    animation: glowing 2000ms infinite;
}
.banner-status-img-outer {
    position: relative;
    z-index: 1;
    width: 11px;
    height: 11px;
    border-radius: 11px;
    /*opacity: 0.3;*/
    background: rgba(255, 255, 255, 0.27);
    animation: scaleTT 2000ms infinite;
    animation-delay: 1000ms;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-status-text {
    margin-left: 5px;
}
.banner-status-img-inner {
    position: absolute;
    z-index: 2;
    border-radius: 50%;
    background: #ffffff;
    width: 7px;
    height: 7px;
    content: "";
    animation: scaleTT2 2000ms infinite;
    animation-delay: 1000ms;
}
@keyframes glowing {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}
@keyframes scaleTT {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
@keyframes scaleTT2 {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}
@media (max-width: 576px) {
    .banner-status {
        padding: 3px 0;
        font-size: 12px;
        line-height: 13px;
    }
}