.input {
  position: fixed;       /* stays in place when scrolling */
  top: 50px;
  left: 0;
  height: 100%;          /* full height of screen */
  width: 100px;          /* sidebar width */
  display: flex;
  flex-direction: column;
  background-color: #0D1117;
  border-right: 1px solid #21262C;
  padding-top: 20px;
  border-radius: 0;      /* remove small box look */
}

.value {
  background-color: transparent;
  border: none;
  padding: 12px 15px;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border-radius: 4px;
}

.value:not(:active):hover,
.value:focus {
  background-color: #21262C;
}

.value:focus,
.value:active {
  background-color: #1A1F24;
  outline: none;
}

.value::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -10px;
  width: 5px;
  height: 80%;
  background-color: #2F81F7;
  border-radius: 5px;
  opacity: 0;
}

.value:focus::before,
.value:active::before {
  opacity: 1;
}

.value svg {
  width: 15px;
}

.input:hover > :not(.value:hover) {
  transition: 300ms;
  filter: blur(1px);
  transform: scale(0.95,0.95);
}
