.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
  box-shadow: none !important;
}

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

.BS4Checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark_CB {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: rgba(212, 212, 212, 0.2);
  border: 1px solid #2196F3;
  border-radius: 5px;
}

.BS4Checkbox:hover input ~ .checkmark_CB {
  background-color: rgba(245, 245, 245, 0.1);
  border-color: #CCCCCC;
}

.checkmark_CB:after {
  content: "";
  position: absolute;
  display: none;
}

.BS4Checkbox .checkmark_CB:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

