
#floater.new .checkmark {
  width: 24px;
  height: 24px;
  border: 1px solid #5e6366;
  border-radius: 8px;
  min-width: 24px;
}

#floater.new input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0px;
  width: 0px;
  visibility: hidden;
}

#floater.new .checkmark:after {
  left: 7px;
  top: 3px;
  width: 9px;
  height: 13px;
  border: solid #b0cad9;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 14px 3px 2px 3px;
  transition: all 0.3s ease-in-out;
}

#floater.new .checkmark:before {
  left: 1px;
  top: 1px;
  width: 20px;
  height: 20px;
  background-color: #5570f1;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

#floater.new .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
}

#floater.new .checkmark:before {
  content: "";
  position: absolute;
  opacity: 0;
}

#floater.new label {
  color: #83898C;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 14px;
  font-weight: 400;
  padding-top: 5px;
}

#floater.new input[type="checkbox"]:checked ~ .checkmark:before {
  opacity: 1;
}

#floater.new input[type="checkbox"]:checked ~ .checkmark:after {
  opacity: 1;
}

#floater.new input[type="checkbox"]:checked ~ .checkmark {
  border-color: #6d7dcd;
}

#floater.new label:hover > input[type="checkbox"]:checked ~ .checkmark,
#floater.new input[type="checkbox"]:checked:hover ~ .checkmark {
  background-color: #fff;
}

#floater.new input[type="checkbox"]:checked ~ .checkmark {
  background-color: #fff;
}

#floater.new label > input[type="checkbox"]:checked ~ span:not(.info-popup) {
  color: #2b2f32;
}

#floater.new label.has-feedback.has-error {
	color: #ea0000;
}

#floater.new label.has-feedback.has-error .checkmark {
	border-color: #ea0000;
}
