#km {
    background-color: #ffffff;
}

#km .km_viewer {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 22 / 15.4;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
    touch-action: none;
}

#km .km_map {
    width: 100%;
    position: relative;
}

#km .km_map img {
    display: block;
    width: 100%;
    height: auto;
    cursor: grab;
}

#km .km_locations {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: grab;
}

#km .km_locations a {
    position: absolute;
    display: block;
    text-decoration: none;
    width: 16px;
    height: 16px;
    border: 2px #ffffff solid;
    background-color: #dedede;
    border-radius: 50%;
    margin-top: -8px;
    margin-left: -8px;
}

#km .km_locations a .km_name {
    display: none;
    position: absolute;
    margin-left: 8px;
    background-color: #ffffff;
    color: #222222;
    font-weight: bold;
    font-size: 15px;
    padding: 8px;
    padding-bottom: 4px;
    border-radius: 6px;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
    z-index: 3;
    top: -12px;
    left: 100%;
    white-space: nowrap;
}

#km .km_locations a:hover > .km_name {
    display: block;
}

#km .km_locations a.km_name_left .km_name {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 8px;
}

#km .km_locations a.km_arrow_up:after {
    content: "";
    position: absolute;
    border: 6px transparent solid;
    border-bottom-color: #c0c0c0;
    margin-top: -15px;
}

#km .km_locations a.km_arrow_left:after {
    content: "";
    position: absolute;
    border: 6px transparent solid;
    border-right-color: #c0c0c0;
    margin-left: -15px;
}

#km .km_controls {
    color: #222222;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px;
}

#km .km_controls h3 {
    display: block;
    font-size: 24px;
    margin-bottom: 18px;
    padding-bottom: 0 !important;
}

#km .km_legend {
    width: calc(66.6% - 10px);
}

#km .km_zoom {
    width: 33.3%;
    text-align: right;
}

#km .km_legend .km_legend_item {
    display: inline-block;
    margin-bottom: 10px;
    width: 49%;
}

#km .km_legend strong {
    display: inline-block;
    vertical-align: middle;
}

#km .km_legend .km_category_checkbox {
    display: inline-block;
    width: 36px;
    height: 36px;
    vertical-align: middle;
    margin-right: 6px;
    border-radius: 50%;
}

#km .km_legend .km_category_checkbox input {
    appearance: none;
    width: 100%;
    height: 100%;
    margin: 0 !important;
}

#km .km_legend .km_category_checkbox input:after {
    content: "";
    display: block;
    margin-top: 10px;
    margin-left: 10px;
    width: 16px;
    height: 16px;
    background: url("/wp-content/uploads/2025/12/eye-closed-icon.png");
    background-size: cover;
}

#km .km_legend .km_category_checkbox input:checked:after {
    background: url("/wp-content/uploads/2025/12/eye-open-icon.png");
    background-size: cover;
}

#km .km_zoom select {
    display: inline-block;
    background-color: #f2f2f4;
    color: #333333;
    border: 1px #e2e2e4 solid;
    border-radius: 6px;
    padding: 8px 10px;
    font-weight: bold;
    font-size: 16px;
    width: 140px;
}


/* mobile view */

@media only screen and (max-width:768px) {

    #km .km_locations a {
        width: 14px;
        height: 14px;
        margin-top: -7px;
        margin-left: -7px;
    }

    #km .km_locations a.km_arrow_up:after {
        border-width: 5px;
        margin-top: -12px;
    }

    #km .km_locations a.km_arrow_left:after {
        border-width: 5px;
        margin-left: -12px;
    }

    #km .km_legend,
    #km .km_zoom {
        width: 100%;
        margin-bottom: 20px;
    }

    #km .km_zoom {
        text-align: left;
    }

    #km .km_legend .km_legend_item {
        width: 100%;
    }

}