.job-listing {
	display: flex;
	gap: 30px;
	position: relative;
}
.job-listing h3 {
	margin-left: 0;
	margin-right: 35px;
}
.job-meta {
	width: 340px;
	flex-shrink: 0;
}
.job-details {
	height: 0;
	opacity: 0;
	overflow: hidden;
	transition: all 1.2s;
}
.job-listing.expanded .job-details {
	height: auto;
	opacity: 1;
}
.job-toggle {
	display: inline-block;
	position: absolute;
	right: 0;
	cursor: pointer;
}
.job-toggle::before {
	content: '\2b';
	font-size: 30px;
	color: #ed1f31;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	line-height: 0;
}
.job-listing.expanded .job-toggle::before {
	content: '\f068';
	font-size: 22px;
}

.job_application_form {
	width: 100%;
	text-align: left;
}
.job_application_form .text-label {
	margin: 8px 16px 8px 0;
	text-align: left;
}
.job_application_form h3 {
	text-align: left;
	width: 100%;
	margin: 20px 0;
}
.job_application_form .documents_available label {
	display: block;
}
#file_list {
	border: 1px solid #023b70;
	padding: 13px;
	margin-bottom: 20px;
}
.job_application_form select, .job_application_form input[type="text"], .job_application_form textarea {
	width: 100%;
	margin: 0;
	font-size: 1rem;
}
.job_application_form textarea {
	height: 120px;
}
.job_application_form .flex-container {
	gap: 16px;
	margin: 8px 0;
}
.job_application_form input[type="checkbox"], .job_application_form input[type="radio"] {
	padding: 0;
	min-width: 0;
	width: auto;
}
.error_field {
	outline: 2px solid #ed1f31;
}
.star-rating {
	display: flex;
	margin: 0 0 10px 26px;
}
.star-rating span {
	padding-right: 10px;
}
.star-rating label {
	position: relative;
	padding: 0 3px;
	color: #3b7fb3;
}
.star-rating label::before {
	content: '\f005';
	font-family: 'Font Awesome 5 Free';
	font-weight: 400;
	font-size: 20px;
	cursor: pointer;
}
.star-rating.star-notempty label::before {
	content: '\f005';
	font-weight: 900;
}
.star-rating label.star-selected ~ label::before {
	content: '\f005';
	font-weight: 400;
}
.submitted-envelope-container {
	width: 100%;
	max-width: 400px;
	margin: 50px auto;
}
.submitted-envelope-holder {
	position: relative;
	width: 100%;
	padding-bottom: 100%;
}
.submitted-envelope {
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: linear-gradient(#5278c6, #00debf);
	color: white;
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 20%;
	bottom: 0;
	font-size: 100%;
	border-radius: 50%;
}
.submitted-envelope::after {
	content: '1';
	position: absolute;
	background: red;
	color: white;
	border: 15px solid white;
	width: 25%;
	height: 25%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -4%;
	right: -4%;
	font-weight: bold;
	font-size: 40px;
}
@media (max-width: 799px) {
	.job-listing {
		flex-direction: column;
	}
	.job-meta {
		width: 100%;
	}
}
