#flexboxIndexParent {
	display: 			flex;
	flex-direction:		row;
	flex-wrap:			wrap;
	justify-content:	center;
	align-items:		stretch;
	align-content: 		stretch;
	row-gap:			20px;
	margin:				20px 0px;
}

.flexboxIndexChild {
	padding:			10px;
	max-width:			295px;
	width:				100%;
	text-align:			center;
	cursor:				pointer;
	border-radius: 		5px;
	margin: 			20px;
	color:				white;
	transform:			scale(1);
	transition:			transform 0.3s ease-out;
}

.flexboxIndexChild:nth-child(1) {	background: var(--green);}
.flexboxIndexChild:nth-child(2) {	background: var(--yellow);}
.flexboxIndexChild:nth-child(3) {	background: var(--red);}

.flexboxIndexChild:hover {
	transform:			scale(1.05);
	transition:			transform 0.3s ease-out;
}

.tableOV {
	margin:				auto;
	border-collapse:	separate;
	border-spacing: 	0; /* for rounded td */
	background-color:	white;
	border:				solid 2px var(--green);
	border-radius:		5px !important;
}

.tableOV tr:nth-child(odd) {
	background-color:	var(--grey4);
}

.tableOV tr:first-child td {
	background-color:	var(--green);
	color: 				white;
}

.tableOV tr:first-child td:first-child { border-radius: 2px 0px 0px 0px;}
.tableOV tr:first-child td:last-child { border-radius: 0px 2px 0px 0px;}

.tableOV td:last-child {
	padding-right:	 	15px;
	padding-left:		5px;
}

.tableOV td:first-child {
	padding-left:	 	15px;
	padding-right:		5px;
}

.tableOV tr:first-child td {
	padding:	 		15px;
	font-weight:	 	bold;
}
.tableOV td {
	padding:	 		5px;
}

.tableOV tr:last-child td {
	padding-bottom:	 	15px;
}

.tableOV img {
	position:		 	relative;
	top:				2px;
}

#fieldsetRegistration {
	border:			solid 1px var(--green);
	border-radius:	5px;
	padding-top:	20px;
	display: 		inline-block;
}

#fieldsetRegistration legend {
	background-color:		var(--green);
	color:					white;
	border-radius:			5px;
	padding:				2px 10px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: 	textfield;
	width:				30px;
	height:				30px;
	font-size:			20px !important;
	margin: 			0;
	text-align: 		center;
}

input[type=file] {
	display:					inline-block;
	cursor:						pointer;
	border:						none;	
}

.imgBlob {
	max-width:		360px;
	max-height:		150px;
	box-shadow:		3px 3px 5px var(--grey1);
	border-radius:	5px;
}