#map {
    height: 100vh;
    width: 100%;
}

#filters-container {
    position: absolute;
    top: 35px;
    max-width: 375px;
    left: 25px;
    z-index: 5;
    background: white;
    width: 100%;
    padding: 25px 10px;
    display: flex;
    row-gap: 20px;
    flex-direction: column;
    align-items: center;
}

#filters-container>div {
    width: 100%;
    position: relative;
}

#filters-container select {
    padding: 6px 10px;
    font-size: 14px;
    width: 100%;
}

.cluster-label {
    background: #e91e63;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.filters-item>span {
    display: block;
    margin-bottom: 12px;
}

.map-sidebar-list {
    padding: 0;
    list-style: none;
    background: #F1F1F1;
    margin-top: 15px;
    height: 500px;
    overflow: auto;

}



.map-sidebar-item {
    padding: 15px;
    cursor: pointer;
    position: relative;
}

.map-sidebar-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: #BDBDBD;
}

.map-sidebar-item.active.active-graduateSchool::after {
    background: #1D7E32;
}

.map-sidebar-item.active.active-medicine::after {
    background: #ffdd57;
}

.map-sidebar-item.active.active-employment::after {
    background: #0089BB;
}

.map-sidebar-item.active {
    display: block;
}

.map-sidebar-top span {
    position: relative;
    padding-left: 28px;
}

.map-sidebar-top span::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 23px;
    background: url(https://cmustage.e8demo.com/wp-content/themes/blocksy-child/parts/alumni-map/images/pin.png) no-repeat center center;
}

.map-sidebar-item h5 {
    margin: 0 0 5px 0;
}

.map-sidebar-item p {
    margin: 0;
}

.map-sidebar-item:not(:last-child) {
    border-bottom: 2px solid #fff;
}

.map-sidebar-item.active.view-item {
    background: #ffffff !important;
}

.map-sidebar-bottom {
    padding-top: 15px;
}

.map-sidebar-bottom h6 {
    margin-bottom: 4px;
    font-weight: bold;
}

.map-sidebar-bottom p {
    font-size: 14px;
    color: #323232;
    font-weight: 500;
    margin: 0;
}

.region-filter {
    height: 52px;
    width: 100%;
    padding: 0 50px 0 14px;
    background: url(https://cmustage.e8demo.com/wp-content/themes/blocksy-child/parts/alumni-map/images/down_arrow.png) no-repeat right 10px center;
    border: 1px solid #BDBDBD;
    border-radius: 2px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.load-more-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #ffff;
    color: #5A5B5E;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.map-sidebar-item.active.hidden {
    display: none;
}

@media screen and (max-width: 767px) {
    #filters-container {
        top: 10px;
        max-width: calc(100% - 20px);
        left: 10px;
        padding: 15px 10px;
    }
    
    .region-filter {
        height: 46px;
    }
}
