/*--------------------------------------------------------------
# Google Maps tooltip styles
--------------------------------------------------------------*/
#pri_map[data-height="100vh"] {
    height: calc(100dvh - var(--admin-bar-height));
}

#pri_map[data-height="90vh"] {
    
    height: calc(90dvh - var(--admin-bar-height));
}
#pri_map[data-height="80vh"] {
    height: calc(80dvh - var(--admin-bar-height));
}

html .gm-style .gm-style-iw-tc::after,
html .gm-style .gm-style-iw-c {
    background-color: var(--infowindow-bg-color);
}

html .gm-style .gm-style-iw-c {
    padding: 0px;
}

html .gm-ui-hover-effect>span {
    background-color: var(--infowindow-text-color);
}

html .gm-style-iw-chr {
    position: absolute;
    width: 48px;
    z-index: 1;
    right: 0px;
}

html .gm-style-iw-chr button {
    position: absolute;
    top: -6px;
    right: -6px;
}

html .gm-style .gm-style-iw-c {
    color: var(--infowindow-text-color);
    border-radius: var(--map-radius);
}

html .gm-style .gm-style-iw-d {
    overflow: auto !important;
}

.pri_map_item_header img {
    max-width: 60px !important;
}

.pri_map_item_header {
    display: flex;
    gap: 8px;
    width: 100%;
}

.pri_map_item_wrapper h3 {
    padding-right: 12px;
    margin: 0px 0px -2px;
    font-size: 22px;
    font-family: "Urbanist", Sans-serif;
    font-weight: 600;
    line-height: 1.1em;
}

.pri_map_item_wrapper {
    width: 284px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}

.pri_map_item_wrapper .sh_map_link {
    color: var(--infowindow-bg-color);
    text-decoration: none;
    background-color: var(--infowindow-text-color);
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 12px;
    font-family: "Urbanist", Sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pri_map_item_wrapper .sh_map_link:hover {
    background-color: var(--e-global-color-primary);
}

html .gm-style-iw-chr .gm-style-iw-ch {
    pointer-events: none;
}

html .gm-style {
    font-family: "Lexend", Sans-serif;
    font-weight: 300;
}

.pri_map_item_content {
    font-size: 13px;
    color: var(--e-global-color-secondary);
}

html .gm-style .gm-style-iw-tc::after {
    top: -4px;
}

html .gm-style .gm-style-iw-tc {
    -webkit-filter: drop-shadow(0 4px 2px rgba(178, 178, 178, 0));
    filter: drop-shadow(0 4px 2px rgba(178, 178, 178, 0));
}

#pri_map_legend {
    position: absolute;
    top: calc(var(--admin-bar-height) + var(--header-height) + 20px);
    left: 20px;
    background-color: var(--infowindow-bg-color);
    color: var(--infowindow-text-color);
    padding: 12px 14px;
    border-radius: calc(var(--map-radius) / 1);
    z-index: 1000;
    font-size: 11px;
}

.pri_map_legend_bullet {
    display: flex;
    align-items: center;
    gap: 6px;
}

#pri_map_legend_bullets {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

#pri_map_legend .pri_bullet_shape {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--e-global-color-accent);
}

#pri_map_legend .pri_map_legend_bullet_yellow .pri_bullet_shape {
    background-color: var(--e-global-color-primary);
}

#pri_map_legend_filters .pri_bullet_shape {
    background-color: #FFFFFF;
    border-radius: 0px;
}

#pri_map_legend_filters_title {
    width: 100%;
    padding-top: 12px;
    margin-top: 12px;
    margin-bottom: 6px;
    border-top: 1px solid #2f2f2f;
    text-transform: uppercase;
    color: var(--e-global-color-primary);
}