﻿::-ms-clear, ::-ms-reveal {
    display: none;
    background-color: transparent;
}

.fieldBody {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    
}

.fieldLabelDiv {
    position: absolute;
    left: 0px;
    width: 100px;
    height: 100%;
    text-align: right;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    cursor: default;
}

.fieldInputDiv {
    position: absolute;
    left: 105px;
    right: 0px;
    height: 100%;
    box-shadow: 0px 0px 2px #888888 inset;
    border-radius: 2px;
    overflow: hidden;
    background-color: #FFFFFF;
    transition: background-color linear 200ms;
}

.fieldInputDivError {
    position: absolute;
    left: 105px;
    right: 0px;
    height: 100%;
    background-color: #FFB5B5;
    border-radius: 2px;
    overflow: hidden;
    transition: background-color linear 200ms;
}

.fieldInput {
    position: absolute;
    left: 1px;
    width: 100%;
    top: 2px;
    padding-left: 3px;
    padding-right: 3px;
    border: none;
    background-color: transparent;
    outline: none;
    font-family: 'Segoe UI', sans-serif;
    font-size: medium;
}
