body {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    background-color: black;
}

#toggleDisplay { 
    font-weight: 500;
    height: 3rem;
}

.mapboxgl-map {
    font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

h3 {
    font-size: 1.3rem;
}   

.masthead {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 13rem;
    height: min-content;
    position: relative;
}

.map-listing {
    height: 100vh;
    width: 100%;
}

.sticky {
    position: sticky;
    top: 0;
}

.person {
    cursor: pointer;
    text-decoration: none;
    color: white;
    background-color: rgb(68, 68, 68);
    border: #e6e6e6 1px solid;
}

.person:hover {
    text-decoration: none;
    color: inherit;
}

.selected-poi-group {
    background-color: #e6e6e6;
    color: inherit;
}

.card-img-left {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.marker {
    cursor: pointer;
}

.marker-popup {
    cursor: pointer;
}

.mapboxgl-popup-content {
    padding: 10px;
    max-width: 200px;
    background-color: #e6e6e6;
}

.mapboxgl-popup-content img {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
}

#language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

#language-selector select {
    padding: 5px 10px;
    border-radius: 5px;
    border: 2px solid white;
    background-color: rgba(0,0,0,0.7);
    color: white;
    cursor: pointer;
}

    #language-selector select option {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    cursor: pointer;
    }

.logo-position {
    position: absolute;
    right: 0;
    top: -106px;
    max-width: 120px;
}

@media (max-width: 768px) {
    .map-listing {
        height: 80vh;
    }
    
    #col-map {
        display: none;
    }
    
    #col-map.show-map {
        display: block;
    }
    
    #col-details.hide-details {
        display: none;
    }
    
    .logo-position {
        position: relative;
        top: 0;
        max-width: 100px;
        margin-bottom: 20px;
    }

    .masthead {
    min-height: 5rem;
    background-size: auto;
    }
}

.modal-body ul li {
    border-left: 2px solid black;
}

.modal-content {
    background-color: #e6e6e6;
}

.list-group-item.active {
    background-color: black !important;
    border: none !important;
}

*:focus {
  outline: none !important;
  box-shadow: none !important;
}