


.e-field {
    position: relative;
    width: 100%;
    border: 1px solid #757575;
    border-radius: 10px;
    min-height: 40px;
    margin: 15px 0 15px 0;
    padding: 5px;
}
 

.e-field .content {
    margin-top: 16px;
    width: 100%;
    padding: 0 15px 0 15px;
    box-sizing: border-box;
}

.e-field .label {
    position: absolute;
    font-size: 16px;
    right: 15px;
    line-height: 32px;
    height: 32px;
    top :  -16px;
    transition: all .3s;
    z-index: 999;
    background: #ffffff;
    padding: 0;
    border-radius: 10px;
    color: #757575;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-items: center;
}
 
.e-field.ltr .label{
    right: unset;
    left: 15px;
}
.e-field.ltr .input{
    direction: ltr !important;
    text-align: left !important;
}

.e-field.text .label {
    top : 50%;
    margin-top: -18px;
}

.e-field.focus.primary , .e-field.focus {
    border-color: var(--bs-primary);
}
.e-field.focus.error {
    border-color: var(--bs-danger);
}
.e-field.focus.suscess {
    border-color: var(--bs-success);
}
.e-field.focus.warning {
    border-color: var(--bs-warning);
}
.e-field.focus.info {
    border-color: var(--bs-info);
}
.e-field.focus.primary .label , .e-field.focus .label{
    color: var(--bs-primary);
}
.e-field.focus.error .label {
    color: var(--bs-danger);
}
.e-field.focus.suscess .label {
    color: var(--bs-success);
}
.e-field.focus.warning .label{
    color: var(--bs-success);
}
.e-field.focus.info .label {
    color: var(--bs-info);
}

.e-field .input {
    position: relative;
    line-height: 38.4px;
    height: 38.4px;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    border: none;
    outline: none;
    box-shadow: none;
    z-index: 1000; 
    background: none;
    direction: ltr;
    text-align: right;
}

.e-field .input:focus + .label  , .e-field .input:valid:not(:placeholder-shown) + .label , .e-field .input.not-placeholder + .label{
    top: -14px !important;
    margin-top: 0;
    line-height: 28px;
    height: 28px;
    background: #ffffff;
    font-size: 14px;
}
.e-field .input:disabled + .label  , .e-field .input:valid:not(:placeholder-shown) + .label , .e-field .input.not-placeholder + .label{
    top: -14px !important;
    margin-top: 0;
    line-height: 28px;
    height: 28px;
    background: #ffffff;
    font-size: 14px;
}

 
