.speedometer_main{
	position: relative;
}
.speedometer_container{
	position: relative;
	height: 75px;
	overflow:hidden;
	width: 150px;
}
.speedometer {
	width: 150px; /* Adjusted width */
	height: 150px; /* Adjusted height */
	padding: 30px; /* Adjusted padding */
	border-radius: 50%;
	background:
		radial-gradient(#ffff 0 0) content-box,
		conic-gradient(from -90deg, #C1262C 36deg, #DB5C23 0 72deg, #F69220 0 108deg, #8BA247 0 144deg, #23B473 0 180deg, #0000 0);
	position: absolute;
	z-index: -1;
	box-sizing: border-box;
}
	
.needle {
	position: absolute;
	width: 76px; /* Adjusted width of the needle */
	height: 120px; /* Adjusted height of the needle */
	padding: 30px; /* Adjusted padding around the needle */
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(calc((var(--score) / 100) * 180deg - 90deg));
	transform-origin: center;
	border-radius: 50%; /* Keep the needle rounded */
	background: content-box; /* Background gradient */
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}
/* Square pin created with a pseudo-element */
.needle::after {
	content: ''; /* Required for pseudo-elements */
	position: absolute;
	width: 5px; /* Adjusted width of the square needle pin */
	height: 35%; /* Height of the square needle pin */
	background-color: #333; /* Color of the needle pin */
	left: 50%; /* Center horizontally */
	top: 0; /* Align with the top of the needle */
	transform: translate(-50%, 0); /* Center it perfectly on top of the needle */
}

.score {
    transform: rotate(calc(-1*((var(--score) / 100)* 180deg - 90deg)));
    font-size: 13px;
    font-weight: 800;
    color: #000;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(calc(-1*((var(--score) / 100)* 180deg - 90deg)));
    background-color: #FFF;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: 1;
    bottom: 10%;
	min-width: 46px;
	text-align: center;
}

.speeodmeter_actions{
	font-size: 12px;
	font-weight: 600;
	margin-top: 5px;
}

.speeodmeter_actions input[type=checkbox]{
	width: 10px;
	height: 10px;
	margin-left: 3px;
	white-space: nowrap;
}

.speeodmeter_title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  line-height: 20px;
  margin-bottom: 5px;
}