.wpjm-search{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 800px;
    width: 100%;
    border-top-left-radius: 20px;
    padding: 9px;
    margin: auto;
}

.wpjm-search.wpjm-search--show-keyword{
    max-width: 950px;
}

.wpjm-search .wpjm-search__inner{
    border-top-left-radius: 15px;
    background: white;
    overflow:auto;
    display: grid;
    grid-template-columns: 40fr 30fr 20fr 10fr;
}

.wpjm-search.wpjm-search--show-keyword .wpjm-search__inner{
    grid-template-columns: 27% 25% 25% 15% 8%;
}

@media(max-width: 768px) {
	.wpjm-search .wpjm-search__inner {
		grid-template-columns: 50fr 40fr 10fr;
	}
	
	.wpjm-search .wpjm-search__inner > div:first-child {
		grid-column: 1 / span 3;
	}

	.wpjm-search .wpjm-search__inner > div:first-child::after {
		content: "";
		background: lightgrey;
		position: absolute;
		bottom: 0;
		left: auto;
		right: auto;
		height: 1px;
		width: 95%;
	}	

    .wpjm-search.wpjm-search--show-keyword .wpjm-search__inner{
		grid-template-columns: 80% auto;
    }

    .wpjm-search.wpjm-search--show-keyword .wpjm-search__inner > div:first-child,
    .wpjm-search.wpjm-search--show-keyword .wpjm-search__inner > div:nth-child(2),
    .wpjm-search.wpjm-search--show-keyword .wpjm-search__inner > div:nth-child(3){
        grid-column: 1 / span 2;
    }

    /* .wpjm-search.wpjm-search--show-keyword .wpjm-search__inner > div:last-child{
        grid-column: 1 / span 2;
        text-align: center;
    } */

    /* .wpjm-search.wpjm-search--show-keyword .wpjm-search__inner > div:last-child button{
        margin-left: auto;
        margin-right: auto;
    } */
}


@media (max-width: 500px) {
	.wpjm-search:not(.wpjm-search--show-keyword) .wpjm-search__inner {
  		grid-template-columns: 90fr 10fr;
	}
	.wpjm-search .wpjm-search__inner > div:first-child,
	.wpjm-search:not(.wpjm-search--show-keyword) .wpjm-search__inner > div:nth-child(2){
		grid-column: 1 / span 2;
	}
	.wpjm-search .wpjm-search__inner > div:nth-child(2)::after {
		content: "";
		background: lightgrey;
		position: absolute;
		bottom: 0;
		left: auto;
		right: auto;
		height: 1px;
		width: 95%;
	}
}

.wpjm-search .wpjm-search__inner > div{
    padding: 9px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wpjm-search .wpjm-search__inner label{
    text-transform: uppercase;
    color: #3C897C;
    font-weight: 600;
    font-size: 12px;
	text-align: left;
}

.wpjm-search .wpjm-search__inner .umkreis-label {
	margin-bottom: 0;
}

.wpjm-search__selectfield {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}



.wpjm-search__textfield{
    background: transparent;
    border: none;
    padding-left: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    background-size: 17px;
    background-position: 0px 5px;
}
.wpjm-search__textfield.icon-search{
    background-image: url(search.svg);
}
.wpjm-search__textfield.icon-location{
    background-image: url(location.svg);
}

img.wpjm-search__dropdown-icon{
    width: 17px;
    height: auto;
}

.vertical-line-container {
	position: relative;
}

.vertical-line-container::after {
	content: "";
	background: lightgrey;
	position: absolute;
	right: 0;
	width: 1px;
	height: 80%;
}

.wpjm-search select {
	color: #8e8e8e !important;
	font-style: normal;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.wpjm-search .select2-container{
    width: calc(100% - 30px) !important;
}

.wpjm-search button[type="submit"]{
    padding: 5px 10px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wpjm-search button img{
    width: 20px;
    height: auto;
}

