.simpleCheck{
    width: 15px;
    height: 15px;
}

.simpleCheck.switch{
    width: 45px;
    height: 15px;
    visibility: hidden;
}

/*Light Theme*/
.simpleCheck::after{
    content: url('../image/checkplugin/light/checkbox.svg');
}

.simpleCheck.simpleCheck-checked::after{
    content: url('../image/checkplugin/light/checkbox_checked.svg');
}

.simpleCheck.simpleCheck-disabled::after{
    content: url('../image/checkplugin/light/checkbox_disabled.svg');
}

.simpleCheck.simpleCheck-disabled.simpleCheck-checked::after{
    content: url('../image/checkplugin/light/checkbox_disabled_checked.svg');
}

.simpleCheck.radio::after{
    content: url('../image/checkplugin/light/radio.svg');
}

.simpleCheck.radio.simpleCheck-checked::after{
    content: url('../image/checkplugin/light/radio_checked.svg');
}

.simpleCheck.radio.simpleCheck-disabled::after{
    content: url('../image/checkplugin/light/radio_disabled.svg');
}

.simpleCheck.radio.simpleCheck-disabled.simpleCheck-checked::after{
    content: url('../image/checkplugin/light/radio_disabled_checked.svg');
}

.simpleCheck.switch::after{
    visibility: initial;
    content: url('../image/checkplugin/light/switch_off.svg');
}

.simpleCheck.switch.simpleCheck-checked::after{
    content: url('../image/checkplugin/light/switch_on.svg');
}

.simpleCheck.switch.simpleCheck-disabled::after{
    content: url('../image/checkplugin/light/switch_disabled.svg');
}

.simpleCheck.switch.simpleCheck-disabled.simpleCheck-checked::after{
    content: url('../image/checkplugin/light/switch_disabled_on.svg');
}

/*Dark Theme*/
.simpleCheck.dark::after{
    content: url('../image/checkplugin/dark/checkbox.svg');
}

.simpleCheck.dark.simpleCheck-checked::after{
    content: url('../image/checkplugin/dark/checkbox_checked.svg');
}

.simpleCheck.dark.simpleCheck-disabled::after{
    content: url('../image/checkplugin/dark/checkbox_disabled.svg');
}

.simpleCheck.dark.simpleCheck-disabled.simpleCheck-checked::after{
    content: url('../image/checkplugin/dark/checkbox_disabled_checked.svg');
}

.simpleCheck.dark.radio::after{
    content: url('../image/checkplugin/dark/radio.svg');
}

.simpleCheck.dark.radio.simpleCheck-checked::after{
    content: url('../image/checkplugin/dark/radio_checked.svg');
}

.simpleCheck.dark.radio.simpleCheck-disabled::after{
    content: url('../image/checkplugin/dark/radio_disabled.svg');
}

.simpleCheck.dark.radio.simpleCheck-disabled.simpleCheck-checked::after{
    content: url('../image/checkplugin/dark/radio_disabled_checked.svg');
}

.simpleCheck.dark.switch::after{
    visibility: initial;
    content: url('../image/checkplugin/dark/switch_off.svg');
}

.simpleCheck.dark.switch.simpleCheck-checked::after{
    content: url('../image/checkplugin/dark/switch_on.svg');
}

.simpleCheck.dark.switch.simpleCheck-disabled::after{
    content: url('../image/checkplugin/dark/switch_disabled.svg');
}

.simpleCheck.dark.switch.simpleCheck-disabled.simpleCheck-checked::after{
    content: url('../image/checkplugin/dark/switch_disabled_on.svg');
}
