/* INIZIO MAPPA */
#mappa-interattiva-wda  {
    width: 100%;
    padding-left: 10vw;
    margin-top: -150px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-end;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

#rz-map-container {
    width: 100%;
}

#rz-map-container svg {
    cursor: grab;
}

#mappa-pins-group g {
    display: none;
}
.rz_unclickable_country {
    pointer-events: none;
}

.rz_pin_active {
    display: block !important;
}

#mappa-stati-group path {
    transition: 0.5s;
    cursor: pointer;
}

#mappa-stati-group path:hover {
    fill: #ED6F63;
}

.st0 {
    fill: #e9d2b1;
}

.st0,
.st1,
.st2,
.st3,
.st4,
.st5,
.st6 {
    stroke: #fff;
    stroke-miterlimit: 10;
}

.st1 {
    fill: #78939a;
}

.st2 {
    fill: #f9be19;
}

.st7 {
    fill: #c36;
}

.st3 {
    fill: #f7ca69;
}

.st8 {
    fill: #ede8e7;
}

.st9 {
    fill: #fff;
}

.st4 {
    fill: #f9770d;
}

.st10 {
    fill: #eaa7a7;
}

.st11 {
    fill: #ea86ad;
    opacity: .4;
}

.st12 {
    fill: #eee8e7;
}

.st5 {
    fill: #c6b193;
}

.st6 {
    fill: #2768b7;
}

#rz-map-buttons-container {
    display: flex;
    padding-right: 20px;
}

#rz-map-buttons-minus, #rz-map-buttons-plus, #rz-map-buttons-reset {
    width: 50px;
    aspect-ratio: 1/1;
    z-index: 99999;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#rz-map-buttons-minus:hover svg path, #rz-map-buttons-plus:hover svg path {
    fill: green;
}

#rz-map-buttons-reset svg path{
    fill: #ed6f63;
}

#rz-map-buttons-reset:hover svg path{
    fill: red;
}

/* FINE MAPPA */

/* INIZIO TOOLTIP */

#rz-map-tooltip {
    display: flex !important;
    position: absolute;
    width: auto;
    height: auto;
    background-color: #fff;
    padding: 0px 40px 40px 40px;
    border-radius: 25px 0px 0px 25px;
    box-shadow: 0px 0px 25px #ec50434d;
    min-width: 200px;
    min-height: 200px;
    max-height: 70%;
    overflow: auto;
    z-index: 9999;
    transition: 1s !important;
    transform: translateX(110%);
}
#rz-map-tooltip.rz_active{ 
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    transform: translateX(0%);
}

#rz-map-tooltip-close {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-color: red;
    cursor: pointer;
    clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}
.rz_tooltip_header {
    display: flex;
    margin-bottom: 25px;
    font-size: 30px;
    font-weight: 800;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0px;
    background: white;
    padding: 30px 0px 10px 0px;
    border-bottom: 1px solid lightgrey;
    gap: 15px;
}
.rz_tooltip_title {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
}
.rz_tooltip_title::before {
    content: '';
    display: block;
    width: 10px;
    aspect-ratio: 1/1;
    background-color: red;
    border-radius: 100%;
    margin-right: 25px;
}
.rz_tooltip_address, .rz_tooltip_email, .rz_tooltip_tel {
    margin-left: 45px;
    font-size: 16px;
}
.rz_tooltip_tel {
    margin-bottom: 25px;
}
/* FINE TOOLTIP */
