ul.carcheck {
  list-style-type: none;
}

li.carcheck {
  display: inline-block;
}

input.carcheck[type="checkbox"][id^="myCheckbox"] {
  display: none;
}

label.carcheck {
  border: 1px solid #EEEEEE;
  border-radius: 7px;
  background: #F7F7F7;
  padding: 10px;
  display: block;
  position: relative;
  margin: 10px;
  cursor: pointer;
}

label.carcheck:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid grey;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}

label.carcheck img {
  height: 90px;
  width: 185px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}

:checked + label.carcheck {
  border-color: #ddd;
}

:checked + label.carcheck:before {
  content: "✓";
  background-color: #D81313;
   border: 1px solid #D81313;
  transform: scale(1);
}

:checked + label.carcheck img {
 
  /* box-shadow: 0 0 5px #333; */
  z-index: -1;
}