.jo-animated-progress-module {
    text-align: center;
    padding: 20px;
	margin-bottom:40px;
}

.title {
    margin-bottom: 10px;
}

.progress-container {
    width: 150px;
    display: inline-block;
    position: relative;
    margin: 0 auto;
}
.progress-container.circle {
    height: 0px;
}
.progress-container.signal {
    height: 100px;
}
.titleb .progress-container.signal {
  height: 150px;
}

/* Pie Chart Styles */
svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

circle {
    fill: none;
    stroke-width: 12px;
    transform-origin: center;
    transform-box: fill-box;
}

.bg {
    stroke: #fff;
}

.progress {
    stroke: #fff;
    stroke-linecap: square;
    stroke-dasharray: 502.4;
    stroke-dashoffset: 502.4;
}

/* Signal Bars (20 Step) Styles */
.signal-bars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2px;
    height: 35%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.titleb .signal-bars {
  margin-bottom: 20px;
}

.bar {
    width: 4px;
    background-color: #e0e0e0;
    border-radius: 1px;
    transform-origin: bottom;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.bar:nth-child(1) { height: 5%; }
.bar:nth-child(2) { height: 10%; }
.bar:nth-child(3) { height: 15%; }
.bar:nth-child(4) { height: 20%; }
.bar:nth-child(5) { height: 25%; }
.bar:nth-child(6) { height: 30%; }
.bar:nth-child(7) { height: 35%; }
.bar:nth-child(8) { height: 40%; }
.bar:nth-child(9) { height: 45%; }
.bar:nth-child(10) { height: 50%; }
.bar:nth-child(11) { height: 55%; }
.bar:nth-child(12) { height: 60%; }
.bar:nth-child(13) { height: 65%; }
.bar:nth-child(14) { height: 70%; }
.bar:nth-child(15) { height: 75%; }
.bar:nth-child(16) { height: 80%; }
.bar:nth-child(17) { height: 85%; }
.bar:nth-child(18) { height: 90%; }
.bar:nth-child(19) { height: 95%; }
.bar:nth-child(20) { height: 100%; }

/* Counter Styles */
.counter {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    width: 100%;
    height: 100%;
    text-align: center;
    pointer-events: none;
}
.circle .counter {
    top: 50%;
}
.signal .counter {
    top: 30%;
}

.prefix-text,
.number-text {
    display: inline-block;
    vertical-align: middle;
}

.prefix-text {
    margin-right: 0;
    margin-left: 0;
}

.number-text {
}