#zoom-controls div {
    width: 40px;
    height: 40px;
    font-size: 24px;
    background: #222;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#zoom-controls div:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.tooltip_content .multiple-destination {
    outline: 1px solid transparent;
    transition: outline-color 0.3s ease;
    text-decoration: none !important;
}

.tooltip_content a:hover {
    outline-color: #27272A;
}

.group-tooltip {
    display: grid;
    gap: 0;
    width: max-content;
    pointer-events: none;
}

.group-tooltip.group-items-2,
.group-tooltip.group-items-3 {
    grid-template-columns: repeat(2, 2fr);
}

.group-tooltip.group-items-4 {
    grid-template-columns: repeat(2, 2fr);
}

.group-tooltip.group-items-6,
.group-tooltip.group-items-5 {
    grid-template-columns: repeat(3, 2fr);
}

.group-tooltip.group-items-7,
.group-tooltip.group-items-8,
.group-tooltip.group-items-9 {
    grid-template-columns: repeat(3, 3fr);
}

.group-tooltip .multiple-destination {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    background: rgb(73, 73, 73);
    box-shadow: 0px 24px 48px -12px #1111142E;
    padding: 0 4px;
    margin: 0 !important;
    border-radius: 8px;
    transition: margin 0.3s ease, outline-color 0.3s ease;
}

.group-tooltip .tooltip__text,
.single-destination .tooltip__text {
    font-size: 14px;
    position: relative;
    top: 1px;
    color: #ffffff;
}

.group-tooltip .tooltip__text+span,
.single-destination .tooltip__text+span {
    font-size: 12px;
    position: relative;
    top: -2px;
}

.tooltip__text-wrapper {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 0;
    transition:
        width 0.5s ease 0s,
        margin 0.5s ease 0s;
    color: var(--wp--preset--color--ast-light-grey,#959595);
}

.tooltip_content {
    border-radius: 8px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    background-color: rgb(73, 73, 73);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 24px 48px -12px #1111142E;
}

.tooltip_content:hover {
    background-color: transparent;
    box-shadow: none;
}

.tooltip_content.group:hover .multiple-destination {
    margin: 2px !important;
}

.tooltip_content.group img {
    width: 32px;
    height: 32px;
}

.single-destination {
    display: flex;
    align-items: center;
    background: rgb(73, 73, 73);
    padding: 4px;
    height: 48px;
    border-radius: 8px;
    /*   gap: 5px; */
}

.tooltip__text {
    margin-bottom: -2px;
}

.tooltip_wrap img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.tooltip_wrap:hover {
    z-index: 9999 !important;
    overflow: initial;
}

.tooltip_wrap:hover .tooltip__text-wrapper .globe__arrow {
    opacity: 1;
    transition-delay: 0.35s;
}

.tooltip_wrap:hover .group-tooltip {
    pointer-events: inherit;
}

.tooltip_content.group {
    padding-top: 0;
    padding-bottom: 0;
}

.tooltip_content.group .group-tooltip:not(.group-items-2) a:nth-child(1),
.tooltip_content.group .group-tooltip:not(.group-items-2) a:nth-child(2) {
    margin-bottom: -8px;
}

/*.tooltip_wrap .tooltip__text-wrapper:hover .tooltip_content.group {
scale: 1;
} */

#globeVisual>div {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .tooltip_content.group img {
        width: 28px;
        height: 28px;
    }

    .tooltip_wrap img {
        width: 36px;
        height: 36px;
    }

    .tooltip_wrap a {
        pointer-events: none;
    }

    .tooltip_wrap.expand {
        z-index: 9999 !important;
    }

    .tooltip_wrap.expand a {
        pointer-events: auto;
    }

    .single-destination {
        height: 44px;
    }

    .tooltip__text {
        margin-bottom: 0;
    }
}