.SbizChkBx {
    display: none !important;
}

.SbizChkBx + label {
    background-color: silver;
    border: 1px solid black;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 6px;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    /*font-family: var(--theme-font1);  */
    font-size: 12px;
    min-width: 30px;
    text-align: right;
    cursor: pointer;
}

.SbizChkBx + label:active, .SbizChkBx:checked + label:active {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);

}

.SbizChkBx:checked + label {
    background-color: black;
    border: 1px solid black;
    color: white;
    top: 0px;
}

.SbizChkBx:checked + label::after {

    content: '\2714';
    font-size: 10px;
    font-weight: bolder;
    position: absolute;
    top: 0px;
    left: 5px;
    color: white;
}

.SbizChkBx1 {
    display: none !important;

}

.SbizChkBx1 + label {
    font-size: 20px !important;

}

.SbizChkBx1 + span:before {
    font-family: FontAwesome;
    font-size: 18px !important;
    content: '\f0c8'; /*'\f111'*/;
    margin-right: 2px;
    width: 1em;
    vertical-align: middle;
    color: black;

}

.SbizChkBx1:checked + span:before {
    content: '\f14a';
}

.SbizRBtnLbl {
    cursor: pointer;
    font-weight: bold;
    margin-top: 5px !important;
    margin-left: 5px !important;

}

.SbizRBtnLbl input[type="radio"] {
    display: none;
}

.SbizRBtnLbl input[type="radio"]:checked + .SbizRBtnSpn::before {
    transform: scale(1);
}

.SbizRBtnLbl .SbizRBtnSpn {
    float: left;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid black;
    margin-right: 5px;
    display: inline-block;
    position: relative;
    vertical-align: -4px;
}

.SbizRBtnLbl .SbizRBtnSpn::before {
    content: '';
    width: 6px;
    height: 6px;
    background: black;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    margin-left: -3px;
    margin-top: -3px;
    transform: scale(0);
    transition: all 0.3s ease;
}

.SbizRBtnLbl input[type="radio"]:checked + .SbizRBtnSpn2::before {
    transform: scale(1) !important;
}

.SbizRBtnLbl .SbizRBtnSpn2 {
    float: left;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid black;
    margin-right: 5px;
    display: inline-block;
    position: relative;
    vertical-align: -4px;
}

.SbizRBtnLbl .SbizRBtnSpn2::before {
    content: '';
    width: 6px;
    height: 6px;
    background: black !important;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    margin-left: -3px;
    margin-top: -3px;
    transform: scale(0);
    transition: all 0.3s ease;
}