.check{
    width: 100%;
    margin: 5px 0px;
    position: relative;
    display: inline-block;
}

.check:active > .check-circle,
.check:focus > .check-circle,
.check:hover > .check-circle{
    box-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    cursor: pointer;
}

.check:active > .check-label,
.check:focus > .check-label,
.check:hover > .check-label{
    cursor: pointer;
    color: #000;
}

.check > .check-circle{
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background-color: #ddd;
    position: absolute;
}

.check > .check-circle > .fa{
    color: #4f4f4f;
    font-weight: normal;
    padding: 3px 0px 0px 3px;
    margin: 0px;
    font-size: 14px;
    display: none;
}

.check:active > .check-circle > .fa,
.check:focus > .check-circle > .fa,
.check:hover > .check-circle > .fa{
    display: block;
}

.check.active > .check-circle{
    background-color: #1976d2;
}

.check.active > .check-circle > .fa{
    display: block;
    color: #fff;
}

.check > .check-label{
    display: inline-block;
    padding: 4px 8px;
    margin-left: 20px;
}

.check > .check-children{
    margin-left: 20px;
}

.check.disable > .check-circle{
    
}

.check.disable:active > .check-circle,
.check.disable:focus > .check-circle,
.check.disable:hover > .check-circle{
    box-shadow: 0px 0px 0px transparent;
}

.check.disable:active > .check-circle > .fa,
.check.disable:focus > .check-circle > .fa,
.check.disable:hover > .check-circle > .fa{
    display: none;
}