input[type="checkbox"] + label {
    display: inline-block;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 1rem;
	vertical-align: baseline;
}

input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}
input[type="checkbox"]:checked + label:before {
/*   color: #fff; */
  background-color: #617180;
  
  background-image: url("../img/icon_checkbox.png");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center center;
}
input[type="checkbox"] + label:before {
  display: inline-block;
  border: none;
  border-radius: 0;
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
/*
  text-align: center;
  line-height: 1;
  font-size: 1.25rem;
  color: #d5d8db;
*/
  background: #d5d8db;
/*   content: "\2715"; */
  content: "";
  padding-right: 0;  
}

@media screen and (min-width: 641px) {

	input[type="checkbox"] + label {
	    margin-top: 1.5rem;
	}
	input[type="checkbox"] + label:before {
/*
	  top: -0.2rem;
	  line-height: 1;
*/
	  width: 25px;
	  height: 25px;
	  margin-right: 1rem;
/*
	  font-size: 1.55rem;
	  padding-right: 1px;
*/
	}
	
	input[type="checkbox"]:checked + label:before {
	  background-size: 25px 25px;
  	}

}