.locations-map-container {
    display: flex;
    margin: 20px auto;
    overflow: hidden;
    max-width: 1180px;
}

.locations-list {
    width: 25%;
    background: #104D37;
}

.location-tab {
    padding: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    color: #FFF;
    font-family: Arial;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
}

.location-tab:hover, .location-tab.active {
    background: rgba(7, 43, 30, 1);
    color: #EAAA00;
    font-family: Arial;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
}

.location-name {
    font-weight: 500;
}

.map-display {
    width: 75%;
    padding: 0px;
}

.map-image {
    display: none;
}

.map-image.active {
    display: block;
	height: 100%;
}

.map-display .map-image img, .mobile-map img {
    height: 100% !important;
    display: block;
    width: auto;
    object-fit: cover;
    overflow: hidden;
    border-radius: 0px 5px 5px 0px;

}

.mobile-map img{
    max-width: 100% !important;
    border-radius: 5px !important;
}

.mobile-map {
    display: none;
    padding-top: 15px;
    margin-top: 15px;
    max-width: 100%;
}

@media (max-width: 916px) {
    .locations-map-container {
        flex-direction: column;
    }
    
    .locations-list, .map-display {
        width: 100%;
    }
    
    .map-display {
        display: none;
    }
    
    .location-tab {
        padding: 12px 16px;
    }
    
    .location-tab.active .mobile-map {
        display: block;
    }
}