.eu-location-map__map {
    height: 600px;
}

#contact-map-nav {
    overflow-y: scroll;
    padding-left: 80px;
    position: relative;
    /* direction: rtl; */
    text-align: left;
    height: calc(100% - 50px);
    margin-top: 35px;
    margin-bottom: 40px;
    position: static;
    width: 100%;
}

#contact-map-nav::before,
#contact-map-nav::after {
    content: "";
    background: url("/wp-content/uploads/2024/12/arrow-down-icon-orange.svg");
    width: 25px;
    height: 25px;
    position: absolute;
    right: 0;
    background-size: 15px;
    z-index: 0;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 15px !important;
}
#contact-map-nav:before {
    transform: rotate(180deg);
    top: 10px;
}

#contact-map-nav:after {
    bottom: 10px;
}

.custom-scrollbar {
    display: none;
}

@media (max-width: 640px) {
    #contact-map-nav {
        padding-left: 30px;
    }

    #contact-map-nav::-webkit-scrollbar {
        display: none; /* hide native scrollbar */
    }

    #contact-map-nav:before,
    #contact-map-nav:after {
        content: none;
    }

    #contact-map-nav {
        height: 100%;
    }

    .custom-scrollbar {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 25px;
        height: 100%;
        background-color: transparent;
    }

    .custom-thumb {
        position: absolute;
        top: 0;
        width: 100%;
        height: 50px; 
        background-color: var(--eu-orange);
        cursor: pointer;
    }
}

@media (min-width: 991px) {
    #contact-map-nav:before,
    #contact-map-nav:after {
        background-size: 20px;
    }

    .contact-map-nav-location {
        width: 75%;
    }
}

/* #contact-map-nav::-webkit-scrollbar{
    width: 0px;
} */

.eu-location-map__locations {
    position: relative;
}

/* .eu-location-map__locations:not(.active):before {
    content: "";
    background-color: var(--eu-orange);
    width: 30px;
    height: 80px;
    display: block;
    position: absolute;
    left: 0px;
} */

/* .contact-map-nav-location:before {
    content: "";
    background-color: var(--eu-orange);
    width: 30px;
    height: 80px;
    position: absolute;
    left: 0px;
    opacity: 0;
    transition: opacity 0.35s ease-in-out;
} */

/* .contact-map-nav-location.active:before {
    opacity: 1;
} */

.contact-map-nav-location > * {
    padding-left: 30px;
    direction: ltr;
}

.contact-map-nav-location h3 {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 26px;
    border-radius: 30px;
    border: 8px solid var(--eu-teal);
    margin-bottom: 10px;
    padding-right: 30px;
    letter-spacing: 1.5px;
}

.contact-map-nav-location {
    color: var(--eu-green-dark);
    margin-bottom: 30px;
    cursor: pointer;
    width: 90%;
}

.contact-map-nav-location h4 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 25px;
    margin-bottom: 10px;
}

.contact-map-nav-location p{
    font-size: 20px;
    color: #292929;
}


.eu-location-map__map #contact-map{
    border-radius: 30px 30px 0px 0px;
}

.eu-location-map__locations{
    height: 350px;
    border-radius: 0px 0px 30px 30px;
}

@media (min-width: 480px) {
    .contact-map-nav-location h3 {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {
    .contact-map-nav-location {
        width: 55%;
    }

    .eu-location-map__map #contact-map{
       border-radius: 30px 0px 0px 30px;
    }
    .eu-location-map__locations{
       border-radius: 0px 30px 30px 0px;
        height: 600px;
    }
}

