* {
    box-sizing: border-box;
}

.color-red {
    stop-color: #e23131;
}

.color-yellow {
    stop-color: #fbe500;
}

.color-green {
    stop-color: #25cd6b;
}

.gradient-mask {
    visibility: hidden;
}

.gauge-container {
    padding: 20px;
    margin-top: 80px;
    display: flex;
    justify-content: space-around;
}

.gauge {
    height: 220px;
    width: 180px;
}
.gauge .dxg-range.dxg-background-range {
    fill: url(#gradientGauge);
}
.gauge .dxg-line {
    -webkit-transform: scaleX(1.04) scaleY(1.03) translate(-4px, -4px);
    transform: scaleX(1.04) scaleY(1.03) translate(-4px, -4px);
}
.gauge .dxg-line path:first-child,
.gauge .dxg-line path:last-child {
    display: none;
}
.gauge .dxg-line path:nth-child(2),
.gauge .dxg-line path:nth-child(9) {
    stroke: #DE4706FF;
}
.gauge .dxg-line path:nth-child(3),
.gauge .dxg-line path:nth-child(8) {
    stroke: #EDC01CFF;
}

.gauge .dxg-line path:nth-child(4),
.gauge .dxg-line path:nth-child(7) {
    stroke: #a7db29;
}
.gauge .dxg-line path:nth-child(5),
.gauge .dxg-line path:nth-child(6) {
    stroke: #25cd6b;
}
.gauge .dxg-elements text:first-child {
    -webkit-transform: translate(19px, 13px);
    transform: translate(19px, 13px);
}
.gauge .dxg-elements text:last-child {
    -webkit-transform: translate(-27px, 14px);
    transform: translate(-27px, 14px);
}
.gauge .dxg-value-indicator path {
    -webkit-transform: scale(1.2) translate(0, -5px);
    transform: scale(1.4) translate(0, -5px);
    -webkit-transform-origin: center center;
    transform-origin: center center;
}
.gauge .dxg-value-indicator .dxg-title {
    text-transform: uppercase;
}
.gauge .dxg-value-indicator .dxg-title text:first-child {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}
.gauge .dxg-value-indicator .dxg-spindle-border:nth-child(4),
.gauge .dxg-value-indicator .dxg-spindle-hole:nth-child(5) {
    -webkit-transform: translate(0, -90px);
    transform: translate(0, -60px);
}
.gauge .dxg-value-indicator .dxg-spindle-hole {
    fill: #26323a;
}