/*--------------------------------------------------------------------------*\
	Container of controls (input, label, unit etc.)
\*--------------------------------------------------------------------------*/

.control {
    /*box*/
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
    width: 100%;
}

/*--------------------------------------------------------------------------*\
	    Display in row
\*--------------------------------------------------------------------------*/

.control--row {
    /*box*/
    flex-direction: row;
    align-items: center;
}

/*--------------------------------------------------------------------------*\
	    Display in column
\*--------------------------------------------------------------------------*/

.control--col {
    /*box*/
    flex-direction: column;
    align-items: flex-start;
}

/*--------------------------------------------------------------------------*\
	    Case of a field inside another field
        (example: a select next to an input)
\*--------------------------------------------------------------------------*/

.control--encapsulated {
    /*box*/
    margin-bottom: 0px !important;
    width: auto !important;
}