@charset "utf-8";
/* CSS Document */
:root{
/* objekt select */
    --obj-select-color-free: var(--primary-color);
    --obj-select-color-reserved: #FFEF63;
    --obj-select-color-sold: #af0303;  
}

.wohnung-hla-svg .svg-rendering{
    width: 100%;
    height:auto;
}                                    

/* IE 11 hack for the spacer prob. */
@media all and (-ms-high-contrast:none)
 {
     .wohnung-hla-svg .svg-rendering{
            height: 760px;
        } 
 }

.mapLink *{
    fill:var(--obj-select-color-sold);
    /*filter:url(.shadow);*/
}

.wohnung-hla-svg.mapLink.reserved  *{
    fill:var(--obj-select-color-reserved);
    opacity:0.3;
}

.wohnung-hla-svg .mapLink.free  *{
    fill:var(--obj-select-color-free);
    opacity:0;
}

.wohnung-hla-svg .mapLink.checked  *{
    fill:var(--obj-select-color-free);
    opacity:0.6;
}


.wohnung-hla-svg .mapLink *{
    opacity:0.6;
    transition: all .4s ease-in-out;
    }

.wohnung-hla-svg .mapLink:hover *{
    opacity:0.6;
}