/* los checkboxes */
#c1 input:checked ~ .checkmark {
background-color: #FFFFFF;
}

/* Contenedor */
.containercheck {
  display: block;
  position: relative;
}

/* escondemos el default checkbox */
.containercheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* creamos un custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 17px;
  width: 18px;
  border-radius: 4px;
  background: #FFFFFF;
}

/* Al pasar el mouse encima, lo ponemos gris */
.containercheck:hover input ~ .checkmark {
  background-color: #ccc;
}

/* creamos el marcador (escondido al no seleccionar) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* mostramos el marcador al seleccionar */
.containercheck input:checked ~ .checkmark:after {
  display: block;
}

/* estilo del marcador */
.containercheck .checkmark:after {
  left: 6px;
  top: 1px;
  width: 7px;
  height: 13px;
  border: solid #000000;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/*checkbox formulario propietario*/
/* los checkboxes */
#c2 input:checked ~ .checkmark2 {
background-color: #f47a20;
}

/* Contenedor */
.containercheck2 {
  display: block;
  position: relative;
}

/* escondemos el default checkbox */
.containercheck2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* creamos un custom checkbox */
.checkmark2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  background: #ccc;
}

/* Al pasar el mouse encima, lo ponemos gris */
.containercheck2:hover input ~ .checkmark2 {
  background-color: #f47a20;
}

/* creamos el marcador (escondido al no seleccionar) */
.checkmark2:after {
  content: "";
  position: absolute;
  display: none;
}

/* mostramos el marcador al seleccionar */
.containercheck2 input:checked ~ .checkmark2:after {
  display: block;
}

/* estilo del marcador */
.containercheck2 .checkmark2:after {
  left: 6px;
  top: 1px;
  width: 8px;
  height: 15px;
  border: solid #FFFFFF;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}