.contentRender_name_plugins_collections_template_custom_thematic_map{
    overflow: hidden;
}

.thematic-map {
    --green: #719e94;
    --smoke: #f1f3f4;

    position: relative;
}

.thematic-map svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 100%;
    transform: translateX(-30%);
}

.thematic-map .stage {
    height: 50px;
    padding-top: 125%;
    margin-bottom: 50px;
}

.thematic-map .map-cont {
    overflow: hidden;
}

.thematic-map[data-active="start"] svg {
    transform: translateX(-17%);
}

.thematic-map[data-active="end"] svg {
    transform: translateX(-50%);
}

.thematic-map .mobile-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 260px;
    margin: 0 auto;
}

.thematic-map .mobile-controls button {
    color: var(--green);
    font-size: 25px;
    margin: 0 5px;
    padding: 0;
    background-color: transparent;
}

.thematic-map .mobile-controls button > i {
    pointer-events: none;
}

.thematic-map .mobile-controls > div {
    width: 50px;
    height: 10px;
    background-color: var(--smoke);
    margin: 0 6px;
}

.thematic-map .mobile-controls > div {
    background-color: var(--smoke);
}

.thematic-map .mobile-controls > div.active {
    background-color: var(--green);
}

@media (min-width: 800px) {
    .thematic-map .stage {
        padding-top: 0;
        height: 900px;
    }

    .thematic-map .controls-cont {
        height: 935px;
        display: flex;
        align-items: flex-end;
    }

    .thematic-map svg {
        width: 1440px;
        transform: translateX(0);
        left: -150px;
    }

    .thematic-map[data-active="start"] svg {
        transform: translateX(0);
        left: 0;
    }

    .thematic-map[data-active="end"] svg {
        transform: translateX(0);
        left: unset;
        right: 0;
    }

}

@media (min-width: 1275px) {
    .thematic-map svg {
        left: -50px;
    }
}

@media (min-width: 1440px) {
    .thematic-map svg {
        left: 50% !important;
        transform: translateX(-50%);
    }

    .thematic-map .controls-cont {
        display: none;
    }
}

@media (hover: hover) {
    .thematic-map svg #ATTRACTIONS-POI > g {
        cursor: pointer;
    }

    .thematic-map svg #ATTRACTIONS-POI > g:hover > [id$="default"] {
        opacity: 0;
    }

    .thematic-map svg #ATTRACTIONS-POI > g:hover > [id$="hover"] {
        opacity: 1 !important;
    }
}