
.ui-input {
    background: transparent;
    border-image: url('../Img/UI_TextInputField.png') 7 fill stretch;
    border-width: 7px;
    border-style: solid;
    padding: 2px 6px;
    color: #fff;
    font-family: 'Silkscreen', sans-serif;
    font-size: calc(14px + var(--font-offset));
    outline: none;
    box-sizing: border-box;
    display: block;
    min-height: 32px;
    appearance: none;
    -webkit-appearance: none;
}

.ui-input::placeholder {
    color: #666;
}

.ui-checkbox {
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}

.ui-checkbox:not(.checked) {
    background-image: url('../Img/UI_Checkbox_Unchecked_Normal.png');
}
.ui-checkbox:not(.checked):hover {
    background-image: url('../Img/UI_Checkbox_Unchecked_Hovered.png');
}

.ui-checkbox.checked {
    background-image: url('../Img/UI_Checkbox_Checked_Normal.png');
}
.ui-checkbox.checked:hover {
    background-image: url('../Img/UI_Checkbox_Checked_Hovered.png');
}

.ui-radio {
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}

.ui-radio:not(.checked) {
    background-image: url('../Img/UI_Checkbox_Unchecked_Normal.png');
}
.ui-radio:not(.checked):hover {
    background-image: url('../Img/UI_Checkbox_Unchecked_Hovered.png');
}
.ui-radio.checked {
    background-image: url('../Img/UI_Checkbox_Checked_Normal.png');
}
.ui-radio.checked:hover {
    background-image: url('../Img/UI_Checkbox_Checked_Hovered.png');
}

input[type="checkbox"].ui-checkbox-native,
input[type="radio"].ui-radio-native {
    display: none;
}

