#ds_wrapper_world_map {
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

p.ds_worldmap_title {
    font-size: 24px;
    color: white;
    line-height: 28px;
    margin-bottom: 31px;
    position: absolute;
    top: 100px;
    left: 100px;
}

.ds_scrolling_area {
    overflow: hidden;
    position: absolute;
    top: 150px;
    left: 100px;
    max-height: 600px;
    width: 350px;
    overflow-y: scroll;
    direction: rtl;
    scrollbar-color: #FFFFFF #ffffff57;
    scrollbar-width: thin;
    scrollbar-gutter: stable both-edges;
}

ul#ds_menu_office {
    direction: ltr;
    padding: 0 0 0 31px;
    margin: 0;
    border-left: 4px solid #ffffff85;
    z-index: 10;
}

li.ds_menu_list_item {
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #ffffffb8;
    list-style-type: none;
    transition: all .2s ease-in;
    cursor: pointer;
}

li.ds_worldmap_active, li.ds_menu_list_item:hover {
    color: white;
}

.ds_map_point {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
    animation: pulse 2s infinite;
    border: 1px solid white;
    cursor: pointer;
    z-index: 20;
}

@keyframes pulse {
    0% {
        background-color: white;
    }
    50% {
        background-color: #FF0066;
    }
    100% {
        background-color: white;
    }
}

.sonar-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: HSL(100, 100%, 75%);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.sonar-wave {
    animation: sonarWave 2s linear infinite;
}

@keyframes sonarWave {
    from {
        opacity: 0.4;
    }
    to {
        transform: scale(3);
        opacity: 0;
    }
}

#ds_worldmap_popup {
    height: 696px;
    width: 696px;
    max-width: 696px;
    position: absolute;
    right: 0;
    bottom: 0;
    display: none;
    z-index: 30;
    overflow: hidden;
}

#ds_worldmap_popup_inside {
    background: white;
    padding: 40px;
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 300px;
    z-index: 40;
}

#ds_worldmap_popup_inside .title {
    font-size: 24px;
    color: #0D1634;
    margin-bottom: 20px;
}

#ds_worldmap_popup_inside .content {
    font-size: 14px;
    color: #0D1634;
    line-height: 22.4px;
}

#ds_worldmap_slides {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 100%;
}

#ds_worldmap_slides img {
    width: 696px;
    height: 696px;
    object-fit: cover;
    border: 0;
    flex-shrink: 0;
}