.floorplan{
    max-width: calc(100% - var(--marginViewport) * 2);
    max-height: calc(100% - 65px - var(--marginViewport));
    box-shadow: 0 0 50px #00000080;
}

/* Leaflet buttons */
.leaflet-control {
    border:none !important;
}

/* Radar border */
path.leaflet-interactive{
    stroke: none !important;
}

.floorplanPinInner{
    box-shadow:0 0 0 3px var(--colorSecondary), 0 0 0 5px #fff, 0 0 20px 6px #00000080;
}

.floorplanPin:focus-visible .floorplanPinInner,
.floorplanPin:focus .floorplanPinInner{
    background-color: var(--colorSecondary) !important;
}

/* Swithers (Tabs) */
.floorplanSwitchers{
    width:100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 1000 !important;
    display: flex !important;
    justify-content: flex-end;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 10px 41px 0 0;
    gap:1px;
}
.floorplanSwither{
    pointer-events: all;
    user-select: none;
    cursor:pointer;
    position: relative;
    display: block;
}
.floorplanSwither.active{
    background-color: var(--colorActiveElementBg) !important;
    color: var(--colorActiveElementText) !important;
}