.share-statistic-widget .box-widget-content {
    padding: 0;
}

.share-statistic-item {
    display: flex;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(41, 47, 137, 0.06);
}

    .share-statistic-item span {
        flex: 1 1 auto;
        padding: 0 5px;
        font-size: 12px;
        margin-bottom: 0;
        text-align: center;
    }

        .share-statistic-item span:first-child {
            text-align: left;
        }

        .share-statistic-item span:last-child {
            text-align: right;
        }

        .share-statistic-item span strong {
            font-weight: bold;
        }

    .share-statistic-item .info {
        font-size: 11px;
        color: var(--color-primary);
        opacity: .6;
    }

.share-statistic-bar {
    width: 100%;
    height: 18px;
    display: flex;
}

    .share-statistic-bar .bar-one {
        height: 100%;
    }

    .share-statistic-bar .bar-two {
        display: flex;
        flex-direction: row-reverse;
    }

        .share-statistic-bar .bar-one:before, .share-statistic-bar .bar-two:before {
            content: '';
            width: 100%;
            height: 100%;
            padding: 0px;
            display: block;
            background: #4cff00;
            color: #EAEAEA;
            text-indent: 10px;
            line-height: 18px;
            font-weight: bold;
            -webkit-animation-name: progressWidth;
            animation-name: progressWidth;
            -webkit-animation-timing-function: ease-in-out;
            -webkit-animation-duration: 2s;
            -moz-animation-timing-function: ease-in-out;
            -moz-animation-duration: 2s;
            -o-animation-timing-function: ease-in-out;
            -o-animation-duration: 2s;
            animation-timing-function: ease-in-out;
            animation-duration: 2s;
        }

        .share-statistic-bar .bar-two:before {
            background-color: #ff0000;
        }

@keyframes progressWidth {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@media(min-width: 768px) {
    .share-statistic-widget {
        min-height: 307px;
    }
}