#switchUnitButtonContainer {
  background-color: #3c3c3c;
  background-image: linear-gradient(
    to right,
    #2d2d2d,
    rgba(0, 0, 0, 0) 10%,
    #2d2d2d 10%,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0) 80%,
    #2d2d2d 90%,
    rgba(0, 0, 0, 0) 90%,
    #2d2d2d
  );
}
#switchUnitButton {
  font-family: "MuseoSans";
  display: flex;
  padding: 5px;
  width: 300px;
}

#switchUnitButton * {
  pointer-events: none;
}

#toggle {
  transition: 0.5s;
  position: relative;
  display: block;
  width: 50px;
  height: 25px;
  border-radius: 8px;
  background: #46afa7;
  margin: auto;
}

.indicator {
  position: absolute;
  top: 1.5px;
  left: 0;
  width: 25px;
  height: 22px;
  border-radius: 6px;
  background: white;
  transform: scale(0.9);
  transition: 0.5s;
}

#toggle.active .indicator {
  left: 25px;
  transition: 0.5s;
}
