/* needs margin set to zero. */
.figureNoMarginRelative {
    position: relative;
    margin: 0px;
    padding: 0px;
}

/* -------- Division ---------- */




.divImageSa {
    width: 400px;
    margin: 4px;
    padding:0;
}

.navElement1 {
    margin: 8px;
}


/**** FLEX BOXES ****/
.flexWrapper {
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.flexBoxMargin {
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 2%
    
}
 
/* justify-content can be set to start, but then an alternate for mobile devices has to be defined with center */
.flexBoxItemContainer {
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  



