/* .search-input-wrapper {
  position: relative;
  width: 60%;
}

#job-search-input {
	flex-grow: 1;
	padding: 10px 10px 10px 70px;
	border: 1px solid var(--e-global-color-accent);
	border-radius: 30px;
	font-size: 20px;
}

.search-icon {
  position: absolute;
  top: 60%;
  left: 20px;
  transform: translateY(-50%);
  pointer-events: none;
}

.job-types {
	margin: 2rem 0 0 70px;
	display: flex;
	column-gap: 15px;
}

.job-types label {
	margin-right: 10px;
	cursor: pointer;
	font-size: 16px;
}

.job-types input[type="radio"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.job-types .custom-checkbox {
	height: 20px;
	width: 20px;
	background-color: #eee;
	display: inline-block;
	border: 1px solid #ccc;
	margin-right: 8px;
	vertical-align: middle;
}

.job-types input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.job-types .custom-checkbox {
	margin-top: -2px;
	height: 20px;
	width: 20px;
	background-color: transparent;
	display: inline-block;
	vertical-align: middle;
	border: 1px solid #000;
}

.job-types .custom-checkbox.is-checked {
	background-color: var(--e-global-color-bdc9a6b);
	border-color: var(--e-global-color-bdc9a6b);
}

.job-types #part-time-check + .custom-checkbox.is-checked {
	background-color: var(--e-global-color-9e7e5ca);
	border-color: var(--e-global-color-9e7e5ca);
}

#job-listings-list {
	display: grid;
	grid-template-columns: 100%;
	row-gap: 1rem;
	margin-top: 90px;
}

.job-item a {
	display: flex;
	flex-direction: column;
	padding: 2rem 4rem;
	align-content: center;
	justify-content: center;
	border-radius: 30px;
	background-color: var(--e-global-color-bdc9a6b);
	color: #000;
}

.job-item a:hover {
	background-color: color-mix(in srgb, var(--e-global-color-bdc9a6b) 80%, transparent);
	color: #000;
}

.job-item a:hover div {
	color: #000;
}

.job-item.part-time a {
	background-color: var(--e-global-color-9e7e5ca);
}

.job-item.part-time a:hover {
	background-color: color-mix(in srgb, var(--e-global-color-9e7e5ca) 85%, transparent);
}

.job-item a h3 {
	display: inline;
	border-bottom: 1px solid transparent;
}

.job-item a:hover h3 {
	border-bottom: 1px solid #000;
}


.job-item a div:first-of-type {
	display: grid;
	grid-template-columns: 3fr 2fr;
	column-gap: 15px;
}

@media (min-width: 769px) {
	.job-details {
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: 15px;
	}
}

#job-listings-list .job-item h3 {
	font-size: 30px;
}

.job-post p {
	margin: 5px 0;
	line-height: 1.5;
}

.job-description {
	padding-top: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 20px;
}

.job-location {
	font-size: 20px;
}

.job-type {
	text-transform: capitalize;
	font-size: 20px;
}

.job-types .custom-checkbox {
	position: relative;
}

.job-types .custom-checkbox::after {
    content: '✓';
    position: absolute;
    top: 39%;
    left: 47%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    opacity: 0;
}

.job-types .custom-checkbox.is-checked::after {
    opacity: 1;
} */