.grouping {
	position: relative;
	display: flex;
	flex-direction: row;
	margin: 20px 0;
}
.group {
	width: 50%;
	padding-right: 24px;
	padding: 20px;
	padding-bottom: 60px;
	box-sizing: border-box;
}
.sticky {
	top: 160px;
	position: sticky;
	padding: 6px 0;
	text-align: justify;
}
.listings {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 50%;
	padding: 20px;
	box-sizing: border-box;
	flex-direction: column;
}
.sticky h2 {
	display: inline;
	margin: 0;
	background: white;
	position: relative;
	z-index: 2;
}
.arrow {
	/*text-align: right;
	display: block;
	font-size: 64px;
	line-height: 64px;
	margin-top: -60px;
	color: #1b8381;*/
	display: none;
}
.listing-grouping h3 {
	margin-top: 0;
}
.listing-grouping {
	background-color: #e6e6e6;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 30px;
}
.ui-dialog-titlebar {
	background-color: #1b8381;
}
.ui-dialog-title {
	color: #fff;
}
.form-required::after {
	content: "*";
	display: inline-block;
	color: #999;
}
label {
	padding: 7px 0;
	display: inline-block;
	color: #1b8381;
}
.ui-dialog {
	border-radius: 5px;
}
.ui-dialog .ui-dialog-buttonpane button {
	color: #fff;
	background-color: #1b8381;
	border: 0;
	border-radius: 5px;
	font-weight: ;
}
.webform-submission-form {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.webform-submission-form input:not(.form-checkbox) {
	border: 1px solid #999;
	padding: 3px 5px;
	border-radius: 5px;
	height: 32px;
	width: 100%;
	-webkit-appearance: none;
	box-sizing: border-box;
}
.webform-submission-form textarea {
	border: 1px solid #999;
	padding: 3px 5px;
	border-radius: 3px;
	width: 100%;
	-webkit-appearance: none;
	box-sizing: border-box;
}
.button {
	height: 32px;
	padding: 0 10px;
	background-color: #1b8381;
	color: #fff;
	border: 0;
	-webkit-appearance: none;
	border-radius: 5px;
	font-weight: bold;
}


@media screen and (max-width: 1023px) {
	.grouping {
		flex-direction: column;
	}
	.group {
		width: 100%;
		position: sticky;
		top: 0;
		background-color: #fff;
	}
	.listings {
		width: 100%;
	}
	.arrow{
		display: none;
	}
	.ui-dialog {
		max-width: 98%;
	}
}

	
