.cbx {
  -webkit-perspective: 20;
  perspective: 20;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -12px;
  border: 2px solid #42A5F5;
  background: #42A5F5;
  border-radius: 4px;
  transform: translate3d(0, 0, 0);
  cursor: pointer;
  transition: all 0.3s ease;
}
.cbx:hover {
  border-color: #0b76ef;
}
.flip {
  display: block;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  position: relative;
  width: 20px;
  height: 20px;
}



#inputOrderReceivePrepPrinter {
  display: none;
}
#inputOrderReceivePrepPrinter:checked + .cbx {
  border-color: #0b76ef;
}
#inputOrderReceivePrepPrinter:checked + .cbx .flip {
  transform: rotateY(180deg);
}




#inputOrderReceiveText {
  display: none;
}
#inputOrderReceiveText:checked + .cbx {
  border-color: #0b76ef;
}
#inputOrderReceiveText:checked + .cbx .flip {
  transform: rotateY(180deg);
}


#inputContractA {
  display: none;
}
#inputContractA:checked + .cbx {
  border-color: #0b76ef;
}
#inputContractA:checked + .cbx .flip {
  transform: rotateY(180deg);
}



#inputContractB {
  display: none;
}
#inputContractB:checked + .cbx {
  border-color: #0b76ef;
}
#inputContractB:checked + .cbx .flip {
  transform: rotateY(180deg);
}




#inputContractC {
  display: none;
}
#inputContractC:checked + .cbx {
  border-color: #0b76ef;
}
#inputContractC:checked + .cbx .flip {
  transform: rotateY(180deg);
}
  
  
  
  
  

.front,
.back {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 2px;
}
.front {
  background: #fff;
  z-index: 1;
}
.back {
  transform: rotateY(180deg);
  background: #0b76ef;
  text-align: center;
  color: #fff;
  line-height: 20px;
  box-shadow: 0 0 0 1px #0b76ef;
}
.back svg {
  margin-top: 3px;
  fill: none;
}
.back svg path {
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body {
  -webkit-font-smoothing: antialiased;
}