/*-------------------------LxControls-------------------------*/
.textBox, .glyphTextBox, .memo{
    background: white;    
}

.textBox, .memo, .button, .enterButton{
    box-sizing: border-box;
    outline: none;
    margin: 0px;
}

.textBox, .glyphTextBox, .memo, input[type=password], .jqx-numberinput input {
     outline: none;
     padding: 4px 5px !important; /* !important для numberInput*/     
}
   
.checkBox {         
     padding: 0px;
     margin: 0px;    
}

input::-ms-clear {
    display: none;
    height: 0px;
    width: 0px;
}

/*-------------------------button -------------------------*/
.button, .enterButton, .buttonMobile {
    font-weight: bold;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.button {    
    padding:0px;     
}   

.enterButton {    
    box-sizing: border-box;
    width: 120px;    
    color: white;
    border-width:0px;
    padding: 0;
    margin: 0;
    border-bottom-width: 2px;   
    border-bottom-style: solid
}

    .enterButton:active     {
        border-top-width: 2px ;
        border-top-style: solid;
        border-bottom: none;
    }

.buttonMobile { 
    color: rgb(0, 0, 0);
    font-size: 13px;    
    padding:0px;             
    transition-duration:0.2s;    
}

    .buttonMobile:active {
        outline: none;
        color: rgb(0, 0, 0);        
        -webkit-box-shadow: 0px 1px 6px 0px  rgba(212, 224, 238, 1) inset;
        -moz-box-shadow: 0px 1px 6px 0px  rgba(212, 224, 238, 1) inset;
        box-shadow: 0px 1px 6px 0px  rgba(212, 224, 238, 1) inset;         
    }

/*-----------memo--------------*/
.memo_popupContent {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position:relative;
    box-sizing: border-box;
}

.memo_popupContent_textarea{
    height: 100%;
    width: 100%;
    resize: none;
    box-sizing: border-box;
}


.memo_popupContent_buttonContainer {
    text-align: right;
    padding: 10px;
    bottom: 0px;
    position: absolute;
    width: 100%;
    box-sizing: border-box;
}

.memo_popupContent_button {
    margin-left: 10px;
    width: 100px;
}