section .input-section {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
section .input-wrapper.text {
	width: 48%;
	min-width: 12rem;
}
section .result {
	margin-top: 3rem;
	padding: 2rem 2.5rem;
	background-color: var(--color-dark-white);
	border-radius: 0.5em;
}
section .error {
	margin-top: 3rem;
	padding: 2rem 2.5rem;
	border-radius: 0.5em;
	color: #d32f2f;
	border: 1px solid #d32f2f;
}
section .hidden {
	display: none;
}
section .result {
	color: var(--oz-color-cyan);
}
section .calculated-value {
	font-weight: bold;
}
section h2 {
	margin-top: 3rem;
}
section .grid-container {
	display: flex;
	gap: 0;
	height: 80px;
}
section .grid-column {
	background-color: var(--color-gray);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-light-white);
}