.interactive_map {
    position: relative;
}
.mapboxgl-marker {
    width: 29px; 
    height: 29px;
    display: block;
    position: absolute;
}
.mapboxgl-marker svg {
    width: 100%;
    height: 100%;
    fill: #E11F1C; 
}
.mapboxgl-popup-content {
    position: relative;
    background: #E11F1C;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0,0,0,.1);
    padding: 20px 20px 20px;
    pointer-events: auto;
    width: 350px;
    color: #fff;
    min-height: 246px;
    display: flex;
    flex-direction: column;
}
.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
    align-self: center;
    border-bottom: none;
    border-top-color: #e11f1c;
}
.interactive_map .map_wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    grid-gap: 80px;
    padding-left: 6rem;
    padding-right: 6rem;
    z-index: 4;
}
.interactive_map  select {
    border: solid 1px #C1C1C1;
    height: 40px;
    padding: 3px;
    margin-right: 1rem;
    font-size: 15px;
    min-width: 200px;
}
.interactive_map  select option {
    font-size: 15px;
}
.interactive_map  .map_controls {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.interactive_map button#resetMapButton {
    border: none;
    color: #fff;
    background: #e11f1c;
    height: 40px;
    min-width: 100px;
    transition: color 0.4s ease;
    cursor: pointer;
}
.interactive_map button#resetMapButton:hover {
    background: #000;
}
.interactive_map .map_left {
    position: relative;
    z-index: 2;
}
.interactive_map .map_right {
    position: relative;
    z-index: 2;
}
.interactive_map .map_right .map_location_title {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 1rem;
}
.interactive_map .map_right p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
}
.interactive_map .map_right svg {
    margin-right: 1rem;
}
.interactive_map .map_right a {
    font-size: 15px;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
}
.interactive_map .services {
    font-size: 15px;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
}
.interactive_map button.mapboxgl-popup-close-button {
    color: #fff;
    font-size: 18px;
}
#locationSelector {
    display: none;
}
.view_opening_hours {
    font-size: 15px;
    color: #fff;
    margin-bottom: 1rem; 
    cursor: pointer;
}
.opening_hours.show {
    display: block;
    position: absolute;
    top: 0;
    background: #e11f1c;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 2rem;
}
.mapboxgl-popup-content li {
    color: #fff!important;
}
.hours_title {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block; 
}
.opening_hours {
    display: none; /* Start hidden */
}
.opening_hours.show {
    display: block; /* Display when 'show' class is added */
}
.interactive_map .dotted_pattern {
    position: absolute;
    bottom: 0;
    left: 0;
}
button.close_opening_hours {
    color: #fff;
    background: transparent;
    border: solid 1px #fff;
    margin-top: 1rem;
}
@media (max-width: 1652px) {
    div#map {
        width: 100%!important;
    }
}
@media (max-width: 1025px) {
    .interactive_map .map_wrapper {
        grid-template-columns: 1fr;
        grid-gap: 40px;
        padding-left: 6rem;
        padding-right: 6rem;
    }
}
@media (max-width: 991px) {
    .interactive_map .map_wrapper {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .interactive_map  select {
        min-width: 160px;
    }
    div#map {
        height: 450px!important;
        width: 100%!important;
    }
}
@media (max-width: 500px) {
    .interactive_map  select {
        min-width: auto;
    }
    .interactive_map button#resetMapButton {
        margin-top: 1rem;
    }
}