.content > .tx-hglocations {
    margin: 0;
}

.googlemap {
	width: 100%;
	height: 600px;
	margin: 0 auto;
}
.googlemap > div {
    background: #000 !important;
}

/* SELECT */
.select-country-wrapper {
    background: #ffd610;
    padding: 40px 0;
}

.nice-select.select-country {
    width: 100%;
    border-radius: 0;
    border: 0;
}
.nice-select.select-country:before {
    content: '';
    display: block;
    width: 18px;
    height: 8px;
    /*background: url(../fonts/pfeil-down.svg) no-repeat;*/
    background: url(../fonts/select-arrow.svg) no-repeat;
    background-size: 18px 8px;
    float: right;
    position: absolute;
    top: 18px;
    right: 15px;
    pointer-events: none;
}
.nice-select.select-country.open:before {
	transform: rotate(180deg);
}

.nice-select:after {
    display: none;
}

.nice-select .list {
    border-radius: 0;
    border: 1px solid #a0a0a0;
    margin: 0;
    width: 100%;
}

/* Location list/grid */
.country-list .title {
	font-family: Futura-Light;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.location-grid {
    display: grid;
    grid-template-columns: 33.3% 33.3% 33.3%;
    grid-gap: 0;
}
.location-grid .location {
	/*padding: 0 25px;*/
    padding: 20px 25px 0;
    margin-bottom: 40px;
}
.location-grid .location.active {
    background: #f3f3f3;
}

@media (max-width:991px) {
	.googlemap {
    	height: 270px;
    }

	.select-country-wrapper {
    	padding: 15px 0 25px;
	}
	.nice-select {
    	height: 30px;
    	line-height: 30px;
	}
	.nice-select.select-country:before {
    	top: 11px;
    	right: 20px;
	}

	.country-list .title {
	    font-family: Futura-Book;
	    font-size: 16px;
	    line-height: 22px;
    	margin-bottom: 15px;
	}
	.location-grid {
    	grid-template-columns: 100%;
    }
    .location-grid .location {
    	/*margin-bottom: 20px;*/
	}
}


