.units-select-floating-div-show{
    display: block;
    position: fixed;
    top: 52%;
    left: 80%;
    transform: translate(-50%, -50%);

    width: auto;
    height: 65vh;
    min-width: 15vw;
    max-width: 35vw;
    
    background: var(--div-body-background-color);
    border: var(--div-border);
    border-radius: 5px;
    box-shadow: var(--floating-selected-box-shadow);
    z-index: 1000;
    text-align: center;
    box-sizing: border-box;
}
.units-select-floating-div-body{
    height: auto;
    max-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; 
    background-color: var(--div-head-first-background-color);
    padding: 1px;
    margin: 1px;
    overflow-y: auto;
    box-sizing: border-box;
}
.units-select-measurement-item{
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    justify-content:flex-start;  
    background-color: var(--div-body-background-color);
    padding: 1px;
    text-align: left;
    border-bottom: var(--div-border);
    /* overflow-x: auto;
    overflow-y: hidden; */
    box-sizing: border-box; 
}
.units-select-measurement-item-name{
    font-weight: bold;
}