.interactive_map {
    position: relative;
    margin-bottom: 10rem;
}

.interactive_map .map_wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 80px;
    z-index: 4;
}

@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: 0;
        padding-right: 0;
    }
}
.interactive_map .map_wrapper .map_left .map_title span{
    font-size: 40px;
    font-weight: 400;
}
.interactive_map .map_wrapper .map_left .map_title  h2 {
    font-size: 40px;
    font-weight: 400;
}
.interactive_map .map_wrapper .map_left .map_title h3 {
    font-size: 40px;
    font-weight: 400;
}

.interactive_map .map_wrapper .map_left .map_title, .map_description p {
    font-size: 16px;
    margin-bottom: 2rem;
}

.interactive_map .map_wrapper .map_left .map_description {
    margin-top: 2rem;
}

.interactive_map select {
    border: 1px solid #EDEDED;
    height: 48px;
    padding: 0 3.25rem 0 1.25rem;
    font-size: 16px;
    min-width: 220px;
    color: #6f6f6f;
    background-color: #EDEDED;
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    line-height: 1.2;
}

.map_controls .btn_primary {
    padding: 1rem 5rem;
    font-size: 18px;
}

@media (max-width: 991px) {
    .interactive_map select {
        min-width: 160px;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .interactive_map select {
        min-width: auto;
    }
}

.interactive_map select option {
    font-size: 16px;
    color: #100826;
}

.interactive_map .map_controls {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.interactive_map .map_controls select {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L8 8.5L15 1.5' stroke='%23909090' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    background-size: 14px 8px;
}

@media screen and (max-width: 992px) {
    .interactive_map .map_controls {
        flex-direction: column;
        align-items: flex-start;
    }
}

.interactive_map .map_left,
.interactive_map .map_right {
    position: relative;
    z-index: 2;
}

.interactive_map .map_right .map_location_title {
    font-size: 22.54px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 1rem;
}

.interactive_map .map_right p,
.interactive_map .map_right a,
.interactive_map .map_right .services {
    font-size: 15px;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
}

.interactive_map .map_right p svg,
.interactive_map .map_right a svg,
.interactive_map .map_right .services svg {
    margin-right: 1rem;
}

.interactive_map .dotted_pattern {
    position: absolute;
    bottom: 0;
    left: 0;
}

.interactive_map button.mapboxgl-popup-close-button {
    color: #fff;
    font-size: 18px;
}

.mapboxgl-marker {
    width: 29px;
    height: 29px;
    display: block;
    position: absolute;
}

.mapboxgl-marker svg {
    width: 100%;
    height: 100%;
    fill: #100826;
}

.mapboxgl-popup-content {
    position: relative;
    background: var(--red);
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    padding: 20px;
    pointer-events: auto;
    width: 181px;
    color: #fff;
    min-height: 130px;
    display: flex;
    flex-direction: column;
}

.mapboxgl-popup-content li {
    color: #fff !important;
}

.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
    align-self: center;
    border-bottom: none;
    border-top-color: var(--red);
}

#countrySelector {
    display: none;
} 

.view_opening_hours {
    font-size: 15px;
    color: #fff;
    margin-bottom: 1rem;
    cursor: pointer;
}

.opening_hours {
    display: none;
}

.opening_hours.show {
    display: block;
    position: absolute;
    top: 0;
    background: #100826;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 2rem;
}

.hours_title {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
}

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: 991px) {
    div#map {
        height: 450px !important;
        width: 100% !important;
    }
    .map_controls .btn_primary {
        width: auto !important;
    }
}