src/app/component/common/loader-overlay/loader-overlay.component.scss
div {
position: fixed;
width: 100%;
height: 100%;
background-color: #000;
opacity: .4;
top: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
z-index: 99999;
&:not(.show) {
display: none;
}
}