.flex-container {
	display: flex;
	justify-content: center; 
    /* flex-flow: row nowrap; */ 
	/* flex-direction: column; */
    flex-direction: row;
    flex-wrap: nowrap; 
    align-content: stretch;
    background-color: transparent;
    height: 100%;
    padding: 15px;
    gap: 5px;
}

.global_footer_flex-box {
	display: flex;
	flex-direction: column;
}

/* große Viewports */

@media all and (min-width: 30em) {
	.flex-container, globalfooter_flex-box {
		flex-direction: row;
	}
}

.flex-item, .global_footer_flex_item {
	flex: 1 1 0;
	margin: .5em;
	padding: .3em;
	/* min-width: 20em; */
}

.flex-item:nth-of-type(2) {
}

.flex-item:nth-of-type(3) {
}

.flex-item:nth-of-type(4) {
}
