﻿/* Customize the label (the container) */
.container {
    display: block;
    position: relative;
    padding-left: 235px;
    margin-left:50px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}




.ListControl input[type=checkbox], input[type=radio] {
    display: none;
}

.ListControl label {
    display: inline;
    float: left;
    color: #000;
    cursor: pointer;
    text-indent: 30px;
    white-space: nowrap;
}

.ListControl input[type=checkbox] + label {
    display: block;
    width: 1.5em;
    height: 1.5em;
    border: 0.0625em solid rgb(192,192,192);
    border-radius: 0.25em;
    background: rgb(211,168,255);
    background-image: -moz-linear-gradient(rgb(240,240,240),rgb(211,168,255));
    background-image: -ms-linear-gradient(rgb(240,240,240),rgb(211,168,255));
    background-image: -o-linear-gradient(rgb(240,240,240),rgb(211,168,255));
    background-image: -webkit-linear-gradient(rgb(240,240,240),rgb(211,168,255));
    background-image: linear-gradient(rgb(240,240,240),rgb(211,168,255));
    vertical-align: middle;
    line-height: 1.5em;
    font-size: 18px;
}

.ListControl input[type=checkbox]:checked + label::before {
    content: "\2714";
    color: #ff0000;
    height: 1.5em;
    line-height: 1.6em;
    width: 2.5em;
    font-weight: 600;
    margin-right: 12px;
    margin-left: -25px;
}

.ListControl input[type=radio] + label {
    display: block;
    width: 1.5em;
    height: 1.5em;
    border: 0.0625em solid rgb(192,192,192);
    border-radius: 0.25em;
    background: rgb(211,168,255);
    background-image: -moz-linear-gradient(rgb(240,240,240),rgb(211,168,255));
    background-image: -ms-linear-gradient(rgb(240,240,240),rgb(211,168,255));
    background-image: -o-linear-gradient(rgb(240,240,240),rgb(211,168,255));
    background-image: -webkit-linear-gradient(rgb(240,240,240),rgb(211,168,255));
    background-image: linear-gradient(rgb(240,240,240),rgb(211,168,255));
    vertical-align: middle;
    line-height: 1.5em;
    font-size: 18px;
}

.ListControl input[type=radio]:checked + label::before {
    content: "\2716";
    color: #fff;
    display: inline;
    width: 1em;
    height: 1em;
    margin-right: 6px;
    margin-left: -20px;
}

Single Checkbox:
.CheckBoxLabel {
    white-space: nowrap;
}

.SingleCheckbox input[type=checkbox] {
    display: none;
}

.SingleCheckbox label {
    display: block;
    float: left;
    color: #000;
    cursor: pointer;
}

.SingleCheckbox input[type=checkbox] + label {
    width: 1em;
    height: 1em;
    border: 0.0625em solid rgb(192,192,192);
    border-radius: 0.25em;
    background: rgb(211,168,255);
    background-image: -moz-linear-gradient(rgb(240,240,240),rgb(211,168,255));
    background-image: -ms-linear-gradient(rgb(240,240,240),rgb(211,168,255));
    background-image: -o-linear-gradient(rgb(240,240,240),rgb(211,168,255));
    background-image: -webkit-linear-gradient(rgb(240,240,240),rgb(211,168,255));
    background-image: linear-gradient(rgb(240,240,240),rgb(211,168,255));
    vertical-align: middle;
    line-height: 1em;
    text-indent: 20px;
    font-size: 14px;
}

.SingleCheckbox input[type=checkbox]:checked + label::before {
    content: "\2714";
    color: #ff0000;
    height: 1.5em;
    line-height: 1.6em;
    width: 2.5em;
    font-weight: 600;
    margin-right: 12px;
    margin-left: -25px;
}
