#main {
	background-color: #efeeea;
}
.webform-content-wrapper {
	display: flex;
	width: 100%;
	justify-content: space-evenly;
	align-items: center;
}

.contact-list {
	display: flex;
	flex-direction: column;
	gap: 26px;
}
.call {
	font-weight: bold;
	font-size: 24px;
}
.contact-list-icon, .webform-content-wrapper .social-links a {
	background-color: #1b8381;
	display: inline-block;
	text-align: center;
	color: #fff;
}
.contact-list-icon {
	width: 64px;
	height: 64px;
	border-radius: 32px;
	line-height: 64px;
	font-size: 32px;
}
.webform-content-wrapper .social-links a {
	width: 36px;
	height: 36px;
	line-height: 36px;
	border-radius: 16px;
	font-size: 18px;
}
.contact-list-item a {
	text-decoration: none;
	margin-left: 15px;
	font-size: 18px;
}
.webform-content-wrapper .social-links {
  border-top: 2px solid #A4CDCD;
  margin-top: 20px;
}
.webform-content-wrapper .social-links p {
  justify-content: left;
  margin-top: 20px;
}
.webform-submission-form {
	padding: 20px;
	background-color: #fff;
	border-radius: 26px;
	display: flex;
	flex-direction: column;
	gap: 26px;
	margin: 30px 0;
}
.webform-submission-form p {
	margin: 0;
}
.webform-submission-form input:not(.button) {
	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;
}
div[id^="appointment-wrapper"]{
	justify-content: space-around;
}
#slots-wrapper-calendar {
	width: 50%;
}
.webform-submission-booking-form .form-submit {
	width: 100%;
	font-size: 20px;
	padding: 8px 0;
	box-sizing: content-box;
}
@media screen and (max-width: 1023px) {
	.webform-content-wrapper {
		flex-direction: column;
		padding: 30px 20px 0;
		box-sizing: border-box;
	}
}
@media screen and (max-width: 767px) {
	.webform-flexbox {
		gap: 26px;
		display: flex;
		flex-direction: column;
	}
	#slots-wrapper-calendar {
		width: auto;
		font-size: 14px;
	}
}