@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #151515;
}
div {
  position: absolute;
}
#rangeValue {
  position: relative;
  display: block;
  text-align: center;
  font-size: 6em;
  color: #999;
  font-weight: 400;
}
.range {
  width: 400px;
  height: 15px;
  -webkit-appearance: none;
  background: #111;
  outline: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 1);
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #00fd0a;
  cursor: pointer;
  border: 4px solid #333;
  box-shadow: -407px 0 0 400px #00fd0a;
}
#line1
{
  border: 4px solid #474747;
  overflow: hidden;
  width: 10px;
  padding: 4px;
  box-sizing: border-box;
  background-color: rgb(122 122 122);
  border-radius: 8px;
  transform: rotate(90deg);
  height: 0%;
}
#line2
{
  border: 4px solid #474747;
  overflow: hidden;
  width: 10px;
  padding: 4px;
  box-sizing: border-box;
  background-color: rgb(122 122 122);
  border-radius: 8px;
  transform: rotate(0deg);
  height: 0%;
}
#line3
{
  border: 4px solid #474747;
  overflow: hidden;
  width: 10px;
  padding: 4px;
  box-sizing: border-box;
  background-color: rgb(122 122 122);
  border-radius: 8px;
  transform: rotate(45deg);
  height: 0%;
}
#line4
{
  border: 4px solid #474747;
  overflow: hidden;
  width: 10px;
  padding: 4px;
  box-sizing: border-box;
  background-color: rgb(122 122 122);
  border-radius: 8px;
  transform: rotate(-45deg);
  height: 0%;
}
#line5
{
  border: 4px solid #474747;
  overflow: hidden;
  width: 10px;
  padding: 4px;
  box-sizing: border-box;
  background-color: rgb(122 122 122);
  border-radius: 8px;
  transform: rotate(22.5deg);
  height: 0%;
}
#line6
{
  border: 4px solid #474747;
  overflow: hidden;
  width: 10px;
  padding: 4px;
  box-sizing: border-box;
  background-color: rgb(122 122 122);
  border-radius: 8px;
  transform: rotate(-22.5deg);
  height: 0%;
}
#line7
{
  border: 4px solid #474747;
  overflow: hidden;
  width: 10px;
  padding: 4px;
  box-sizing: border-box;
  background-color: rgb(122 122 122);
  border-radius: 8px;
  transform: rotate(67.5deg);
  height: 0%;
}
#line8
{
  border: 4px solid #474747;
  overflow: hidden;
  width: 10px;
  padding: 4px;
  box-sizing: border-box;
  background-color: rgb(122 122 122);
  border-radius: 8px;
  transform: rotate(-67.5deg);
  height: 0%;
}