.mapPin, .mapPoi, .mapProjectPin {
    width: var(--hotspotSize);
    height: var(--hotspotSize);
    cursor: default;
    z-index: 1;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: var(--hotspotIconSize);
    transform: translateY(50%);
}
.mapPinInside {
    width: 100%;
    height: 100%;
    background-color: black;
    box-sizing: border-box;
    border: solid 2px rgba(255, 255, 255, 0.2);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.mapContainer, .panoContainer{
    transition: transform 0.5s ease-in-out;
}
.mapContainer{
    z-index: -1;
}

/* Map filter */
/* Switcher */
.mapFilter input.switcher {
    display: none;
}

.mapFilter input.switcher+label {
    display: inline-flex;
    align-items: center;
    background: #ffffff40;
    padding: 0.5em;
    border-radius: 10rem;
    border: solid 1px #ffffff80;
    flex-direction: row-reverse;
}

.mapFilter input.switcher+label::after {
    content: "";
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.3s;
    background-color: var(--colorSecondaryDeepBlueGray);
    box-shadow: 0 0 0 5px inset #fff;
}
.mapFilter input.switcher:checked+label::after {
    background-color: var(--colorPrimary1);
}

/* Switcher */

.mapFilter .filterItem {
    pointer-events: none;
    user-select: none;
    margin-bottom: 0.5em;
    color: #ffffffb0;
    display: flex;
    align-items: center;
}

.mapFilter label,
.mapFilter input {
    transition: all 0.2s;
    pointer-events: all;
    cursor: pointer;
}

body.hasHover .mapFilter label:hover {
    color: #ffffff;
}

/* Map filter */

/* Map Legend */
.mapLegend{
    margin-bottom: 1em;
    pointer-events: none;
}
.legendItem>div{
    display: inline-block;
    width:2em;
    height: 2em;
    margin-right: 0.5rem;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 70%;
}
.mapLegend>div{
    display: flex;
    flex-direction: row;
    margin-bottom: 0.5em;
}

/* Map Legend */

/* Map POI */

body[data-page-url="project-location"] .mapPin .mapPinInsideNumber{
    display: none;
}
.mapPin .mapPinInside{
    border:none;
    box-shadow: 0 0 0 2px #ffffff40;
    cursor: default;
    background-size: 60%;
    background-repeat: no-repeat;
}

.mapPin[data-group="project"] .mapPinInside{
    background-image: url(/wp-content/uploads/map_pin.svg);
    background-size: contain;
}
.mapPin[data-group="city"] .mapPinInside, .legendItem .city{
    background-image: url(/wp-content/uploads/icons/building.svg);
    background-color: #69178a;
}
.mapPin[data-group="shopping"] .mapPinInside, .legendItem .shopping{
    background-image: url(/wp-content/uploads/icons/shopping.svg);
    background-color: #c7883f;
}
.mapPin[data-group="arterials"] .mapPinInside, .legendItem .arterials{
    background-image: url(/wp-content/uploads/icons/arterials.svg);
    background-color: #87480E;
}
/* Map POI */

/* 360 POI */
.hotspot .hsCircle{
    box-shadow: 0 0 0 2px #ffffff40;
    transition: box-shadow 0.3s ease !important;
}
body.hasHover .hotspot.hover .hsCircle{
    box-shadow: 0 0 0 2px #ffffff;
}
.hotspot .projectIcon,
.hotspot .projectIcon > img{
    width: 40px !important;
    height: 40px !important;
    top: 0 !important;
    left: 0 !important;
}

/* 360 POI */

/* Tooltips */
.tooltipIcon{
    width: 1rem;
    height: 1rem;
    display: inline-block;
    background-size: cover;
}
/* Tooltips */