html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Poppins', sans-serif;
}

a {
	text-decoration: none;
}

h2 {
	color: #28488e;
	font-weight: 500;
}

.m-numbers {
	color: #e5780d;
	font-size: 1.5em;
	font-weight: 700;
	margin-right: 10px;
}

.m-desc {
	color: #28488e;
	font-weight: 600;
	margin-right: 20px;
}

.scale-with-grid {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}

input::placeholder,
select::placeholder {
	font-size: 13px;
}

input[type='number'],
input[type='text'],
input[type='email'],
input[type='tel'],
select {
	box-sizing: border-box;
	width: 200px;
	height: auto;
	border: 1px solid #e5780d;
	padding: 2px 4px;
	color: #000;
	background-color: #fff;
	font-size: 14px;
	line-height: 14px;
	font-family: 'Poppins', sans-serif;
	border-radius: 10px;
}

input[type="button"] {
	-webkit-appearance: button;
	cursor: pointer;
}

.btn {
	background: #e5780d;
	border: 0;
	border-radius: 10px;
	padding: 10px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
}

#restart_form,
#edit_form {
	font-size: 14px;
	border: solid 2px #e5780d;
	color: #e5780d;
	background: #fff;
}

#myForm {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.column-one {
	flex: 1 1 45%;
	padding: 10px;
}

#myForm p {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.form-label-wrapper {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

#pricing {
	background-color: #E5780D;
	color: #fff;
	padding: 25px;

}

#pricing h2,
#pricing h3,
#pricing p {
	color: #fff;
	text-align: center;
}

#pricingForm {
	max-width: 500px;
	margin: 0 auto;
}

#pricingForm p {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

#pricingForm p span {
	flex-shrink: 0;
	color: #fff;
}

#pricingForm input[type="button"] {
	background: #28488E;
}

#loader {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.75) url(/kalkulator/loading2.gif) no-repeat center center;
	z-index: 10000;
}

#restart {
	display: none;
}

@media (max-width: 768px) {
	#myForm {
		flex-direction: column;
	}

	#myForm p {
		flex-direction: column;
		align-items: start;
		gap: 0;
	}

	#pricingForm p {
		gap: 5px;
	}

	.column-one {
		flex-basis: 100%;
	}


	#pricingForm input[type='number'],
	#pricingForm input[type='text'],
	#pricingForm input[type='email'],
	#pricingForm input[type='tel'],
	#pricingForm select {
		box-sizing: border-box;
		width: 150px;
	}
}