:root {
    --ep-gradient: linear-gradient(45deg, rgba(255, 0, 142, 0.8) 20%, #ffa059 110%);
}

.overlay {
    position: absolute;
    z-index: 9999;

    padding: 20px 50px;
    margin: 20px;

    border-radius: 10px;
    background-color: rgba(255,255,255,0.8);

    font-size: 12pt;
}

.card {
    display: inline-block;
    border: solid thin;
    border-radius: 5px;
    padding: 10px;
    margin: 5px;
    background-color: white;
}
.card-header {
    font-weight: bolder;
    font-size: larger;
}
.card-subheader {
    font-weight: lighter;
    font-size: smaller
}

.btn, .btn-sm{
    padding: 10px;
    width: fit-content;
    border: solid thin;
    border-radius: 5px;
    color: black;
    cursor: pointer;
}
.btn-sm {
    padding: 5px;
    font-size: small;
}

.btn:hover {
    transition: all .20s ease;
    background: var(--ep-gradient);
    color: white;
    box-shadow: 2px 2px 5px grey;
}

.btn:active {
    filter: brightness(0.7);
    box-shadow: none;
}


#map {
    position:relative;
    height: 98dvh;
    z-index: 1;
}


#context-title {
    font-size: 24pt;
    font-weight: light;
    margin-right: 10px;
}

#context-badges div {
    display: inline;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 10px;

    color: white;
    font-size: 8pt;

    background: var(--ep-gradient);
}

#context-cta a {
    text-decoration: none;
    font-weight: bold;
}
