.map {
    height: 100vh;
}

.map {
    background-color: #CCCCCC;
    position: sticky !important;
    top: 60px;
    right: 0;
    left: 0;
}

.marker.leaflet-popup {
    margin-bottom: 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background-color: white;
    border-radius: 0.5rem;
    font-family: Raleway;
    font-size: 0.8rem;
}
.marker.leaflet-popup.marker-score-5 {
    background-color: #70686f;
    color:white;
}
.marker.leaflet-popup.marker-score-4 {
    background-color: #8a8189;
    color:white;
}
.marker.leaflet-popup.marker-score-3 {
    background-color: #a49ba3;
    color:white;
}
.marker.leaflet-popup.marker-score-2 {
    background-color: #bfb6be;
    color:white
}
.marker.leaflet-popup.marker-score-1 {
    background-color: #dbd2da;
    color:white;
}
.marker.leaflet-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #FFF;
    background-color: transparent;
}
.marker.leaflet-popup.marker-score-5:after {
    border-top: 8px solid #70686f;
}
.marker.leaflet-popup.marker-score-4:after {
    border-top: 8px solid #8a8189;
}
.marker.leaflet-popup.marker-score-3:after {
    border-top: 8px solid #a49ba3;
}
.marker.leaflet-popup.marker-score-2:after {
    border-top: 8px solid #bfb6be;
}
.marker.leaflet-popup.marker-score-1:after {
    border-top: 8px solid #dbd2da;
}

.marker .leaflet-popup-content-wrapper {
    background: transparent;
    color: inherit;
    box-shadow: none;
    text-align: inherit;
}

.marker .leaflet-popup-content {
    text-align: inherit;
    color: inherit;
    margin: 0;
}

.marker .leaflet-popup-tip-container {
    display: none;
}

.marker.is-active, .marker:hover {
    z-index: 300;
    background-color: #585057!important;
    color: #FFF;
}
.marker.is-active,.marker.is-selected {
    background-color: #e88422!important;
}
.marker.is-active::after, .marker:hover::after {
    border-top-color: #585057!important;
}
.marker.is-active::after, .marker.is-selected::after {
    border-top-color: #e88422!important;
}
.marker.is-expanded {
    background-color: #fff !important;
    color: inherit !important;
    z-index: 301;
    text-align: left;
}

.marker.is-expanded::after {
    border-top-color: #FFF !important;
}
