.kimbody {
    height: 100vh;
    width: 100vw;
    background: #000000;
    background: linear-gradient(124deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.45) 54%, rgba(0, 0, 0, 1) 100%);
    opacity: .4;
}
.multimeter {
    height: 70%;
    width: 25%;
    background: lightgray;
    opacity: .6;
    position: absolute;
    border-radius: 8px;
    top: 20%;
    left: 5%;
}
.display {
    width: 80%;
    height: 10%;
    margin-top: 7%;
    margin-left: 10%;
    background: white;
    border: 1px solid grey;
    opacity: .6;
    border-radius: 8px;
}
.circle {
    width: 60%;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: lightgrey;
    opacity: .5;
    margin-left: calc(20% - 30px);
    margin-top: 20%;
    border: 30px solid grey;
}
.knob {
    width: 10%;
    height: 100%;
    display: block;
    margin: auto;
    background: white;
    opacity: .8;
    border-radius: 6px;
}

.plate {
    width: 5%;
    aspect-ratio: 1;
    border: 10px solid black;
    border-radius: 50%;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
}

.screw {
    clip-path: polygon(0 46%, 95% 39%, 100% 30%, 100% 53%, 95% 46%);
    width: 20%;
    height: 15%;
    background: #000000;
    background: linear-gradient(124deg, rgba(0, 0, 0, 1) 3%, rgba(255, 255, 255, 0) 9%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 1) 43%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 1) 58%, rgba(0, 0, 0, 0) 64%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 77%, rgba(0, 0, 0, 1) 84%, rgba(0, 0, 0, 0) 91%, rgba(0, 0, 0, 1) 97%);
    opacity: .7;
    mix-blend-mode: multiply;
    position: absolute;

    &.one {
        transform: rotate(115deg);
        top: 20%;
        left: 20%;
    }
    &.two {
        transform: rotate(125deg);
        top: 27%;
        left: 20%;
    }
    &.three {
        transform: rotate(-10deg);
        top: 70%;
        right: 20%;
    }
}

.holder {
    width: 10%;
    height: 45%;
    background: black;
    position: absolute;
    right: 10%;
    top: 20%;
}

.feeler {
    height: 70%;
    width: 2.5%;
    position: absolute;
    border-radius: 10%;

    &.one {
        background: black;
        opacity: .6;

        top: 36%;
        right: 26%;
        transform: rotate(-120deg);
    }

    &.two {
        background: grey;
        opacity: .7;

        top: 6%;
        right: 16%;
        transform: rotate(120deg);
    }

}

.feeler::before {
    clip-path: polygon(0 46%, 95% 39%, 100% 30%, 100% 53%, 95% 46%);
    background: white;
    width: 160%;
    height: 10%;
    display: block;
    content: " ";
    transform: rotate(90deg);
    margin-top: -6vh;
    margin-left: -1vw;
}

svg.first {
    transform: scale(8);
    position: absolute;
    left: 30%;
    top: 46%;
    opacity: .7;
}

svg.second {
    transform: scale(8);
    position: absolute;
    left: 50%;
    top: 25%;
    opacity: .5;
}