/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 06-Jan-2021, 11:13:44
    Author     : daniel
*/

.flex-container{
    display: flex;
    flex-wrap:wrap;
}
.flex-container-row{
    display: flex;
    flex-wrap:wrap;
    flex-direction:column;
}

.flex-item-one {
    flex-grow:1;
    margin:1em;
}
.flex-item-two {
    flex-grow:2;
    margin:1em;
}
.flex-item-three {
    flex-grow:3;
    margin:1em;
}

.flex-item-four {
    flex-grow:4;
    margin:1em;
}

.flex-flow-even{
    flex-flow:space-evenly;
}

.flex-flow-even{
    flex-flow:center;
}