#the_fluids
{
    display: block;
    position: absolute;
    top: calc(50% - (var(--sz_margin) + 10px ) );
    left: 50%;
    width: 80%;
    transform: translate(-50%,-50%);
    z-index: 1000;
    border-radius: calc(5 * var(--sz_margin));
}
    #the_fluids h1
    {
        font-family: kids_points;
        text-align: center;
    }
    #the_fluids label
    {
        font-family: kids_points;
        margin-bottom: calc(2  * var(--sz_margin));
        display: inline-block;
    }
    #the_fluids input
    {
        font-size: 2em;
    }
    #the_fluids button
    {
        background-color: var(--color_green);
        border: 2px solid black;
        border-radius: calc(3* var(--sz_margin));
        padding: calc(2 * var(--sz_margin));
    }
    #the_fluids .quickset
    {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: calc(2 * var(--sz_margin));
        margin-bottom: calc(2  * var(--sz_margin));
    }
        #the_fluids .quickset > div
        {
            height: var(--sz_icons);
            border:3px solid black;
            border-radius: calc(2 * var(--sz_margin));
            background-position: center center;
            background-repeat: no-repeat;
            background-size: 30px;
            background-color: var(--color_blue);
        }
        #the_fluids .quickset .caprisun
        {
            background-image: url('kidspoints/icon_caprisun.png');
            background-size: 100px;
        }
        #the_fluids .quickset .kids_water
        {
            background-image: url('kidspoints/icon_baby_water.png');
            background-size: 20px;
        }
    #the_fluids .error
    {
        outline: 3px dashed red;
        outline-offset: calc(1 * var(--sz_margin));
        border-radius: calc(2 * var(--sz_margin));
    }

    #the_fluids .close
    {
        display: flex;
        position: absolute;
        justify-content: center;
        align-items: center;
        height: var(--sz_icons);
        width: var(--sz_icons);
        border: 2px solid white;
        background-color: var(--color_blue);
        color: white;
        bottom: -65px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 50%;
    }