/* ==== ==== ==== Radio / Checkbox  ==== ==== ==== */
input[type="radio"],
input[type="checkbox"] {
    height: 18px;
    width: 18px;
    min-width:18px;
    min-height:18px;
    margin-top: -1px;
    vertical-align: middle;
    border: 1px solid var(--checkboxT1_1_unselectedBordrColor);
    background-color: var(--checkboxT1_1_unselectedBGColor);
    -webkit-appearance: none;
    -webkit-transition: box-shadow 200ms;
}

input[type="radio"] {
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

input[type="checkbox"] {
    -webkit-border-radius: 2px;
    border-radius: 4px;
}

input[type="radio"]:not(:disabled):hover,
input[type="checkbox"]:not(:disabled):hover {
    border-color: var(--checkboxT1_1_selectedBorderColor);
}

input[type="radio"]:active:not(:disabled),
input[type="checkbox"]:active:not(:disabled) {
    border-color: var(--checkboxT1_1_disabledBorderColor);
}

input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: none;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
    border-color: var(--checkboxT1_1_selectedBorderColor);
    background-color: var(--checkboxT1_1_selectedBGColor);
}

input[type="radio"]:checked:before {
    display: block;
    height: 8px;
    width: 8px;
    position: relative;
    left: 4px;
    top: 4px;
    background: #fff;
    border-radius: 100%;
    content: '';
}

input[type="checkbox"]:checked:before {
    content: '';
    display: block;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 5px;
    margin-top: 2px;
}

input:disabled {
    box-shadow: none;
    box-shadow: none;
}

label.fb-checkbox,
label.fb-radio {
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 2px;
    margin-bottom: 2px;
}