/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */


.easy-map-container {
    display: flex;
    flex-wrap: wrap;
    /* allows stacking on small screens */
}

.easy-map-sidebar {
    flex: 0 0 20%;
    /* 20% width */
    background: #fff;
    padding: 5px 5px 0px 5px;
    box-sizing: border-box;
    overflow-y: auto;
    max-height: 400px;
}

.easy-map-sidebar>label {
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 5px 5px;
    font-size: 18px;
}

.easy-map-content {
    flex: 0 0 80%;
    /* 80% width */
    background: #fff;
    box-sizing: border-box;
}

/* Responsive: stack sidebar and content on small screens */
@media (max-width: 768px) {

    .easy-map-sidebar,
    .easy-map-content {
        flex: 0 0 100%;
        /* full width */
    }
}

.easy-map-category {
    padding-bottom: 5px;
}

.easy-map-category>label {
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
}

.easy-map-locations {
    list-style: none;
    margin: 5px 0 0 15px;
    padding: 0;
    display: none;
}

.easy-map-locations li {
    cursor: pointer;
    padding: 4px;
    border-radius: 3px;
    font-size: 15px;
}

.easy-map-locations li:hover {
    background: #e9ecef;
}