.earthr-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  border: 0;
  outline: 0;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 0;
}

.earthr-checkbox:after {
  content: '';
  width: 40px;
  height: 20px;
  display: inline-block;
  background: rgba(196, 195, 195, 0.55);
  border-radius: 18px;
  clear: both;
}

.earthr-checkbox:before {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.earthr-checkbox:checked:before {
  left: 20px;
  box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.6);
}

.earthr-checkbox:checked:after {
  background: #3ab54a;
}

.earthr-palette-all-white .earthr-checkbox:checked:after {
  background: white;
}
