/* Job Filter Wrapper */

.job-filter-wrapper {
    display: flex;
    padding: 0 10px;
    align-items: center;
}

.job-filter-wrapper select {
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 50px;
    font-size: 14px;
    box-shadow: 0px 0px 60px rgb(0 0 0 / 10%);
    appearance: none;
    -webkit-appearance: none;
    background-image: url(/wp-content/themes/agilico-child/vc-elements/images/down-arrow.svg);
    background-repeat: no-repeat;
    background-position: 96% 50%;
    background-size: 16px;
}

/* Job Listing Wrapper */

.jobs-listing-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* Job Listing */

a.job-listing {
    display: flex;
    flex-direction: column;
    padding: 40px;
    box-shadow: 0px 0px 60px rgb(0 0 0 / 8%);
    background-color: #fff;
    margin: 20px;
	color: rgb(96, 126, 143);
    font-family: Poppins;
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
	border-radius: 15px
}

a.job-listing:hover {
	box-shadow: 0px 0px 60px rgb(0 0 0 / 17%);
}

a.job-listing span {
    margin-bottom: 10px;
    display: block;
}

span.job-listing-title {
    font-size: 26px;
	line-height: 32px;
	font-weight: 600;
    margin-bottom: 20px;
	color: rgb(96, 126, 143);
	letter-spacing: -1px;
}

span.location, span.salary {
    font-size: 18px;
	font-weight: 600;
	color:  #00db53;
	letter-spacing: -1px;
}

span.closing-date {
    font-size: 12px;
	font-weight: 600;
	letter-spacing: 0px;
	margin-top: 5px;
	
}

span.apply-btn {
    background-color: #00db53;
    border-radius: 50px;
    text-align: center;
    padding: 10px 10px 10px 10px;
    max-width: 50%;
    color: #fff;
    margin-top: 15px;
}

span.mini-logo {
	width: 40px;
}

/* Media Queries */

@media screen and (max-width: 999px) {
    .jobs-listing-wrapper {
        grid-template-columns: repeat(2, 50%);}
    
	a.job-listing {
        padding: 30px;
    }
}


@media screen and (max-width: 680px) {
    .job-filter-wrapper {
        flex-direction: column;
        padding: 0 16px;
    }
    select#location-filter {
        margin-bottom: 20px;
    }
    .jobs-listing-wrapper {
        grid-template-columns: repeat(1, 100%);
    }
}