.wall-pricing-form,
.wall-pricing-materials,
.wall-pricing-material,
.wall-pricing-material *,
.wall-pricing-floor,
.wall-pricing-floor *,
.wall-pricing-results,
.wall-pricing-results > *,
.wall-pricing-result,
.wall-pricing-result * {
	border: none;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

.wall-pricing-form input:focus {
	outline: none;
}

.wall-pricing-hidden {
	position: fixed !important;
	top: 0px !important;
	left: 0px !important;
	width: 4px !important;
	height: 4px !important;
	opacity: 0 !important;
	overflow: hidden !important;
	border: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: block !important;
	visibility: visible !important;
}

.wall-pricing-materials {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.wall-pricing-material label {
	align-items: center;
	display: flex;
	gap: 5px;
}

.wall-pricing-material label > span:first-child {
	align-items: center;
	background-color: #fff;
	border: solid 1px #333;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	height: 1em;
	justify-content: center;
	padding: 2px;
	width: 1em;
}

.wall-pricing-material input:checked + label span:first-child::before {
	background-color: skyblue;
	border-radius: 50%;
	content: '';
	display: block;
	height: 100%;
	width: 100%;
}

.wall-pricing-floor {
	align-items: center;
	display: flex;
	gap: 15px;
}

.wall-pricing-floor > input {
	border: solid 1px #bbb;
	border-radius: 3px;
	font-size: 15px;
	width: 125px;
	padding: 12.5px 0 12.5px 15px;
}

.wall-pricing-floor fieldset {
	border: solid 1px #bbb;
	border-radius: 2px;
	display: flex;
}

.wall-pricing-floor fieldset label {
	align-items: center;
	background-color: #fff;
	color: skyblue;
	cursor: pointer;
	display: flex;
	justify-content: center;
	padding: 5px;
	width: 100px;
}

.wall-pricing-floor fieldset label:not(:last-child) {
	border-right: solid 1px #bbb;
}

.wall-pricing-floor fieldset input:checked + label {
	background-color: skyblue;
	color: #fff;
}

.wall-pricing-results .title {
	font-size: 20px;
}

.wall-pricing-results > .title:first-of-type {
	padding: 10px 5px;
}

.wall-pricing-results > .title:first-of-type,
.wall-pricing-results > .title:last-of-type ~ p > :first-child,
.wall-pricing-results > p:last-of-type {
	font-weight: bold;
}

.wall-pricing-results > .title:last-of-type ~ p {
	font-size: 20px;
}
.wall-pricing-results > .title:last-of-type ~ p,
.wall-pricing-result:not(:first-of-type) {
	border-top: solid 1px #bbb;
}
.wall-pricing-results > .title:last-of-type ~ p {
	padding: 10px 0;
}
.wall-pricing-results > .title:last-of-type ~ p > :last-child {
	float: right;
}

.wall-pricing-results > p:last-of-type {
	color: red;
}

.wall-pricing-result {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 10px 0 15px calc(1em + 10px);
	position: relative;
}

.wall-pricing-result > :first-child::after {
	content: '\f107';
	display: inline-block;
	font-family: FontAwesome;
}

.wall-pricing-result:hover > :first-child {
	border-bottom: solid 1px #000;
}

.wall-pricing-result label {
	bottom: 0;
	cursor: pointer;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	opacity: 0;
}

.wall-pricing-result + p {
	display: none;
	padding: 0 15px 0 calc(2em + 10px);
	overflow: hidden;
}

.wall-pricing-result + p::after {
	content: '';
	display: block;
	padding-bottom: 15px;
}