
.vacancy-searchbox {
	border: 1px solid var(--green);
	border-radius: 2px;
	background-color: var(--green-light);
	margin-bottom: 15px;
}
.vacancy-searchbox header {
	padding: 32px 32px 0;
}
.vacancy-searchbox h2 {
	font-size: 1.2em;
}
.vacancy-searchbox h3 {
	font-size: 1em;
	margin: 0;
}
.searchbox-freetext {
	border-bottom: 1px solid var(--green);
}
.searchbox-freetext input {
	width: 100%;
	font-size: 1em;
	border: 0 none;
	padding: .4em 32px .4em 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-5 w-5' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z' clip-rule='evenodd' /%3E%3C/svg%3E") no-repeat 32px center;
    background-size: 1.2em 1.2em;
}
.searchbox-freetext input::placeholder {
    color: rgba(0, 0, 0,.75);
}
.vacancy-filter-item {
	padding: 12px 32px;
	border-bottom: 1px solid var(--green);
}
.vacancy-filter-item:last-child {
	border-bottom: 0 none;
}
.vacancy-filter-item a {
	display: block;
	position: relative;
	margin-bottom: .5rem;
    color: var(--purple-darkest);
}
.vacancy-filter-item i {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
}
/* Old Filter */
.filter {
    display: flex;
    margin: 100px 0 200px 0;
}

.filter__left {
    display: flex;
    width: 30%;
    flex-direction: column;
    padding-right: 50px;
    background-color: #f7fef9;
    border: 1px solid --var-green;
}

.filter__right {
    display: flex;
    width: 70%;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
}

.filter__title {
    font-size: 36px;
}

.filter__remove-filters {
    color: var(--blue-darker);
    font-size: 14px;
    text-decoration: none;
}


.filter__remove-filters i {
    color: var(--purple-darkest);
    font-size: 14px;
    text-decoration: none;
    vertical-align: text-bottom;
}

.filter__searchbar-text {
    font-size: 14px;
    color: var(--purple-darkest);
}

.filter__filter-title {
    font-size: 18px;
    color: var(--purple-darkest);
    font-weight: bold;
}

.filter__remove-wrapper {
    display: flex;
    justify-content: space-between;
}

.filter__found-vacancies {
    font-size: 24px;
    color: var(--purple-darkest);
    margin-bottom: 30px;
}

.filter__vacancy-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;

}

.filter__filter-item:first-of-type {
    border-top: 1px solid #9DB8FF;
}

.filter__filter-item {
    display: flex;
    border-bottom: 1px solid #9DB8FF;
    flex-direction: column;
    padding: 10px 0;
}

.filter__title-icon-wrapper {
    display: flex;
    justify-content: space-between;
}

.filter__toggle {
    text-decoration: none;
    color: var(--purple-darkest);
}

.filter__mobile {
    flex-direction: column;
    padding: 20px;
    margin: 0;
}

.filter-list-mobile {
    padding: 20px;
}

.btn-open-filter {
    display: none;
}

.filter-results-button button, .mobilesearchbutton button {
    display: block;
    padding-top: .5em;
    padding-bottom: .5em;
    width: 100%;
    border: 0 none;
    background-color: var(--green);
    color: var(--purple-darkest);
    font-family: "CircularXXWeb-Bold", sans-serif;
    font-size: 1.2rem;
}

@media (max-width: 994px) {
    .filter__left {
        display: none;
    }

    .filter__right {
        width: 100%;
    }

    .btn-open-filter {
        display: block;
        position: absolute;
        right: 7%;
    }

    .filter__found-vacancies {
        font-size: 20px;
        margin-top: 8px;
    }
}

.happysearch {
    position: fixed;
    left: 100vw;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--green-light);
    z-index: 1031;
    transition: left .2s;
}
.happysearch.isvisible {
    left: 0;
}
.mobilesearchcontainer {
    max-height: 100%;
    padding: 15px 15px 60px;
    overflow: auto;
}
.filter-results-button {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 60px;
}

.fixed-bottom {
    z-index: 1032;
}