// Modal background .modal {

backdrop-filter: saturate(100%) blur(10px) !important;
background-color: rgba(255, 255, 255, .80) !important;

}

.modal-backdrop {

position: fixed;
top: 0;
left: 0;
z-index: $zindex-modal-backdrop;
// z-index: 1040 !important;
width: 100vw;
height: 100vh;
background-color: $modal-backdrop-bg;

// Fade for backdrop
&.fade {
    opacity: 0;
}

&.show {
    opacity: $modal-backdrop-opacity;
}

}