@use "sass:map";
@use "sass:list";

$cls: ".react-grid-item";
$commonCls: ".grid-item";

$hazZindexList: (
    ".input.time" : "input:focus",
    ".input.datetime-local" : "input:focus",
    ".input.date" : "input:focus",
    ".select.select": ".open.fb_dropdown_panel"
);

@mixin FlexFormZindexModuleStyles(){
    #{$cls}{
        
        @each $key, $value in $hazZindexList{
            &:has(#{$value}){
                &:has(#{$commonCls}#{$key}){
                    z-index: 2;
                }
            }
        }
    }
}