/* Map */
/* Common popup */
.map_button {
    font-family: 'DINEngschrift';
    text-transform: uppercase;
    margin-top: 15px;
    font-size: 18px;
    line-height: 18px;
    padding-left: 20px;
    background: url('../img/map.svg') no-repeat left center;
    background-size: 15px;
    cursor: pointer;
}
#collections_popup {
	position: fixed;
	z-index: 1000000;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: white;
    overflow-y: scroll;
    display: none;
}
body.collections_popup_expanded #collections_popup {
    display: block;
}
#collections_popup > .wrapper {
    padding: 15px;
    box-sizing: border-box;
}

@media only screen and (min-width: 768px) {
    #collections_popup > .wrapper {
        padding: 20px;
    }
}
@media only screen and (min-width: 1024px) {
    #collections_popup > .wrapper {
        padding: 50px;
    }
}
#collections_popup .close {
    z-index: 100000;
    position: absolute;
    right: var(--default-spacing);
    top: var(--default-spacing);
    display: block;
    width: 15px;
    height: 15px;
    background: url('../img/close.svg') no-repeat;
    background-size: 100%;
    font-size: 0;
    cursor: pointer;
    margin-left: 10px;
}
#collections_popup > .wrapper,
#map_container,
#map_container #map {
    width: 100%;
    height: 70vh;
    box-sizing: border-box;
}
#map_container {
    margin-bottom: 50px;
}
#collections_popup #map_artworks li {
    display: none;
}
.info_window {
    padding: 15px 0 15px 0;
    max-width: 250px;
}
.info_window .name {
    font-family: var(--title-font-family);
    font-weight: normal;
    font-size: 22px;
    line-height: 22px;
}
.info_window .place {
    font-family: var(--default-font-family);
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: normal;
}
.info_window a.website {
    font-family: var(--title-font-family);
    padding-left: 15px;
    background: url('../img/arrow.svg') no-repeat left center;
    background-size: 10px;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
}
.info_window a span {
    border-bottom: 1px solid #000;
}