.cheacbox-ui:not(:checked),
.cheacbox-ui:checked {
  position: absolute;
  left: -9999px;
}
.cheacbox-ui:not(:checked) + label,
.cheacbox-ui:checked + label {
  position: relative;
  padding-left: 50px;
  cursor: pointer;
}
.cheacbox-ui:not(:checked) + label:before,
.cheacbox-ui:checked + label:before,
.cheacbox-ui:not(:checked) + label:after,
.cheacbox-ui:checked + label:after {
  content: '';
  position: absolute;
}
/*Estilo deseleccionado*/
.cheacbox-ui:not(:checked) + label:before,
.cheacbox-ui:checked + label:before {
  left:0; top: -3px;
  width: 30px; height: 22px;
  background: #DDDDDD;
  border-radius: 15px;
  transition: background-color .2s;
}
.cheacbox-ui:not(:checked) + label:after,
.cheacbox-ui:checked + label:after {
  width: 13px; height: 13px;
  transition: all .2s;
  border-radius: 50%;
  background: #7F8C9A;
  top: 1px; left: 5px;
}

/* on checked */
.cheacbox-ui:checked + label:before {
  background:#1586A6;
}
.cheacbox-ui:checked + label:after {
  background: #0CD0FA;
  top: 1px; left: 13px;
}


.cheacbox-ui:checked + label .ui-xs,
.cheacbox-ui:not(:checked) + label .ui-xs:before,
.cheacbox-ui:checked + label .ui-xs:after {
  position: absolute;
  left: 6px;
  width: 65px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: bold;
  line-height: 22px;
  transition: all .2s;
}
.cheacbox-ui:not(:checked) + label .ui-xs:before {
  left: 32px
}
.cheacbox-ui:checked + label .ui-xs:after {
  color: #39D2B4;
}
.cheacbox-ui:focus + label:before {
  border: 1px dashed #777;
  box-sizing: border-box;
  margin-top: -1px;
}