.hcheckbox{
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    position: relative;
    width: 14px;
    height: 14px;
    margin-bottom: 2px;
    border: 1px solid #a0a0a0;
}
.hcheckbox.hover{
    border-color: #3471f7;
}
.hcheckbox.checked{
    background: #326ff7;
    border-color: #3471f7;
}
.hcheckbox.checked:before{
    position: absolute;
    left: -1px;
    top: -1px;
    width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    display: block;
    content: "\2713";
    font-size: 12px;
    color: #fff;

}
.hcheckbox.disabled{
    border-color: #bbb;
}
.hcheckbox input[type="checkbox"]{
    position: absolute;
    top: -50%;
    left: -50%;
    width: 140%;
    height: 140%;
    padding: 0;
    border: none;
    outline: none;
    opacity: 0;
}
.hradio{
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    position: relative;
    width: 14px;
    height: 14px;
    border: 1px solid #a0a0a0;
    border-radius: 50%;
    margin-bottom: 4px;
}
.hradio.hover{
    border-color: #3471f7;
}
.hradio.checked{
    background: #326ff7;
    border-color: #3471f7;
}
.hradio.checked:before{
  /*  position: absolute;
    left: -1px;
    top: -1px;
    width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    display: block;
    content: "\2713";
    font-size: 12px;
    color: #fff;*/
    position: absolute;
    left: 4.5px;
    top: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    /* line-height: 14px; */
    text-align: center;
    display: block;
    content: "";
    font-size: 12px;
    background-color: #fff;
}
.hradio.disabled{
    border-color: #bbb;
}
.hradio input[type="radio"]{
    position: absolute;
    top: -50%;
    left: -50%;
    width: 140%;
    height: 140%;
    padding: 0;
    border: none;
    outline: none;
    opacity: 0;
}
