/* toggle switch */
.switch_label {
  display: flex;
  align-items: center;
}

input[type='checkbox'] {
  position: absolute;
  width: 0;
  height: 0;
}

.base {
  width: 56px;
  border-radius: 15px;
  height: 32px;
  background-color: #ddd;
}

.title {
  margin-left: 4px;
}

input:checked ~ .base {
  background-color: rgb(219, 234, 254);
}


.switch {
  position: relative;
}

input:checked ~ .circle {
  transform: translateX(100%);
  background-color: rgb(0, 98, 204);
}

.circle {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background-color: white;
  transition: 0.5s;
}

input:checked ~ .base {
  background-color: rgb(219, 234, 254);
  transition: 0.5s;
}