.cbx-table {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}
.cbx-table span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
.cbx-table span:first-child {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #9098A9;
  transition: all 0.0s ease;
}
.cbx-table span:first-child svg {
  position: absolute;
  top: 1px;
  left: 0px;
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2;
  /*stroke-linecap: round;*/
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.0s ease;
  transition-delay: 0.0s;
  transform: translate3d(0, 0, 0);
  transform: scale(0.8);
}
.cbx-table span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #de8737;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}
.cbx-table span:last-child {
  padding-left: 8px;
}
.cbx-table:hover span:first-child {
  border-color: #9098A9;
}
.inp-cbx-table {
  display: none;
}
.inp-cbx-table:checked + .cbx-table span:first-child {
  background: #de8737; /* CBX checked color */
  border-color: #de8737;
  /* animation: wave 0.3s ease; */
}
.inp-cbx-table:checked + .cbx-table-login span:first-child {
  background: #de8737;
  border-color: #de8737;
}
.inp-cbx-table:checked + .cbx-table span:first-child svg {
  stroke-dashoffset: 0;
}
.inp-cbx-table:checked + .cbx-table span:first-child:before {
  transform: scale(0);
  opacity: 0;
  transition: all 0.0s ease;
}

@keyframes wave {
  50% {
    transform: scale(0.9);
  }
}

svg {
  width: 12px;
  height: 10px;
  viewbox: 0 0 12 10;
}