.G_full {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.G_relFull {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.G_rel0 {
	position: relative;
	left: 0;
	top: 0;
}

.G_absFull {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.G_abs0 {
	position: absolute;
	left: 0;
	top: 0;
}

.G_flex {
	display: flex;
}

.G_flexCenter {
	display: flex;
	justify-content: center;
	align-items: center;
}

.G_grid { /* apply for minmax! */
	display: grid;
}

.G_gridCenter { /* apply for minmax! */
	display: grid;
	justify-items: center;
	align-items: center;
}

.G_disabled {
	color: lightsteelblue;
	pointer-events: none;
}

.G_button {
	color: var( --mainGrayColor );
/*	background: linear-gradient(135deg, var( --second_bkg_highlite_hsl_color_0-20 ) -10%, white 45%, var( --second_bkg_highlite_hsl_color_0-20 ) 110%);*/
	background-color: var( --CTAcolorHSL );
	box-shadow: var( --m_CTAshadow );
}
/*
.G_grid > div {
}*/