@charset "UTF-8";

.form-label {
    margin-bottom: 0;
}

.map-list-group {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9;
    padding-left: 0;
    margin-bottom: 0;
}

.map-list-group-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: .5rem;
    color: #181C32;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
}

.map-list-group-item::before {
    content: "\f3c5";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    font-size: 16px;
    color: #8B8FA4;
}

.map-list-group-item:hover,
.map-list-group-item.active {
    background-color: #F1F1F1;
    color: #000;
}