.material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

:host {
  display: inline-block;
}

#toggle-switch {
  width: 50px;
  height: 30px;
  border-radius: 30px;
  position: relative;
  box-sizing: border-box;
}
#toggle-switch input {
  cursor: pointer;
  width: 50px;
  height: 30px;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  border: none;
  outline: none;
  opacity: 0;
  position: absolute;
}
#toggle-switch #toggle-body {
  width: 50px;
  height: 30px;
  border-radius: 28px;
  position: relative;
  top: 0;
  left: 0;
  pointer-events: none;
  background: #9e9e9e;
}
#toggle-switch #toggle-body::after {
  font-family: "Material Symbols Rounded", sans-serif;
  content: "\e5ca";
  position: absolute;
  width: 26px;
  height: 26px;
  left: 2px;
  top: 2px;
  border-radius: 26px;
  background: white;
  transition: all 0.1s;
  font-size: 22px;
  color: #FFFFFF;
  justify-content: center;
  display: inline-flex;
}
#toggle-switch input:checked ~ #toggle-body::after {
  color: #a2bb31;
  left: 22px;
}
#toggle-switch input:checked ~ #toggle-body {
  background: #a2bb31;
}