/* Checkboxes */
input[type='checkbox'] {
  border-radius: 0;
  border: none;
  background-color: transparent;
  margin: 3px;
  transition: none;

  /* input[type='checkbox']:hover */
  &:hover {
    background-color: transparent;
  }
}

input[type='checkbox']::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  background-image: url('//marley-lilly-prod.myshopify.com/cdn/shop/t/41/assets/icheck@2x_480x48.png?v=157082016023986343891775238899');
  background-size: 240px 24px;
  background-repeat: no-repeat;
  background-position: 0 0;
  mask-image: none;
  mask-size: none;
  mask-repeat: none;
  mask-position: none;
}

input[type='checkbox']:checked {
  background-color: transparent;
  border-radius: 0;
  border: none;
  transition: none;
}

input[type='checkbox']:checked::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  background-image: url('//marley-lilly-prod.myshopify.com/cdn/shop/t/41/assets/icheck@2x_480x48.png?v=157082016023986343891775238899');
  background-size: 240px 24px;
  background-repeat: no-repeat;
  background-position: -48px 0;
  mask-image: none;
  mask-size: none;
  mask-repeat: none;
  mask-position: none;
}