.SHOW_CURSOR {
    cursor: default;
}

.SHOW_CURSOR input {
    cursor: default;
}

.FLOAT_RIGHT {
    float: right;
}

.FLOAT_LEFT {
    float: left;
}

.DISPLAY {
    display: block;
}

.UNDISPLAY {
    display: none;
}

.UNDISPLAY_IMPORTANT {
    display: none !important;
}

.VISIBLE {
    visibility: initial;
}

.HIDDEN {
    visibility: hidden;
}

textarea:focus,
input:focus,
select:focus {
    border-color: var(--ui-05);
    outline: 0 none;
}