/* CSS Document */

.altcha {
  display: block !important;
  width: 100%;
  max-width: 100% !important;
  margin-bottom: 1rem;
  box-sizing: border-box;
  border: 1px solid #ced4da !important;
  border-radius: 0.375rem !important;
  padding: 0.375rem 0.75rem;
  /*background-color: #fff !important;*/
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.altcha-label label {
  margin-bottom: 0px;
}



.bg-fixed-fullscreen .altcha-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #ccc;
  width: 1.2em;
  height: 1.2em;
  border-radius: 0.25em;
  cursor: pointer;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s;
}

/* Marca de verificación tipo Bootstrap */
.bg-fixed-fullscreen .altcha-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0.35em;
  width: 0.25em;
  height: 0.5em;
  border: solid white;
  border-width: 0 0.2em 0.2em 0;
  transform: rotate(45deg);
}

.bg-fixed-fullscreen .altcha-checkbox input[type="checkbox"]:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.bg-fixed-fullscreen .altcha-checkbox input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}