
.map {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;

    background: #aaa url("Maps-Placeholder.svg") top center no-repeat;
    background-size: cover;

    /* default size static map*/
    width: 350px;
    height: 200px;
}

.map.approved {
    background: transparent;
}
/* generic map settings */

/* dynamic map */
.map.dynamic {
    width: auto;
    height: 300px;
    margin-bottom: 2em;
}

.map .consent {
    width: 75%;
    max-width: 100%;
    background-color: rgba(255, 255, 255, .8);
    padding: 1em;

    font-size: 12px;
    text-align: center;
    line-height: 1.1em;

    color: #666666;
}

.map .consent a,
.map .consent a:hover {
    color: inherit;
    text-decoration: underline;
}

.map button {
    color: #444;
    font-size: 13px;
    border: 1px solid #999999;
    background-color: #f0f0f0;
    padding: .5em 1em;
}
.map button:hover {
    text-decoration: underline;
    cursor: pointer;
}

.map.approved .consent {
    display: none;
}

/* static map */
.map.static > a {
    display: none;
}
.map.static.approved > a {
    display: inline;
}