.custom-checkbox-container_checkbox {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 25px;
  align-items: center;
  justify-content: flex-start;
  font-family: Arial, sans-serif;
  color: #e7e7e7;
  font-size: 11px;
  cursor: pointer;
}

.custom-checkbox-container_checkbox > input[type='checkbox'] + .custom-checkbox-container_checkbox_custom {
  width: 10px;
  height: 10px;
  border: 1px solid #1f72f2;
  background: transparent;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-checkbox-container_checkbox > input[type='checkbox']:checked + .custom-checkbox-container_checkbox_custom {
  border: 1px solid #1f72f2;
}

.custom-checkbox-container_checkbox > input[type='checkbox']:checked + .custom-checkbox-container_checkbox_custom:before {
  content: '\2713';
  color: #1f72f2;
  display: flex;
  width: 6px;
  height: 6px;
  top: -7px;
  position: relative;
  font-weight: bold;
  font-size: 13px;
  left: -2px;
}
