
/*=====================
		CIRCLE PROGRESS BAR
	======================*/

.progressbarWeber {
    display: inline-block;
   /* width: 100px;*/
   /* margin: 25px;*/
}

    .progressbarWeber img {
        width: 68%;
        margin-top: -41px;
        margin-left: -8px;
    }

    .progressbarWeber .circle {
        width: 180px;
        height: 180px;
        margin: 0 auto;
        display: inline-block;
        position: relative;
        text-align: center;
        background-image: url(/img/rozet-cerceve.svg);
        background-size: contain;
    }

        .progressbarWeber .circle:after {
            width: 120px;
            height: 120px;
            content: "";
            /*border: 2px solid #fb4f14;*/
            border-radius: 50%;
            display: block;
            position: absolute;
            top: 30px;
            left: 30px;
        }

        .progressbarWeber .circle canvas {
            vertical-align: middle;
            /*border: 2px solid #fb4f14;*/
            border-radius: 50%;
        }

        .progressbarWeber .circle div {
            position: absolute;
            top: 50%;
            left: 50%;
            margin: -20px 0 0 -86px;
            width: 100%;
            text-align: center;
            line-height: 40px;
            font-size: 31px;
        }

        .progressbarWeber .circle strong i {
            font-style: normal;
            font-size: 0.6em;
            font-weight: normal;
        }

        .progressbarWeber .circle span {
            display: block;
            color: white;
            margin-top: 12px;
        }
