.numberCircle {
    width: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    font-size: 15px;
    padding: 5px;
    border: 2px solid #ffffff;
}
.numberCircle-inside{
    width: 51px;
    line-height: 16px;
    border-radius: 50%;
    text-align: center;
    font-size: 13px;
    border: 2px solid #ffffff;
    padding-left: 7px;
    padding-right: 8px;
    padding-top: 3px;
    padding-bottom: 3px;
}
.circle-light-green{
    background-color: #7fb231; 
    color: white;
}

.ball {
    display: inline-block !important;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 50%;
    position: relative;
}
.ball:before {
    content: "";
    position: absolute;
    top: 1%;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 0px, #ffffff, rgba(255, 255, 255, 0) 58%);
    -webkit-filter: blur(5px);
    z-index: 2;
}


.stage {
    width: 35px;
    height: 35px;
    display: inline-block;
    -webkit-perspective: 1200px;
    -moz-perspective: 1200px;
    -ms-perspective: 1200px;
    -o-perspective: 1200px;
    perspective: 1200px;
    -webkit-perspective-origin: 50% 50%;
    -moz-perspective-origin: 50% 50%;
    -ms-perspective-origin: 50% 50%;
    -o-perspective-origin: 50% 50%;
    perspective-origin: 50% 50%;
    margin-left: 2px;
}
.text-bull{
    position: absolute;
    transform-origin: 50px 50px;
    margin-top: 9px;
    font-size: 14px;
    width: 100%;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
.bull-green-color{
    background: green !important;
}
.bull-yellow-color{
    background: #FF8C00 !important;
}
.bull-blue-color{
    background: radial-gradient(circle at 50% 120%, #81e8f6, #76deef 10%, #055194 80%, #062745 100%) !important;
}
.bull-black-color{
    background: radial-gradient(circle at 50% 120%, #323232, #0a0a0a 80%, #000000 100%) !important;

}
.bull-red-color{
    background: red !important;
}