body{
    font-size: 14px;
}
body * {
    font-family: Verdana, Tahoma, Arial;
}
.auto-ellipsis{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently, supported by Chrome and Opera */
}
.hide{
    display: none;
}
.invisible{
    visibility: hidden;
}
[data-trans]{
    visibility: hidden; /*hide when not translated*/
}
.help-tips{
    display: none;
}

input[type=text], input[type=password], input[type=number], select {
    width: 100%;
    margin: 0;
    padding: 0 4px;
    height: 28px;
    line-height: 28px;
    border: 1px solid gray;
    box-sizing: border-box;
    font-size: 14px;
    background-color: white;
}
select{
    padding: 0;
}
input[disabled]{
    background: lightgray;
    color: gray;
}
input.disabled{
    background: lightgray;
    color: gray;
    pointer-events: none;
}
input[readonly],
textarea[readonly]{
    pointer-events: none;
}
textarea{
    width: 100%;
    margin:0;
    padding: 2px 4px;
    min-height: 28px;
    max-height: 200px;
    border: 1px solid gray;
    box-sizing: border-box;
    font-size: 14px;
    vertical-align: top;
}

*[normal-authority], *[admin-authority], 
*[only-normal-authority], *[only-viewer-authority] {
    display: none!important;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: darkgray;
}
::-moz-placeholder { /* Firefox 19+ */
    color: darkgray;
}
:-ms-input-placeholder { /* IE 10+ */
    color: darkgray;
}
:-moz-placeholder { /* Firefox 18- */
    color: darkgray;
}

.btn{
    cursor: pointer;
    border: none;
    border-radius: 6px;
    text-align: center;
    -webkit-appearance: none;
    height: 28px;
    padding: 0 12px;
    font-size: 14px;
}

.clear-after::after{ /*used to clear float*/
    content: '';
    clear: both;
    display: block;
}

.not-implemented{
    opacity: 0.7;
    text-decoration: line-through;
}
.stretch-page{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.uppercase{
    text-transform: uppercase;
}

.required-mark::after {
    content: ' *';
    color: red;
}