.locatielijst{
	display: grid;
	gap: 0.8rem;
    max-height: calc(60rem - 193px);
    overflow: hidden;
    overflow-y: auto;
}

.locatie_item{
	border: 0.1rem solid #BEBEBE;
	padding: 1.5rem;
	font-size: 1.4rem;
	line-height: 2rem;
	border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
	cursor: pointer;
	transition: 0.3s border;
}

.locatie_item:after{
	content: "\f178";
	color: #000;
	font-family: "Font Awesome 6 Pro";
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 2.4rem;
}

.distance{
	display: inline-block;
	margin-top: 0.8rem;
}

.infoWindowContent{
	color: #000;

	/* Small body */
	font-family: var(--body-font);
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2rem; /* 142.857% */
}

.locatie_item.active{
	border-color: var(--groen);
}

.google_maps_button{
    display: inline-flex;
    text-decoration: none;
    border-radius: 10rem;
    border: 1px solid var(--groen);
    padding: 1rem 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.google_maps_button i{
	color: #000;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2.4rem; /* 150% */
}

#map{
	height: 60rem;
	width: 100%;
}

.postcode_zoeker_container{
	margin-top: 2rem;
}

.use_my_location{
	text-decoration: none;
}

.postcode_zoeker_container{
	display: grid;
	gap: 1rem;	
    align-items: center;
}

.postcode_zoeker_container > *{
	grid-row: 1;
	grid-column: 1;
}

.postcode_zoeker_container:before{
	content: "\f002";
	color: #000;
	font-family: "Font Awesome 6 Pro";
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 2.4rem; /* 160% */
	grid-row: 1;
	grid-column: 1;
    z-index: 1;
	margin-left: 2rem;
	pointer-events: none;
}

#postcode_zoeker{
	border: 0.1rem solid var(--donkergrijs);
    background: #ffffff;
    border-radius: 3rem;
    padding: 1.5rem 2rem 1.5rem 5rem;
    box-shadow: none;
    font-size: 1.7rem;
}

@media (max-width:767px)
{		
	.locatielijst{
		max-height: 30rem;
	}
}

@media (min-width:768px) and (max-width:991px)
{
	
}

@media (min-width:992px) and (max-width:1199px)
{
	
}

@media (min-width:1200px) and (max-width:1399px)
{
    
}

@media (min-width:1400px)
{
    
}