

.itdg_checkbox_wrapper {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

  /* Hide the browser's default checkbox */
  .itdg_checkbox_wrapper input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #d6d6d6;
}

/* On mouse-over, add a grey background color */
.itdg_checkbox_wrapper:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.itdg_checkbox_wrapper input:checked ~ .checkmark {
  background-color: #006630;
}

.itdg_checkbox_wrapper input:focus ~ .checkmark {
  /* bootstrap 4 form-control box-shadow */
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

fieldset:disabled .itdg_radiobutton, fieldset:disabled .itdg_radiobutton:hover {
  background-color: #00000050;
}

.itdg_checkbox_wrapper input:disabled ~ .checkmark {
  background-color: #00000070;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  box-sizing: content-box !important;
}

/* Show the checkmark when checked */
.itdg_checkbox_wrapper input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.itdg_checkbox_wrapper .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


td > .itdg_checkbox_wrapper {
  margin-bottom: 24px;
}

/* The container */
.itdg_radiobutton_wrapper {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

  /* Hide the browser's default radio button */
  .itdg_radiobutton_wrapper input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

/* Create a custom radio button */
.itdg_radiobutton {
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.itdg_radiobutton_wrapper:hover input ~ .itdg_radiobutton {
  background-color: #ccc;
}

/* When the radio button is checked, add a green background */
.itdg_radiobutton_wrapper input:checked ~ .itdg_radiobutton {
  background-color: #006630;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.itdg_radiobutton:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.itdg_radiobutton_wrapper input:checked ~ .itdg_radiobutton:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.itdg_radiobutton_wrapper .itdg_radiobutton:after {
  top: 5px;
  left: 5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: white;
}




td > label.itdg_checkbox_wrapper {
  padding-left: 25px;
}

.btn-rounded {
  border-radius: 4px;
  -webkit-transition-property: border-radius;
  transition-property: border-radius;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  opacity: 1;
  outline: transparent !important;
}

  .btn-rounded:hover {
    border-radius: 20px;
    opacity: 0.95;
  }

.btn-light-green {
  border-color: #8dc641 !important;
  background-color: #8dc641 !important;
  color: white;
}

  .btn-light-green:hover {
    border-color: #7aaa36 !important;
    background-color: #7aaa36 !important;
    color: white;
  }

  .btn-light-green:active {
    outline: 0;
    box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
  }

.btn-gray {
  background-color: #f6f7f7 !important;
  color: #303030 !important;
  border-color: #e5e5e5 !important;
}

  .btn-gray:hover {
    background-color: #fff !important;
    border-color: #e8e8e8 !important;
  }

  .btn-gray:active {
    outline: 0;
    box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
  }
