.container{
    /* background-color:#2c3e50; */
    /* border-radius: 50px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width:70px;
    height:100px;
    padding: 10px;
}
.circle {
     width:20px;
     height:20px;
     background-color: rgba(0, 0, 0, 0.3);
     border-radius: 50%;
     position: relative;
}
.circle::after{
    border-right: 4px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    position: absolute;
    width: 30px;
    height: 30px;
    top:5px;
}

.circle.red {
    background-color:rgb(207, 42, 42);
    /* box-shadow: 0 0 20px 5px rgb(207, 42, 42); */
}

.circle.yellow {
    background-color:rgb(233, 183, 34);
    /* box-shadow: 0 0 20px 5px rgb(233, 183, 34); */
}

.circle.green {
    background-color:rgb(86, 233, 50);
    /* box-shadow: 0 0 20px 5px rgb(86, 233, 50); */
}

.soaking-dashboard-card{
    -webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}
.card-blink{
    animation: blink 1s linear infinite;

}

@keyframes blink{
    0%{opacity: 0;}
    50%{opacity: .5;}
    100%{opacity: 1;}
    }
.soaking-dashboard-card .ant-card-body {
   display: flex;
   justify-content: space-evenly;
}