/*Estilos para el checkbox*/
/* Personalizamos la etiqueta label*/
.contenedor-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
  }
  
  /* Ocultamos al navegador el checkbox por defecto*/
  .contenedor-checkbox input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer;

  }
  
  /* Creamos un checkbox personalizado*/
  .sustituto-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }
  
  /* Cuando pasamos por encima del checkbox, añadimos un color de fondo gris*/
  .contenedor-checkbox:hover input[type=checkbox] ~ .sustituto-checkbox {
    background-color: #ccc;
  }
  
  /* Cuando seleccionamos el checkbox, le añadimos un color de fondo */
  .contenedor-checkbox input[type=checkbox]:checked ~ .sustituto-checkbox {
    background-color: rgba(62, 188, 207, 0.96);
  }
  
  /* Creamos el check / indicador (ocultamos cuando no está marcado / chequeado) */
  .sustituto-checkbox::after {
    content: '';
    position: absolute;
    display: none;
  }
  
  /* Mostramos el checkbox cuando está chequeado */
  .contenedor-checkbox input[type=checkbox]:checked ~ .sustituto-checkbox::after {
    display: block;
  }
  
  /* Le damos estilo / diseño a ese checkbox */
  .contenedor-checkbox .sustituto-checkbox::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);
    
  }
  /*hasta aquí estilos para checkbox*/
  /*Desde aquí estilos para radio buttons*/
  /* Personalizamos la etiqueta label de los radio buttons */
.contenedor-radio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
  }
  
  /* Ocultamos al navegador el radio button por defecto */
  .contenedor-radio input[type=radio] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
   
  }
  
  /* Creamos un radio button personalizado */
 .sustituto-radio {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eeeeee;
    border-radius: 50%;
  }
  
  /* Cuando pasamos el ratón por encima del radio button, se muestra un fondo de color gris */
  .contenedor-radio:hover input[type=radio] ~ .sustituto-radio {
    background-color: #9d9999;
  }
  
  /* Cuando el radio button es seleccionado, le añadimos un color de fondo personalizado */
  .contenedor-radio input[type=radio]:checked ~ .sustituto-radio {
    background-color: rgba(62, 188, 207, 0.96);
  }
  
  /* Creamos el indicador del radio button  (el circulito, que se oculta cuando el radio button no está seleccionado */
  .sustituto-radio::after {
    content: '';
    position: absolute;
    display: none;
  }
  
  /* Mostramos el indicador (el circulito) cuando el radio button está seleccionado */
  .contenedor-radio input:checked ~ .sustituto-radio::after {
    display: block;
  }
  
  /* Damos estilo al indicador del radio button */
  .contenedor-radio .sustituto-radio::after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(248, 248, 245);
  }/*Hasta aquí estilos de radio buttons*/