﻿
.radio-custom input[type=radio] {
    display: none;
}

.radio-custom label {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.radio-custom input + label::before {
    content: url('../images/icons/toggle/radio-unchecked-24.png');
    width: 24px;
    height: 24px;
    margin-right: 4px;
}

.radio-custom input:checked + label::before {
    content: url('../images/icons/toggle/radio-checked-24.png');
    width: 24px;
    height: 24px;
}

.radio-custom input:hover + label::before {
    content: url('../images/icons/toggle/radio-checked-24.png');
    width: 24px;
    height: 24px;
}

.checkbox-custom input[type=checkbox] {
    display: none;
}

.checkbox-custom label {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.checkbox-custom input + label::before {
    content: url('../images/icons/toggle/checkbox-unchecked-24.png');
    width: 24px;
    height: 24px;
    margin-right: 4px;
}

.checkbox-custom input:checked + label::before {
    content: url('../images/icons/toggle/checkbox-checked-24.png');
    width: 24px;
    height: 24px;
}

.checkbox-custom input:hover + label::before {
    content: url('../images/icons/toggle/checkbox-checked-24.png');
    width: 24px;
    height: 24px;
}
