/**
 * Count style is used for any labels with icon, title and value
 */
.counts .count-box {
    padding: 15px 15px 10px 15px;
    width: 100%;
    position: relative;
    text-align: center;
    background: #f1f6fe;
}
.counts .count-box > i {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    background: #106eea;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 0;
    border-radius: 50px;
    border: 3px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.counts .count-box span{
    font-size: 24px;
    display: block;
    font-weight: 600;
    color: #062b5b;
}
.counts .count-box span.data {
    font-size: 24px;
    display: inline-block;
    font-weight: 600;
    color: #062b5b;
}
.counts .count-box p {
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}
