/* The switch - the box around the slider */

.switch {
  position: relative;
  display: inline;
  width: 47px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  width: 28px;
  height: 14px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 1px;
  bottom: 1px;
  background-color: #fafafa;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #41ab30;
}

input:focus + .slider {
  width: 28px;
}

input:checked + .slider:before {
  -webkit-transform: translateX(14px);
  -ms-transform: translateX(14px);
  transform: translateX(14px);
  value: 1;
}

/* Rounded sliders */

.slider.round {
  border-radius: 8px;
}

.slider.round:before {
  border-radius: 8px;
}

/* spacer para não encostar o slider */

.spacer {
  margin-right: 5px;
  position: relative;
  top: 11px;
  padding-top: 15px;
}

.spacer-choice {
  margin-right: 5px;
  position: relative;
  top: 15px;
  padding-top: 15px;
  left: -67px;
}

.space-label-r {
  padding-top: 0px;
}

.v-spacer {
  padding-top: 28px;
  display: grid;
}

.grey {
  color: grey;
}

