@font-face {
	font-family: "digital-font";
	src: url(../fonts/digital-7.ttf);
}
.ammeter {
	position: absolute;
	width: 6rem;
	#av {
		width: 100%;
	}
	right: 9%;
	top: 7%;
	z-index: 1;
}
#needle2 {
	position: absolute;
	z-index: 1;
	top: 21%;
	left: 45%;

	width: 4%;
	transform: rotate(-45deg);
	transform-origin: bottom;
	transition: all 0.5s ease-in-out;
}
.needle-rotate {
	animation: needle-rotate 0.5s ease-in-out forwards;
}
@keyframes needle-rotate {
	0% {
		transform: rotate(-45deg);
	}
	50% {
		transform: rotate(42deg);
	}
	100% {
		transform: rotate(-10deg);
	}
}
/* 
#digital-meter-a{
    position: absolute;
    height: 27px;
    width: 85px;
    border: 2px solid black;
    top: 23%;
    right: 28.5%;
    z-index: 1;
    background-color: rgb(61, 53, 53);
    box-shadow: inset 0 0 2px black,inset 0 0 3px black;
    font-family: "digital-font";
    font-size: 1.5rem;
    font-weight: 500;
    color: rgb(61, 53, 53);
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 3px;
    border-radius: 1px;
} */
/* #a-positive {
	position: absolute;
	top: 60%;
	left: 8%;
	padding-bottom: 5px;
	font-weight: bold;
	z-index: 1;
	
}
#a-negative {
	position: absolute;
	top: 60%;
	left: 80%;
	padding-bottom: 5px;
	font-weight: bold;
	z-index: 1;
	
} */
#a-meter-text {
	background-image: url(../images/plank.png);
	background-size: cover;
	height: 6%;
	width: 130%;
	transform: translateX(-10%);
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
	font-weight: bold;
	color: white;
}

.ammeter-screen {
	position: absolute;
	top: 52%;
	left: 16%;
	height: 16%;
	width: 68%;
	/* border: 2px solid black; */
	background-color: #e5e4e2;
	box-shadow: inset 0 0 2px black, inset 0 0 3px black;
	border-radius: 10%;

	text-align: center;
	font-weight: 600;
	color: blue;
}

.ammeter-screen-on {
	height: 100%;
	width: 100%;
	display: none;
}
