.ring-container {
    position: absolute;
    top: 11px;
    left: -30px;
    width: 100%;
}

.ring-container__footer {
    position: relative;
    top: -19px!important;
    left: -12px;
    display: inline;
}

.ring-container .circle {
    width: 16px;
    height: 16px;
    background-color: #4cd0bc; /* 5ad576 4cd0bc */
    border-radius: 50%;
    position: absolute;
    top: 22px;
    left: 22px;
}

body.modeInfo .ring-container.green .circle {
    background-color: #00eebf;
}

.ring-container.lime .circle {
    background-color: lime;
}

.ring-container.red .circle {
    background-color: red;
}
.ring-container.red .ringring {
    border: 3px solid rgb(219, 151, 50);
}
.ring-container.purple .circle {
    background-color: #dc8e00;
}
.ring-container.purple .ringring {
    border: 3px solid #cea559;
}


.ring-container .ringring {
    border: 3px solid rgb(181, 244, 130);
    -webkit-border-radius: 30px;
    height: 26px;
    width: 26px;
    position: absolute;
    left: 17px;
    top: 17px;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite; 
    opacity: 0.0
}
.ring-container p.title {
    position: absolute;
    left: 55px;
    top: 10px;
    width: 100%;
}
.ring-container p.title small {
    color: #555;
    font-weight: 200;
    position: relative;
    top: -12px;
}

@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}
