/* CSS Document */
input[type="checkbox"]{
    display: none;
}
input[type="checkbox"] + label span{
    display: inline-block;
    /*
    Estas son las medidas reales de la imágen, si reducimos tiene que ser proporcionalmente, asi evitamos el transform:scale
    width: 68px;
    height: 63px;
    */
    width: 17px;
    height: 16px;
    background-image: url(../img/checks.png);
    background-position: -0px;
    background-repeat: no-repeat;
    background-size: cover;
    cursor:pointer;
    margin-right: 5px;
   /* transform: scale(0.3);*/
}
input[type="checkbox"]:checked + label span{
    background-position: -17px !important;

}

input[type="checkbox"]:disabled + label span{
    background-position: -51px  !important;
    cursor: default;
}

input[type="checkbox"] + label{
    display: flex;
    align-items: center;
    padding-top: 3px;

}

input[type="checkbox"] + label div{
    margin-left: 2px;
    font-size: 16px;
}
input[type="checkbox"] + label div a{
    font-family: MontserratRegular;
    text-decoration: underline;
    color: inherit;
}
.campo_check_error{
    background-position: -33.8px !important;
}
