
.label {
    font: normal var(--font-size-base)/150% var(--font-family-base);
    color: #000000;
    margin-top: 3px;
}

.label-error {
    font: normal var(--font-size-base)/150% var(--font-family-base);
    color: var(--error-color);
    margin-top: 3px;
}

.txtbox {
    border: 1px solid var(--main-color) !important;
    border-color: var(--main-color) !important;
    font-size: var(--font-size-base) !important;
    font-family: var(--font-family-base) !important;
}

.txtbox[readonly] {
    background-color: var(--primary-color-1-light-7);
    color: var(--primary-color-1);
}

.txtbox[disabled] {
    background-color: var(--primary-color-1-light-7);
    color: var(--primary-color-1);
}

.txtbox::-ms-clear {
    display: none;
}

.txtbox.errorMsg {
    border-color: var(--error-color);
    outline: none;
}

/*
 * Div Container
 */

.errorMsg {
    color: var(--error-color);
    font-size: var(--font-size-base);
}

.clearable {
    background-image: url(../images/clearable.png);
    background-repeat: no-repeat;
    background-position: right -10px center;
    padding-right: 18px; /* USE the same right padding in jQ! */
}

/* (jQ addClass:) if input has value: */
.clearable.x {
    background-position: right 5px center;
}

/* (jQ addClass:) if mouse is over the 'x' input area*/
.clearable.onX {
    cursor: pointer;
}

.euro {
    background-image: url(../images/euro.png);
    background-repeat: no-repeat;
    background-position: right -2px top;
    padding-right: 12px; /* USE the same right padding in jQ! */
}

.dollaro {
    background-image: url(../images/dollaro.png);
    background-repeat: no-repeat;
    background-position: right -2px top;
    padding-right: 12px; /* USE the same right padding in jQ! */
}

.sterlina {
    background-image: url(../images/sterlina.png);
    background-repeat: no-repeat;
    background-position: right -2px top;
    padding-right: 12px; /* USE the same right padding in jQ! */
}

.generic_currency {
    background-image: url(../images/generic_currency.png);
    background-repeat: no-repeat;
    background-position: right -2px top;
    padding-right: 12px; /* USE the same right padding in jQ! */
}

.perc {
    background-image: url(../images/perc.png);
    background-repeat: no-repeat;
    background-position: right top;
    padding-right: 18px; /* USE the same right padding in jQ! */
}

.srcfld {
    background-image: url(../images/cerca.png);
    background-repeat: no-repeat;
    background-position: right 2px top 1px;
    padding-right: 12px; /* USE the same right padding in jQ! */
}

.mm {
    background-image: url(../images/mm.png);
    background-repeat: no-repeat;
    background-position: right 2px top 1px;
    padding-right: 18px; /* USE the same right padding in jQ! */
}

.deg {
    background-image: url(../images/deg.png);
    background-repeat: no-repeat;
    background-position: right -2px top 1px;
    padding-right: 10px; /* USE the same right padding in jQ! */
}

.custom-combobox {
    top: 0;
}

.custom-combobox-toggle {
    /*position: absolute;*/
    top: 0;
    bottom: 0;
    margin-left: -1px;
    padding: 0;
    height: 16px;
    border: 1px solid var(--main-color) !important;
}

.custom-combobox input {
    vertical-align: middle;
    height: 14px;
    margin-right: 0;
}

.custom-combobox input[readonly] {
    background-color: white;
    color: black;
}

.oneline {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.nofocus:focus {
    outline: none;
}

input[type="time"]::-webkit-calendar-picker-indicator {
     width: 15px;
     height: 15px;
     margin-top: -2px;
     margin-bottom: -2px;
}