/* div inputs*/
.inputs-row{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
}

.inputs-column{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* div input */
.div-input{
    position: relative;
    display: flex;
    flex-direction: column;
}

/* inputs */
.input-std{
    text-align: center;
    border:rgb(74, 74, 74) solid 1px;
}

.input-error{
    text-align: center;
    color: var(--errorColor);
    font-size: 12px;
    font-weight: bold;
}

.input-unabled{
    border:rgb(144, 142, 142) solid 1px;
    color:rgb(144, 142, 142)
}

.invalid-input{
    border: var(--errorColor) solid 2px;
}

/* labels */
.label-std{
    position: absolute;
    left: 8px;
    top: -8px;
    padding: 0px 5px;
    background-color: white;
    font-size: 13px;
}

.label-unabled{
    color:rgb(96, 95, 95)
}

.invalid-label{
    color: var(--errorColor);
    font-weight: bold;
}


/* inputs and select width */
.iw-s{
    width: 100px;
}

.iw-m{
    width: 150px;
}

.iw-l{
    width: 200px;
}

.iw-xl{
    width: 250px;
}

.iw-xxl{
    width: 300px;
}

.iw-300{
    width: 300px;
}

.sw-xxl{
    width: 315px;
}

.iw-xxxl{
    width: 350px;
}

/* inputs paddings */
.ip-m{
    padding: 7px;
}

.ip-l{
    padding: 11px;
}

/* div checkboxs */
.checks-row{
    display: flex;
    column-gap: 15px;
}

/* checkboxs */
.check-std{
    display: flex;
    column-gap: 1px;
    align-items: center;
    justify-content: center;
}

/* checkboxs labels */
.check-label-std{
    font-size: 13px;
}


