.mapLayer360Pin {
    width: 24px;
    height: 24px;
    box-shadow: 0 0 0 2px #ffffffa0, 0 0 0 5px #ffffff40;
    background-color: var(--colorAltBlue);
    border-radius: 50%;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
    transition: background 0.3s ease, box-shadow 0.3s;
    visibility: hidden;
}

.mapLayer360Pin:before {
    height: 50%;
    width: 50%;
    position: absolute;
    background: white;
    content: "";
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    transition: transform 0.3s ease;
}

body.hasHover .mapLayer360Pin:hover {
    background-color: var(--colorRed);
    z-index: 1;
    box-shadow: 0 0 0 2px #ffffffa0, 0 0 0 10px #ffffff40;
}

body.hasHover .mapLayer360Pin:hover:before {
    transform: translate(-50%, -50%) scale(00%);
}


