.av-meter{
    position: absolute;
    /* background-color: red; */
    width: 23%;
    height: 63%;
    top: 12%;
    left: 33%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pair{
    display: flex;
    justify-content: space-between;
    
}
.width{
    width: 35%;
    height: fit-content;
}
.needle{
    position: absolute;
    width: 40px;
    transform-origin: right;
    transition: all 0.5s ease-in-out;
    transform: rotate(45deg);
}
.needle:hover{
    cursor: pointer;
    /* transform: rotate(100deg); */
}
#a-needle-1{
    right: 19%;
    top: 15.5%;
}
#v-needle-1{
    left: 6%;
    top: 16.5%;
    
}
#a-needle-2{
    right: 18%;
    bottom: 8.5%;
}
#v-needle-2{
    left: 5.5%;
    bottom: 8.5%;
}
.needle-cover{
    position: absolute;
    width: 20px;
    height: 10px;
    background-color: rgb(45, 43, 43);
    border-top-left-radius: 110px;
    border-top-right-radius: 110px;
    box-shadow: 0 0 5px 1px rgb(45, 43, 43);
    z-index: 3;
}
#cover1{
    top: 15%;
    left: 15%;
}
#cover2{
    top: 15%;
    right: 15%;
}
#cover3{
    bottom: 8%;
    left: 15%;
}
#cover4{
    bottom: 8%;
    right: 15%;
}
#i1,#i2,#i3,#i4,#v1,#v2,#v3,#v4{
    position: absolute;
    /* border: 1px solid black; */
}
#v1{
    padding-left: 10px;
    top:19%;
    left: 6%;
}
#v2{
    padding-right: 10px;
    top: 19%;
    left: 20%;
}
#v3{
    padding-left: 10px;
    bottom: 1%;
    left: 6%;
}
#v4{
    padding-right: 10px;
    bottom: 1%;
    left: 20%;
}
#i1{
    padding-left: 15px;
    top: 19%;
    right: 22%;
}
#i2{
    padding-right: 15px;
    top: 19%;
    right: 6%;
}
#i3{
    padding-left: 15px;
    bottom: 1%;
    right: 20%;
}
#i4{
    padding-right: 15px;
    bottom: 1%;
    right: 6%;
}