.partners-map{
	width: 100%;
	height: 460px;
	border: #ccc solid 0px;
	margin: 0 0 0 0;
}

/* fixes potential theme css conflict */
.partners-map img{
   max-width: inherit !important;
}

/* MAP - POPUP */

/* The location pointed to by the popup tip. */
.popup-tip-anchor {
    height: 0;
    position: absolute;
    /* The max width of the info window. */
    width: 400px;
}
/* The bubble is anchored above the tip. */
.popup-bubble-anchor {
    position: absolute;
    width: 100%;
    bottom: /* TIP_HEIGHT= */ 8px;
    left: 0;
    /*background-color: #092222;*/
}
/* Draw the tip. */
.popup-bubble-anchor::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    /* Center the tip horizontally. */
    transform: translate(-50%, 0);
    /* The tip is a https://css-tricks.com/snippets/css/css-triangle/ */
    width: 0;
    height: 0;
    /* The tip is 8px high, and 12px wide. */
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: /* TIP_HEIGHT= */ 8px solid var(--eurh);
}
/* The popup bubble itself. */
.popup-bubble-content {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -100%);
    /* Style the info window. */
    background-color: var(--eurh);
    padding: 10px;
    border-radius: 5px;
    font-family: sans-serif;
    overflow-y: auto;
    /*max-height: 60px;*/
    box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.5);
}

.popup-bubble-content h4, .popup-bubble-content p, .popup-bubble-content a{
    color: var(--eurh-text);
    padding-bottom:0.5em;
}

/* MAP - POPUP END */