.toggle-switch-container {
  align-content: center;
  display: block;
  margin-right: 0.25rem;
}


.toggle-switch-container[disabled] input {
  pointer-events: none;
}

.toggle-switch {
  margin: 0;
}

.toggle-switch {

  position: relative;
}

.toggle-switch input {
  position: absolute;
  top: 0;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

.toggle-switch input:checked {
  z-index: 1;
}

.toggle-switch .toggle-outside {
  height: 100%;
  border-radius: 12px;
  padding: 8px;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out;
}

.toggle-switch .toggle-inside {
  border-radius: 50%;
  background: #7d7979;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.switch-vertical {
  background-color: #00F;
  width: 0px;
  height: 30px;
  margin-left: 20px;
}

.switch-vertical input {
  height: 100%;
  right: 0;
  margin: 0;
}

.switch-vertical .toggle-outside {
  background: #e1e1e1;
  position: absolute;
  width: 16px;
  height: 100%;
  right: 0;
  top: 0;
}

.switch-vertical .toggle-inside {
  height: 12px;
  left: 2px;
  top: 2px;
  width: 12px;
}

.switch-vertical input:checked ~ .toggle-outside .toggle-inside {
  top: 3px;
}

.switch-vertical input ~ input:checked ~ .toggle-outside .toggle-inside {
  top: 16px;
  background-color: var(--color-white);
}

.switch-vertical input ~ input:checked ~ .toggle-outside {
  background-color: var(--color-blue-dk);
}
